[][src]Struct rusoto_sagemaker::ModelPackageGroup

pub struct ModelPackageGroup {
    pub created_by: Option<UserContext>,
    pub creation_time: Option<f64>,
    pub model_package_group_arn: Option<String>,
    pub model_package_group_description: Option<String>,
    pub model_package_group_name: Option<String>,
    pub model_package_group_status: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

A group of versioned models in the model registry.

Fields

created_by: Option<UserContext>creation_time: Option<f64>

The time that the model group was created.

model_package_group_arn: Option<String>

The Amazon Resource Name (ARN) of the model group.

model_package_group_description: Option<String>

The description for the model group.

model_package_group_name: Option<String>

The name of the model group.

model_package_group_status: Option<String>

The status of the model group. This can be one of the following values.

  • PENDING - The model group is pending being created.

  • INPROGRESS - The model group is in the process of being created.

  • COMPLETED - The model group was successfully created.

  • FAILED - The model group failed.

  • DELETING - The model group is in the process of being deleted.

  • DELETEFAILED - SageMaker failed to delete the model group.

tags: Option<Vec<Tag>>

A list of the tags associated with the model group. For more information, see Tagging AWS resources in the AWS General Reference Guide.

Trait Implementations

impl Clone for ModelPackageGroup[src]

impl Debug for ModelPackageGroup[src]

impl Default for ModelPackageGroup[src]

impl<'de> Deserialize<'de> for ModelPackageGroup[src]

impl PartialEq<ModelPackageGroup> for ModelPackageGroup[src]

impl StructuralPartialEq for ModelPackageGroup[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.