Struct aws_sdk_proton::operation::list_component_outputs::builders::ListComponentOutputsOutputBuilder
source · #[non_exhaustive]pub struct ListComponentOutputsOutputBuilder { /* private fields */ }
Expand description
A builder for ListComponentOutputsOutput
.
Implementations§
source§impl ListComponentOutputsOutputBuilder
impl ListComponentOutputsOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.
sourcepub fn outputs(self, input: Output) -> Self
pub fn outputs(self, input: Output) -> Self
Appends an item to outputs
.
To override the contents of this collection use set_outputs
.
An array of component Infrastructure as Code (IaC) outputs.
sourcepub fn set_outputs(self, input: Option<Vec<Output>>) -> Self
pub fn set_outputs(self, input: Option<Vec<Output>>) -> Self
An array of component Infrastructure as Code (IaC) outputs.
sourcepub fn get_outputs(&self) -> &Option<Vec<Output>>
pub fn get_outputs(&self) -> &Option<Vec<Output>>
An array of component Infrastructure as Code (IaC) outputs.
sourcepub fn build(self) -> Result<ListComponentOutputsOutput, BuildError>
pub fn build(self) -> Result<ListComponentOutputsOutput, BuildError>
Consumes the builder and constructs a ListComponentOutputsOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ListComponentOutputsOutputBuilder
impl Clone for ListComponentOutputsOutputBuilder
source§fn clone(&self) -> ListComponentOutputsOutputBuilder
fn clone(&self) -> ListComponentOutputsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListComponentOutputsOutputBuilder
impl Default for ListComponentOutputsOutputBuilder
source§fn default() -> ListComponentOutputsOutputBuilder
fn default() -> ListComponentOutputsOutputBuilder
source§impl PartialEq for ListComponentOutputsOutputBuilder
impl PartialEq for ListComponentOutputsOutputBuilder
source§fn eq(&self, other: &ListComponentOutputsOutputBuilder) -> bool
fn eq(&self, other: &ListComponentOutputsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListComponentOutputsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListComponentOutputsOutputBuilder
impl RefUnwindSafe for ListComponentOutputsOutputBuilder
impl Send for ListComponentOutputsOutputBuilder
impl Sync for ListComponentOutputsOutputBuilder
impl Unpin for ListComponentOutputsOutputBuilder
impl UnwindSafe for ListComponentOutputsOutputBuilder
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