Struct aws_sdk_sagemaker::operation::create_monitoring_schedule::CreateMonitoringScheduleInput
source · #[non_exhaustive]pub struct CreateMonitoringScheduleInput {
pub monitoring_schedule_name: Option<String>,
pub monitoring_schedule_config: Option<MonitoringScheduleConfig>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.monitoring_schedule_name: Option<String>
The name of the monitoring schedule. The name must be unique within an Amazon Web Services Region within an Amazon Web Services account.
monitoring_schedule_config: Option<MonitoringScheduleConfig>
The configuration object that specifies the monitoring schedule and defines the monitoring job.
(Optional) An array of key-value pairs. For more information, see Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide.
Implementations§
source§impl CreateMonitoringScheduleInput
impl CreateMonitoringScheduleInput
sourcepub fn monitoring_schedule_name(&self) -> Option<&str>
pub fn monitoring_schedule_name(&self) -> Option<&str>
The name of the monitoring schedule. The name must be unique within an Amazon Web Services Region within an Amazon Web Services account.
sourcepub fn monitoring_schedule_config(&self) -> Option<&MonitoringScheduleConfig>
pub fn monitoring_schedule_config(&self) -> Option<&MonitoringScheduleConfig>
The configuration object that specifies the monitoring schedule and defines the monitoring job.
(Optional) An array of key-value pairs. For more information, see Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateMonitoringScheduleInput
impl CreateMonitoringScheduleInput
sourcepub fn builder() -> CreateMonitoringScheduleInputBuilder
pub fn builder() -> CreateMonitoringScheduleInputBuilder
Creates a new builder-style object to manufacture CreateMonitoringScheduleInput
.
Trait Implementations§
source§impl Clone for CreateMonitoringScheduleInput
impl Clone for CreateMonitoringScheduleInput
source§fn clone(&self) -> CreateMonitoringScheduleInput
fn clone(&self) -> CreateMonitoringScheduleInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateMonitoringScheduleInput
impl PartialEq for CreateMonitoringScheduleInput
source§fn eq(&self, other: &CreateMonitoringScheduleInput) -> bool
fn eq(&self, other: &CreateMonitoringScheduleInput) -> bool
self
and other
values to be equal, and is used
by ==
.