Struct aws_sdk_sagemaker::model::SourceAlgorithm [−][src]
#[non_exhaustive]pub struct SourceAlgorithm {
pub model_data_url: Option<String>,
pub algorithm_name: Option<String>,
}
Expand description
Specifies an algorithm that was used to create the model package. The algorithm must be either an algorithm resource in your Amazon SageMaker account or an algorithm in Amazon Web Services Marketplace that you are subscribed to.
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.model_data_url: Option<String>
The Amazon S3 path where the model artifacts, which result from model training, are stored.
This path must point to a single gzip
compressed tar archive
(.tar.gz
suffix).
The model artifacts must be in an S3 bucket that is in the same region as the algorithm.
algorithm_name: Option<String>
The name of an algorithm that was used to create the model package. The algorithm must be either an algorithm resource in your Amazon SageMaker account or an algorithm in Amazon Web Services Marketplace that you are subscribed to.
Implementations
The Amazon S3 path where the model artifacts, which result from model training, are stored.
This path must point to a single gzip
compressed tar archive
(.tar.gz
suffix).
The model artifacts must be in an S3 bucket that is in the same region as the algorithm.
The name of an algorithm that was used to create the model package. The algorithm must be either an algorithm resource in your Amazon SageMaker account or an algorithm in Amazon Web Services Marketplace that you are subscribed to.
Creates a new builder-style object to manufacture SourceAlgorithm
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 SourceAlgorithm
impl Send for SourceAlgorithm
impl Sync for SourceAlgorithm
impl Unpin for SourceAlgorithm
impl UnwindSafe for SourceAlgorithm
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