#[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 for BatchDescribeModelPackageSummary
impl PartialEq 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 ==
.impl StructuralPartialEq for BatchDescribeModelPackageSummary
Auto Trait Implementations§
impl Freeze for BatchDescribeModelPackageSummary
impl RefUnwindSafe for BatchDescribeModelPackageSummary
impl Send for BatchDescribeModelPackageSummary
impl Sync for BatchDescribeModelPackageSummary
impl Unpin for BatchDescribeModelPackageSummary
impl UnwindSafe for BatchDescribeModelPackageSummary
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more