#[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 ==
.