Struct aws_sdk_sagemaker::model::Pipeline [−][src]
#[non_exhaustive]pub struct Pipeline {
pub pipeline_arn: Option<String>,
pub pipeline_name: Option<String>,
pub pipeline_display_name: 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>,
pub tags: Option<Vec<Tag>>,
}
Expand description
A SageMaker Model Building Pipeline instance.
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_description: Option<String>
The description of the pipeline.
role_arn: Option<String>
The Amazon Resource Name (ARN) of the role that created the pipeline.
pipeline_status: Option<PipelineStatus>
The status of the pipeline.
creation_time: Option<Instant>
The creation time of the pipeline.
last_modified_time: Option<Instant>
The time that 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.
A list of tags that apply to the pipeline.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Pipeline
impl UnwindSafe for Pipeline
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