Struct aws_sdk_codestarconnections::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 connections(self, input: Connection) -> Self
pub fn connections(self, input: Connection) -> Self
Appends an item to connections
.
To override the contents of this collection use set_connections
.
A list of connections and the details for each connection, such as status, owner, and provider type.
sourcepub fn set_connections(self, input: Option<Vec<Connection>>) -> Self
pub fn set_connections(self, input: Option<Vec<Connection>>) -> Self
A list of connections and the details for each connection, such as status, owner, and provider type.
sourcepub fn get_connections(&self) -> &Option<Vec<Connection>>
pub fn get_connections(&self) -> &Option<Vec<Connection>>
A list of connections and the details for each connection, such as status, owner, and provider type.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token that can be used in the next ListConnections
call. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken
values are returned.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token that can be used in the next ListConnections
call. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken
values are returned.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token that can be used in the next ListConnections
call. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken
values are returned.
sourcepub fn build(self) -> ListConnectionsOutput
pub fn build(self) -> ListConnectionsOutput
Consumes the builder and constructs a ListConnectionsOutput
.
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> 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