Struct aws_sdk_imagebuilder::operation::list_workflows::builders::ListWorkflowsOutputBuilder
source · #[non_exhaustive]pub struct ListWorkflowsOutputBuilder { /* private fields */ }
Expand description
A builder for ListWorkflowsOutput
.
Implementations§
source§impl ListWorkflowsOutputBuilder
impl ListWorkflowsOutputBuilder
sourcepub fn workflow_version_list(self, input: WorkflowVersion) -> Self
pub fn workflow_version_list(self, input: WorkflowVersion) -> Self
Appends an item to workflow_version_list
.
To override the contents of this collection use set_workflow_version_list
.
A list of workflow build versions that match the request criteria.
sourcepub fn set_workflow_version_list(
self,
input: Option<Vec<WorkflowVersion>>
) -> Self
pub fn set_workflow_version_list( self, input: Option<Vec<WorkflowVersion>> ) -> Self
A list of workflow build versions that match the request criteria.
sourcepub fn get_workflow_version_list(&self) -> &Option<Vec<WorkflowVersion>>
pub fn get_workflow_version_list(&self) -> &Option<Vec<WorkflowVersion>>
A list of workflow build versions that match the request criteria.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
sourcepub fn build(self) -> ListWorkflowsOutput
pub fn build(self) -> ListWorkflowsOutput
Consumes the builder and constructs a ListWorkflowsOutput
.
Trait Implementations§
source§impl Clone for ListWorkflowsOutputBuilder
impl Clone for ListWorkflowsOutputBuilder
source§fn clone(&self) -> ListWorkflowsOutputBuilder
fn clone(&self) -> ListWorkflowsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListWorkflowsOutputBuilder
impl Debug for ListWorkflowsOutputBuilder
source§impl Default for ListWorkflowsOutputBuilder
impl Default for ListWorkflowsOutputBuilder
source§fn default() -> ListWorkflowsOutputBuilder
fn default() -> ListWorkflowsOutputBuilder
source§impl PartialEq for ListWorkflowsOutputBuilder
impl PartialEq for ListWorkflowsOutputBuilder
source§fn eq(&self, other: &ListWorkflowsOutputBuilder) -> bool
fn eq(&self, other: &ListWorkflowsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListWorkflowsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListWorkflowsOutputBuilder
impl RefUnwindSafe for ListWorkflowsOutputBuilder
impl Send for ListWorkflowsOutputBuilder
impl Sync for ListWorkflowsOutputBuilder
impl Unpin for ListWorkflowsOutputBuilder
impl UnwindSafe for ListWorkflowsOutputBuilder
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