Struct aws_sdk_proton::operation::list_service_instance_outputs::builders::ListServiceInstanceOutputsOutputBuilder
source · #[non_exhaustive]pub struct ListServiceInstanceOutputsOutputBuilder { /* private fields */ }
Expand description
A builder for ListServiceInstanceOutputsOutput
.
Implementations§
source§impl ListServiceInstanceOutputsOutputBuilder
impl ListServiceInstanceOutputsOutputBuilder
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 current requested list of outputs.
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 current requested list of outputs.
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 current requested list of outputs.
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 service instance 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 service instance Infrastructure as Code (IaC) outputs.
sourcepub fn get_outputs(&self) -> &Option<Vec<Output>>
pub fn get_outputs(&self) -> &Option<Vec<Output>>
An array of service instance Infrastructure as Code (IaC) outputs.
sourcepub fn build(self) -> Result<ListServiceInstanceOutputsOutput, BuildError>
pub fn build(self) -> Result<ListServiceInstanceOutputsOutput, BuildError>
Consumes the builder and constructs a ListServiceInstanceOutputsOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ListServiceInstanceOutputsOutputBuilder
impl Clone for ListServiceInstanceOutputsOutputBuilder
source§fn clone(&self) -> ListServiceInstanceOutputsOutputBuilder
fn clone(&self) -> ListServiceInstanceOutputsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListServiceInstanceOutputsOutputBuilder
impl Default for ListServiceInstanceOutputsOutputBuilder
source§fn default() -> ListServiceInstanceOutputsOutputBuilder
fn default() -> ListServiceInstanceOutputsOutputBuilder
source§impl PartialEq for ListServiceInstanceOutputsOutputBuilder
impl PartialEq for ListServiceInstanceOutputsOutputBuilder
source§fn eq(&self, other: &ListServiceInstanceOutputsOutputBuilder) -> bool
fn eq(&self, other: &ListServiceInstanceOutputsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListServiceInstanceOutputsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListServiceInstanceOutputsOutputBuilder
impl RefUnwindSafe for ListServiceInstanceOutputsOutputBuilder
impl Send for ListServiceInstanceOutputsOutputBuilder
impl Sync for ListServiceInstanceOutputsOutputBuilder
impl Unpin for ListServiceInstanceOutputsOutputBuilder
impl UnwindSafe for ListServiceInstanceOutputsOutputBuilder
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