Struct aws_sdk_sagemaker::model::TrialComponentArtifact [−][src]
#[non_exhaustive]pub struct TrialComponentArtifact {
pub media_type: Option<String>,
pub value: Option<String>,
}
Expand description
Represents an input or output artifact of a trial component. You specify
TrialComponentArtifact
as part of the InputArtifacts
and
OutputArtifacts
parameters in the CreateTrialComponent
request.
Examples of input artifacts are datasets, algorithms, hyperparameters, source code, and instance types. Examples of output artifacts are metrics, snapshots, logs, and images.
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.media_type: Option<String>
The media type of the artifact, which indicates the type of data in the artifact file. The media type consists of a type and a subtype concatenated with a slash (/) character, for example, text/csv, image/jpeg, and s3/uri. The type specifies the category of the media. The subtype specifies the kind of data.
value: Option<String>
The location of the artifact.
Implementations
The media type of the artifact, which indicates the type of data in the artifact file. The media type consists of a type and a subtype concatenated with a slash (/) character, for example, text/csv, image/jpeg, and s3/uri. The type specifies the category of the media. The subtype specifies the kind of data.
Creates a new builder-style object to manufacture TrialComponentArtifact
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 TrialComponentArtifact
impl Send for TrialComponentArtifact
impl Sync for TrialComponentArtifact
impl Unpin for TrialComponentArtifact
impl UnwindSafe for TrialComponentArtifact
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