pub struct ModelPackageSummary {
pub creation_time: f64,
pub model_package_arn: String,
pub model_package_description: Option<String>,
pub model_package_name: String,
pub model_package_status: String,
}
Expand description
Provides summary information about a model package.
Fields§
§creation_time: f64
A timestamp that shows when the model package was created.
model_package_arn: String
The Amazon Resource Name (ARN) of the model package.
model_package_description: Option<String>
A brief description of the model package.
model_package_name: String
The name of the model package.
model_package_status: String
The overall status of the model package.
Trait Implementations§
Source§impl Clone for ModelPackageSummary
impl Clone for ModelPackageSummary
Source§fn clone(&self) -> ModelPackageSummary
fn clone(&self) -> ModelPackageSummary
Returns a duplicate 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 Default for ModelPackageSummary
impl Default for ModelPackageSummary
Source§fn default() -> ModelPackageSummary
fn default() -> ModelPackageSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelPackageSummary
impl<'de> Deserialize<'de> for ModelPackageSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ModelPackageSummary
impl PartialEq for ModelPackageSummary
impl StructuralPartialEq for ModelPackageSummary
Auto Trait Implementations§
impl Freeze for ModelPackageSummary
impl RefUnwindSafe for ModelPackageSummary
impl Send for ModelPackageSummary
impl Sync for ModelPackageSummary
impl Unpin for ModelPackageSummary
impl UnwindSafe for ModelPackageSummary
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