Struct aws_sdk_apprunner::operation::list_connections::builders::ListConnectionsOutputBuilder
source · #[non_exhaustive]pub struct ListConnectionsOutputBuilder { /* private fields */ }Expand description
A builder for ListConnectionsOutput.
Implementations§
source§impl ListConnectionsOutputBuilder
impl ListConnectionsOutputBuilder
sourcepub fn connection_summary_list(self, input: ConnectionSummary) -> Self
pub fn connection_summary_list(self, input: ConnectionSummary) -> Self
Appends an item to connection_summary_list.
To override the contents of this collection use set_connection_summary_list.
A list of summary information records for connections. In a paginated request, the request returns up to MaxResults records for each call.
sourcepub fn set_connection_summary_list(
self,
input: Option<Vec<ConnectionSummary>>,
) -> Self
pub fn set_connection_summary_list( self, input: Option<Vec<ConnectionSummary>>, ) -> Self
A list of summary information records for connections. In a paginated request, the request returns up to MaxResults records for each call.
sourcepub fn get_connection_summary_list(&self) -> &Option<Vec<ConnectionSummary>>
pub fn get_connection_summary_list(&self) -> &Option<Vec<ConnectionSummary>>
A list of summary information records for connections. In a paginated request, the request returns up to MaxResults records for each call.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token that you can pass in a subsequent request to get the next result page. Returned in a paginated request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token that you can pass in a subsequent request to get the next result page. Returned in a paginated request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token that you can pass in a subsequent request to get the next result page. Returned in a paginated request.
sourcepub fn build(self) -> Result<ListConnectionsOutput, BuildError>
pub fn build(self) -> Result<ListConnectionsOutput, BuildError>
Consumes the builder and constructs a ListConnectionsOutput.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ListConnectionsOutputBuilder
impl Clone for ListConnectionsOutputBuilder
source§fn clone(&self) -> ListConnectionsOutputBuilder
fn clone(&self) -> ListConnectionsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListConnectionsOutputBuilder
impl Debug for ListConnectionsOutputBuilder
source§impl Default for ListConnectionsOutputBuilder
impl Default for ListConnectionsOutputBuilder
source§fn default() -> ListConnectionsOutputBuilder
fn default() -> ListConnectionsOutputBuilder
source§impl PartialEq for ListConnectionsOutputBuilder
impl PartialEq for ListConnectionsOutputBuilder
source§fn eq(&self, other: &ListConnectionsOutputBuilder) -> bool
fn eq(&self, other: &ListConnectionsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListConnectionsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListConnectionsOutputBuilder
impl RefUnwindSafe for ListConnectionsOutputBuilder
impl Send for ListConnectionsOutputBuilder
impl Sync for ListConnectionsOutputBuilder
impl Unpin for ListConnectionsOutputBuilder
impl UnwindSafe for ListConnectionsOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more