Struct aws_sdk_sagemaker::types::ModelPackageGroupSummary
source · #[non_exhaustive]pub struct ModelPackageGroupSummary {
pub model_package_group_name: Option<String>,
pub model_package_group_arn: Option<String>,
pub model_package_group_description: Option<String>,
pub creation_time: Option<DateTime>,
pub model_package_group_status: Option<ModelPackageGroupStatus>,
}
Expand description
Summary information about a model group.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.model_package_group_name: Option<String>
The name of the model group.
model_package_group_arn: Option<String>
The Amazon Resource Name (ARN) of the model group.
model_package_group_description: Option<String>
A description of the model group.
creation_time: Option<DateTime>
The time that the model group was created.
model_package_group_status: Option<ModelPackageGroupStatus>
The status of the model group.
Implementations§
source§impl ModelPackageGroupSummary
impl ModelPackageGroupSummary
sourcepub fn model_package_group_name(&self) -> Option<&str>
pub fn model_package_group_name(&self) -> Option<&str>
The name of the model group.
sourcepub fn model_package_group_arn(&self) -> Option<&str>
pub fn model_package_group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the model group.
sourcepub fn model_package_group_description(&self) -> Option<&str>
pub fn model_package_group_description(&self) -> Option<&str>
A description of the model group.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time that the model group was created.
sourcepub fn model_package_group_status(&self) -> Option<&ModelPackageGroupStatus>
pub fn model_package_group_status(&self) -> Option<&ModelPackageGroupStatus>
The status of the model group.
source§impl ModelPackageGroupSummary
impl ModelPackageGroupSummary
sourcepub fn builder() -> ModelPackageGroupSummaryBuilder
pub fn builder() -> ModelPackageGroupSummaryBuilder
Creates a new builder-style object to manufacture ModelPackageGroupSummary
.
Trait Implementations§
source§impl Clone for ModelPackageGroupSummary
impl Clone for ModelPackageGroupSummary
source§fn clone(&self) -> ModelPackageGroupSummary
fn clone(&self) -> ModelPackageGroupSummary
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 ModelPackageGroupSummary
impl Debug for ModelPackageGroupSummary
source§impl PartialEq for ModelPackageGroupSummary
impl PartialEq for ModelPackageGroupSummary
source§fn eq(&self, other: &ModelPackageGroupSummary) -> bool
fn eq(&self, other: &ModelPackageGroupSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ModelPackageGroupSummary
Auto Trait Implementations§
impl RefUnwindSafe for ModelPackageGroupSummary
impl Send for ModelPackageGroupSummary
impl Sync for ModelPackageGroupSummary
impl Unpin for ModelPackageGroupSummary
impl UnwindSafe for ModelPackageGroupSummary
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.