Struct aws_sdk_glue::operation::batch_get_workflows::builders::BatchGetWorkflowsOutputBuilder
source · #[non_exhaustive]pub struct BatchGetWorkflowsOutputBuilder { /* private fields */ }
Expand description
A builder for BatchGetWorkflowsOutput
.
Implementations§
source§impl BatchGetWorkflowsOutputBuilder
impl BatchGetWorkflowsOutputBuilder
sourcepub fn workflows(self, input: Workflow) -> Self
pub fn workflows(self, input: Workflow) -> Self
Appends an item to workflows
.
To override the contents of this collection use set_workflows
.
A list of workflow resource metadata.
sourcepub fn set_workflows(self, input: Option<Vec<Workflow>>) -> Self
pub fn set_workflows(self, input: Option<Vec<Workflow>>) -> Self
A list of workflow resource metadata.
sourcepub fn get_workflows(&self) -> &Option<Vec<Workflow>>
pub fn get_workflows(&self) -> &Option<Vec<Workflow>>
A list of workflow resource metadata.
sourcepub fn missing_workflows(self, input: impl Into<String>) -> Self
pub fn missing_workflows(self, input: impl Into<String>) -> Self
Appends an item to missing_workflows
.
To override the contents of this collection use set_missing_workflows
.
A list of names of workflows not found.
sourcepub fn set_missing_workflows(self, input: Option<Vec<String>>) -> Self
pub fn set_missing_workflows(self, input: Option<Vec<String>>) -> Self
A list of names of workflows not found.
sourcepub fn get_missing_workflows(&self) -> &Option<Vec<String>>
pub fn get_missing_workflows(&self) -> &Option<Vec<String>>
A list of names of workflows not found.
sourcepub fn build(self) -> BatchGetWorkflowsOutput
pub fn build(self) -> BatchGetWorkflowsOutput
Consumes the builder and constructs a BatchGetWorkflowsOutput
.
Trait Implementations§
source§impl Clone for BatchGetWorkflowsOutputBuilder
impl Clone for BatchGetWorkflowsOutputBuilder
source§fn clone(&self) -> BatchGetWorkflowsOutputBuilder
fn clone(&self) -> BatchGetWorkflowsOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for BatchGetWorkflowsOutputBuilder
impl Default for BatchGetWorkflowsOutputBuilder
source§fn default() -> BatchGetWorkflowsOutputBuilder
fn default() -> BatchGetWorkflowsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchGetWorkflowsOutputBuilder
impl PartialEq for BatchGetWorkflowsOutputBuilder
source§fn eq(&self, other: &BatchGetWorkflowsOutputBuilder) -> bool
fn eq(&self, other: &BatchGetWorkflowsOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetWorkflowsOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetWorkflowsOutputBuilder
impl RefUnwindSafe for BatchGetWorkflowsOutputBuilder
impl Send for BatchGetWorkflowsOutputBuilder
impl Sync for BatchGetWorkflowsOutputBuilder
impl Unpin for BatchGetWorkflowsOutputBuilder
impl UnwindSafe for BatchGetWorkflowsOutputBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.