[][src]Struct rusoto_sagemaker::CreateMonitoringScheduleRequest

pub struct CreateMonitoringScheduleRequest {
    pub monitoring_schedule_config: MonitoringScheduleConfig,
    pub monitoring_schedule_name: String,
    pub tags: Option<Vec<Tag>>,
}

Fields

monitoring_schedule_config: MonitoringScheduleConfig

The configuration object that specifies the monitoring schedule and defines the monitoring job.

monitoring_schedule_name: String

The name of the monitoring schedule. The name must be unique within an AWS Region within an AWS account.

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 CreateMonitoringScheduleRequest[src]

impl Debug for CreateMonitoringScheduleRequest[src]

impl Default for CreateMonitoringScheduleRequest[src]

impl PartialEq<CreateMonitoringScheduleRequest> for CreateMonitoringScheduleRequest[src]

impl Serialize for CreateMonitoringScheduleRequest[src]

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