Struct aws_sdk_sagemaker::output::DescribePipelineOutput [−][src]
#[non_exhaustive]pub struct DescribePipelineOutput {
pub pipeline_arn: Option<String>,
pub pipeline_name: Option<String>,
pub pipeline_display_name: Option<String>,
pub pipeline_definition: Option<String>,
pub pipeline_description: Option<String>,
pub role_arn: Option<String>,
pub pipeline_status: Option<PipelineStatus>,
pub creation_time: Option<Instant>,
pub last_modified_time: Option<Instant>,
pub last_run_time: Option<Instant>,
pub created_by: Option<UserContext>,
pub last_modified_by: Option<UserContext>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.pipeline_arn: Option<String>
The Amazon Resource Name (ARN) of the pipeline.
pipeline_name: Option<String>
The name of the pipeline.
pipeline_display_name: Option<String>
The display name of the pipeline.
pipeline_definition: Option<String>
The JSON pipeline definition.
pipeline_description: Option<String>
The description of the pipeline.
role_arn: Option<String>
The Amazon Resource Name (ARN) that the pipeline uses to execute.
pipeline_status: Option<PipelineStatus>
The status of the pipeline execution.
creation_time: Option<Instant>
The time when the pipeline was created.
last_modified_time: Option<Instant>
The time when the pipeline was last modified.
last_run_time: Option<Instant>
The time when the pipeline was last run.
created_by: Option<UserContext>
Information about the user who created or modified an experiment, trial, trial component, or project.
last_modified_by: Option<UserContext>
Information about the user who created or modified an experiment, trial, trial component, or project.
Implementations
Creates a new builder-style object to manufacture DescribePipelineOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DescribePipelineOutput
impl Send for DescribePipelineOutput
impl Sync for DescribePipelineOutput
impl Unpin for DescribePipelineOutput
impl UnwindSafe for DescribePipelineOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more