#[non_exhaustive]pub struct FlowDefinitionSummaryBuilder { /* private fields */ }
Expand description
A builder for FlowDefinitionSummary
.
Implementations§
source§impl FlowDefinitionSummaryBuilder
impl FlowDefinitionSummaryBuilder
sourcepub fn flow_definition_name(self, input: impl Into<String>) -> Self
pub fn flow_definition_name(self, input: impl Into<String>) -> Self
The name of the flow definition.
This field is required.sourcepub fn set_flow_definition_name(self, input: Option<String>) -> Self
pub fn set_flow_definition_name(self, input: Option<String>) -> Self
The name of the flow definition.
sourcepub fn get_flow_definition_name(&self) -> &Option<String>
pub fn get_flow_definition_name(&self) -> &Option<String>
The name of the flow definition.
sourcepub fn flow_definition_arn(self, input: impl Into<String>) -> Self
pub fn flow_definition_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the flow definition.
This field is required.sourcepub fn set_flow_definition_arn(self, input: Option<String>) -> Self
pub fn set_flow_definition_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the flow definition.
sourcepub fn get_flow_definition_arn(&self) -> &Option<String>
pub fn get_flow_definition_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the flow definition.
sourcepub fn flow_definition_status(self, input: FlowDefinitionStatus) -> Self
pub fn flow_definition_status(self, input: FlowDefinitionStatus) -> Self
The status of the flow definition. Valid values:
This field is required.sourcepub fn set_flow_definition_status(
self,
input: Option<FlowDefinitionStatus>,
) -> Self
pub fn set_flow_definition_status( self, input: Option<FlowDefinitionStatus>, ) -> Self
The status of the flow definition. Valid values:
sourcepub fn get_flow_definition_status(&self) -> &Option<FlowDefinitionStatus>
pub fn get_flow_definition_status(&self) -> &Option<FlowDefinitionStatus>
The status of the flow definition. Valid values:
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The timestamp when SageMaker created the flow definition.
This field is required.sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The timestamp when SageMaker created the flow definition.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The timestamp when SageMaker created the flow definition.
sourcepub fn failure_reason(self, input: impl Into<String>) -> Self
pub fn failure_reason(self, input: impl Into<String>) -> Self
The reason why the flow definition creation failed. A failure reason is returned only when the flow definition status is Failed
.
sourcepub fn set_failure_reason(self, input: Option<String>) -> Self
pub fn set_failure_reason(self, input: Option<String>) -> Self
The reason why the flow definition creation failed. A failure reason is returned only when the flow definition status is Failed
.
sourcepub fn get_failure_reason(&self) -> &Option<String>
pub fn get_failure_reason(&self) -> &Option<String>
The reason why the flow definition creation failed. A failure reason is returned only when the flow definition status is Failed
.
sourcepub fn build(self) -> FlowDefinitionSummary
pub fn build(self) -> FlowDefinitionSummary
Consumes the builder and constructs a FlowDefinitionSummary
.
Trait Implementations§
source§impl Clone for FlowDefinitionSummaryBuilder
impl Clone for FlowDefinitionSummaryBuilder
source§fn clone(&self) -> FlowDefinitionSummaryBuilder
fn clone(&self) -> FlowDefinitionSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for FlowDefinitionSummaryBuilder
impl Debug for FlowDefinitionSummaryBuilder
source§impl Default for FlowDefinitionSummaryBuilder
impl Default for FlowDefinitionSummaryBuilder
source§fn default() -> FlowDefinitionSummaryBuilder
fn default() -> FlowDefinitionSummaryBuilder
source§impl PartialEq for FlowDefinitionSummaryBuilder
impl PartialEq for FlowDefinitionSummaryBuilder
source§fn eq(&self, other: &FlowDefinitionSummaryBuilder) -> bool
fn eq(&self, other: &FlowDefinitionSummaryBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for FlowDefinitionSummaryBuilder
Auto Trait Implementations§
impl Freeze for FlowDefinitionSummaryBuilder
impl RefUnwindSafe for FlowDefinitionSummaryBuilder
impl Send for FlowDefinitionSummaryBuilder
impl Sync for FlowDefinitionSummaryBuilder
impl Unpin for FlowDefinitionSummaryBuilder
impl UnwindSafe for FlowDefinitionSummaryBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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