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 ==
.impl StructuralPartialEq for CreateMonitoringScheduleInput
Auto Trait Implementations§
impl Freeze for CreateMonitoringScheduleInput
impl RefUnwindSafe for CreateMonitoringScheduleInput
impl Send for CreateMonitoringScheduleInput
impl Sync for CreateMonitoringScheduleInput
impl Unpin for CreateMonitoringScheduleInput
impl UnwindSafe for CreateMonitoringScheduleInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more