#[non_exhaustive]pub struct BatchDescribeModelPackageSummary {
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 inference_specification: Option<InferenceSpecification>,
pub model_package_status: Option<ModelPackageStatus>,
pub model_approval_status: Option<ModelApprovalStatus>,
}
Expand description
Provides summary information about the 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_group_name: Option<String>
The group name for the model package
model_package_version: Option<i32>
The version number of a versioned model.
model_package_arn: Option<String>
The Amazon Resource Name (ARN) of the model package.
model_package_description: Option<String>
The description of the model package.
creation_time: Option<DateTime>
The creation time of the mortgage package summary.
inference_specification: Option<InferenceSpecification>
Defines how to perform inference generation after a training job is run.
model_package_status: Option<ModelPackageStatus>
The status of the mortgage package.
model_approval_status: Option<ModelApprovalStatus>
The approval status of the model.
Implementations§
source§impl BatchDescribeModelPackageSummary
impl BatchDescribeModelPackageSummary
sourcepub fn model_package_group_name(&self) -> Option<&str>
pub fn model_package_group_name(&self) -> Option<&str>
The group name for the model package
sourcepub fn model_package_version(&self) -> Option<i32>
pub fn model_package_version(&self) -> Option<i32>
The version number of a versioned 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>
The description of the model package.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The creation time of the mortgage package summary.
sourcepub fn inference_specification(&self) -> Option<&InferenceSpecification>
pub fn inference_specification(&self) -> Option<&InferenceSpecification>
Defines how to perform inference generation after a training job is run.
sourcepub fn model_package_status(&self) -> Option<&ModelPackageStatus>
pub fn model_package_status(&self) -> Option<&ModelPackageStatus>
The status of the mortgage package.
sourcepub fn model_approval_status(&self) -> Option<&ModelApprovalStatus>
pub fn model_approval_status(&self) -> Option<&ModelApprovalStatus>
The approval status of the model.
source§impl BatchDescribeModelPackageSummary
impl BatchDescribeModelPackageSummary
sourcepub fn builder() -> BatchDescribeModelPackageSummaryBuilder
pub fn builder() -> BatchDescribeModelPackageSummaryBuilder
Creates a new builder-style object to manufacture BatchDescribeModelPackageSummary
.
Trait Implementations§
source§impl Clone for BatchDescribeModelPackageSummary
impl Clone for BatchDescribeModelPackageSummary
source§fn clone(&self) -> BatchDescribeModelPackageSummary
fn clone(&self) -> BatchDescribeModelPackageSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<BatchDescribeModelPackageSummary> for BatchDescribeModelPackageSummary
impl PartialEq<BatchDescribeModelPackageSummary> for BatchDescribeModelPackageSummary
source§fn eq(&self, other: &BatchDescribeModelPackageSummary) -> bool
fn eq(&self, other: &BatchDescribeModelPackageSummary) -> bool
self
and other
values to be equal, and is used
by ==
.