Struct aws_sdk_sagemaker::input::CreateArtifactInput [−][src]
#[non_exhaustive]pub struct CreateArtifactInput {
pub artifact_name: Option<String>,
pub source: Option<ArtifactSource>,
pub artifact_type: Option<String>,
pub properties: Option<HashMap<String, String>>,
pub metadata_properties: Option<MetadataProperties>,
pub tags: Option<Vec<Tag>>,
}
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.artifact_name: Option<String>
The name of the artifact. Must be unique to your account in an Amazon Web Services Region.
source: Option<ArtifactSource>
The ID, ID type, and URI of the source.
artifact_type: Option<String>
The artifact type.
properties: Option<HashMap<String, String>>
A list of properties to add to the artifact.
metadata_properties: Option<MetadataProperties>
Metadata properties of the tracking entity, trial, or trial component.
A list of tags to apply to the artifact.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateArtifact, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateArtifact, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateArtifact
>
Creates a new builder-style object to manufacture CreateArtifactInput
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 CreateArtifactInput
impl Send for CreateArtifactInput
impl Sync for CreateArtifactInput
impl Unpin for CreateArtifactInput
impl UnwindSafe for CreateArtifactInput
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