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