Struct aws_sdk_sagemaker::model::TrialComponentSourceDetail [−][src]
#[non_exhaustive]pub struct TrialComponentSourceDetail {
pub source_arn: Option<String>,
pub training_job: Option<TrainingJob>,
pub processing_job: Option<ProcessingJob>,
pub transform_job: Option<TransformJob>,
}
Expand description
Detailed information about the source of a trial component. Either
ProcessingJob
or TrainingJob
is returned.
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.source_arn: Option<String>
The Amazon Resource Name (ARN) of the source.
training_job: Option<TrainingJob>
Information about a training job that's the source of a trial component.
processing_job: Option<ProcessingJob>
Information about a processing job that's the source of a trial component.
transform_job: Option<TransformJob>
Information about a transform job that's the source of a trial component.
Implementations
The Amazon Resource Name (ARN) of the source.
Information about a training job that's the source of a trial component.
Information about a processing job that's the source of a trial component.
Information about a transform job that's the source of a trial component.
Creates a new builder-style object to manufacture TrialComponentSourceDetail
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 TrialComponentSourceDetail
impl Send for TrialComponentSourceDetail
impl Sync for TrialComponentSourceDetail
impl Unpin for TrialComponentSourceDetail
impl UnwindSafe for TrialComponentSourceDetail
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