pub struct DescribeModelPackageOutput {
pub certify_for_marketplace: Option<bool>,
pub creation_time: f64,
pub inference_specification: Option<InferenceSpecification>,
pub model_package_arn: String,
pub model_package_description: Option<String>,
pub model_package_name: String,
pub model_package_status: String,
pub model_package_status_details: ModelPackageStatusDetails,
pub source_algorithm_specification: Option<SourceAlgorithmSpecification>,
pub validation_specification: Option<ModelPackageValidationSpecification>,
}
Fields§
§certify_for_marketplace: Option<bool>
Whether the model package is certified for listing on AWS Marketplace.
creation_time: f64
A timestamp specifying when the model package was created.
inference_specification: Option<InferenceSpecification>
Details about inference jobs that can be run with models based on this model package.
model_package_arn: String
The Amazon Resource Name (ARN) of the model package.
model_package_description: Option<String>
A brief summary of the model package.
model_package_name: String
The name of the model package being described.
model_package_status: String
The current status of the model package.
model_package_status_details: ModelPackageStatusDetails
Details about the current status of the model package.
source_algorithm_specification: Option<SourceAlgorithmSpecification>
Details about the algorithm that was used to create the model package.
validation_specification: Option<ModelPackageValidationSpecification>
Configurations for one or more transform jobs that Amazon SageMaker runs to test the model package.
Trait Implementations§
Source§impl Clone for DescribeModelPackageOutput
impl Clone for DescribeModelPackageOutput
Source§fn clone(&self) -> DescribeModelPackageOutput
fn clone(&self) -> DescribeModelPackageOutput
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 DescribeModelPackageOutput
impl Debug for DescribeModelPackageOutput
Source§impl Default for DescribeModelPackageOutput
impl Default for DescribeModelPackageOutput
Source§fn default() -> DescribeModelPackageOutput
fn default() -> DescribeModelPackageOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeModelPackageOutput
impl<'de> Deserialize<'de> for DescribeModelPackageOutput
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
impl StructuralPartialEq for DescribeModelPackageOutput
Auto Trait Implementations§
impl Freeze for DescribeModelPackageOutput
impl RefUnwindSafe for DescribeModelPackageOutput
impl Send for DescribeModelPackageOutput
impl Sync for DescribeModelPackageOutput
impl Unpin for DescribeModelPackageOutput
impl UnwindSafe for DescribeModelPackageOutput
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