[][src]Struct rusoto_sagemaker::CreateModelQualityJobDefinitionRequest

pub struct CreateModelQualityJobDefinitionRequest {
    pub job_definition_name: String,
    pub job_resources: MonitoringResources,
    pub model_quality_app_specification: ModelQualityAppSpecification,
    pub model_quality_baseline_config: Option<ModelQualityBaselineConfig>,
    pub model_quality_job_input: ModelQualityJobInput,
    pub model_quality_job_output_config: MonitoringOutputConfig,
    pub network_config: Option<MonitoringNetworkConfig>,
    pub role_arn: String,
    pub stopping_condition: Option<MonitoringStoppingCondition>,
    pub tags: Option<Vec<Tag>>,
}

Fields

job_definition_name: String

The name of the monitoring job definition.

job_resources: MonitoringResourcesmodel_quality_app_specification: ModelQualityAppSpecification

The container that runs the monitoring job.

model_quality_baseline_config: Option<ModelQualityBaselineConfig>

Specifies the constraints and baselines for the monitoring job.

model_quality_job_input: ModelQualityJobInput

A list of the inputs that are monitored. Currently endpoints are supported.

model_quality_job_output_config: MonitoringOutputConfignetwork_config: Option<MonitoringNetworkConfig>

Specifies the network configuration for the monitoring job.

role_arn: String

The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform tasks on your behalf.

stopping_condition: Option<MonitoringStoppingCondition>tags: Option<Vec<Tag>>

(Optional) An array of key-value pairs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.

Trait Implementations

impl Clone for CreateModelQualityJobDefinitionRequest[src]

impl Debug for CreateModelQualityJobDefinitionRequest[src]

impl Default for CreateModelQualityJobDefinitionRequest[src]

impl PartialEq<CreateModelQualityJobDefinitionRequest> for CreateModelQualityJobDefinitionRequest[src]

impl Serialize for CreateModelQualityJobDefinitionRequest[src]

impl StructuralPartialEq for CreateModelQualityJobDefinitionRequest[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, 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.