Struct aws_sdk_sagemaker::model::ModelPackageSummary [−][src]
#[non_exhaustive]pub struct ModelPackageSummary {
pub model_package_name: Option<String>,
pub model_package_group_name: Option<String>,
pub model_package_version: Option<i32>,
pub model_package_arn: Option<String>,
pub model_package_description: Option<String>,
pub creation_time: Option<DateTime>,
pub model_package_status: Option<ModelPackageStatus>,
pub model_approval_status: Option<ModelApprovalStatus>,
}
Expand description
Provides summary information about a model package.
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_package_name: Option<String>
The name of the model package.
model_package_group_name: Option<String>
If the model package is a versioned model, the model group that the versioned model belongs to.
model_package_version: Option<i32>
If the model package is a versioned model, the version of the model.
model_package_arn: Option<String>
The Amazon Resource Name (ARN) of the model package.
model_package_description: Option<String>
A brief description of the model package.
creation_time: Option<DateTime>
A timestamp that shows when the model package was created.
model_package_status: Option<ModelPackageStatus>
The overall status of the model package.
model_approval_status: Option<ModelApprovalStatus>
The approval status of the model. This can be one of the following values.
-
APPROVED
- The model is approved -
REJECTED
- The model is rejected. -
PENDING_MANUAL_APPROVAL
- The model is waiting for manual approval.
Implementations
The name of the model package.
If the model package is a versioned model, the model group that the versioned model belongs to.
If the model package is a versioned model, the version of the model.
The Amazon Resource Name (ARN) of the model package.
A brief description of the model package.
A timestamp that shows when the model package was created.
The overall status of the model package.
The approval status of the model. This can be one of the following values.
-
APPROVED
- The model is approved -
REJECTED
- The model is rejected. -
PENDING_MANUAL_APPROVAL
- The model is waiting for manual approval.
Creates a new builder-style object to manufacture ModelPackageSummary
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 ModelPackageSummary
impl Send for ModelPackageSummary
impl Sync for ModelPackageSummary
impl Unpin for ModelPackageSummary
impl UnwindSafe for ModelPackageSummary
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