Struct aws_sdk_sagemaker::model::ModelPackageSummary
source · #[non_exhaustive]pub struct ModelPackageSummary { /* private fields */ }
Expand description
Provides summary information about a model package.
Implementations§
source§impl ModelPackageSummary
impl ModelPackageSummary
sourcepub fn model_package_name(&self) -> Option<&str>
pub fn model_package_name(&self) -> Option<&str>
The name of the model package.
sourcepub fn model_package_group_name(&self) -> Option<&str>
pub fn model_package_group_name(&self) -> Option<&str>
If the model package is a versioned model, the model group that the versioned model belongs to.
sourcepub fn model_package_version(&self) -> Option<i32>
pub fn model_package_version(&self) -> Option<i32>
If the model package is a versioned model, the version of the model.
sourcepub fn model_package_arn(&self) -> Option<&str>
pub fn model_package_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the model package.
sourcepub fn model_package_description(&self) -> Option<&str>
pub fn model_package_description(&self) -> Option<&str>
A brief description of the model package.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
A timestamp that shows when the model package was created.
sourcepub fn model_package_status(&self) -> Option<&ModelPackageStatus>
pub fn model_package_status(&self) -> Option<&ModelPackageStatus>
The overall status of the model package.
sourcepub fn model_approval_status(&self) -> Option<&ModelApprovalStatus>
pub fn model_approval_status(&self) -> 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.
source§impl ModelPackageSummary
impl ModelPackageSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ModelPackageSummary
.
Trait Implementations§
source§impl Clone for ModelPackageSummary
impl Clone for ModelPackageSummary
source§fn clone(&self) -> ModelPackageSummary
fn clone(&self) -> ModelPackageSummary
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ModelPackageSummary
impl Debug for ModelPackageSummary
source§impl PartialEq<ModelPackageSummary> for ModelPackageSummary
impl PartialEq<ModelPackageSummary> for ModelPackageSummary
source§fn eq(&self, other: &ModelPackageSummary) -> bool
fn eq(&self, other: &ModelPackageSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.