[][src]Struct rusoto_sagemaker::CreateModelPackageInput

pub struct CreateModelPackageInput {
    pub certify_for_marketplace: Option<bool>,
    pub inference_specification: Option<InferenceSpecification>,
    pub model_package_description: Option<String>,
    pub model_package_name: String,
    pub source_algorithm_specification: Option<SourceAlgorithmSpecification>,
    pub validation_specification: Option<ModelPackageValidationSpecification>,
}

Fields

certify_for_marketplace: Option<bool>

Whether to certify the model package for listing on AWS Marketplace.

inference_specification: Option<InferenceSpecification>

Specifies details about inference jobs that can be run with models based on this model package, including the following:

  • The Amazon ECR paths of containers that contain the inference code and model artifacts.

  • The instance types that the model package supports for transform jobs and real-time endpoints used for inference.

  • The input and output content formats that the model package supports for inference.

model_package_description: Option<String>

A description of the model package.

model_package_name: String

The name of the model package. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).

source_algorithm_specification: Option<SourceAlgorithmSpecification>

Details about the algorithm that was used to create the model package.

validation_specification: Option<ModelPackageValidationSpecification>

Specifies configurations for one or more transform jobs that Amazon SageMaker runs to test the model package.

Trait Implementations

impl Clone for CreateModelPackageInput[src]

impl Debug for CreateModelPackageInput[src]

impl Default for CreateModelPackageInput[src]

impl PartialEq<CreateModelPackageInput> for CreateModelPackageInput[src]

impl Serialize for CreateModelPackageInput[src]

impl StructuralPartialEq for CreateModelPackageInput[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> From<T> for T[src]

impl<T> Instrument 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.