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.
(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§
Source§impl Clone for CreateMonitoringScheduleRequest
impl Clone for CreateMonitoringScheduleRequest
Source§fn clone(&self) -> CreateMonitoringScheduleRequest
fn clone(&self) -> CreateMonitoringScheduleRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for CreateMonitoringScheduleRequest
impl Default for CreateMonitoringScheduleRequest
Source§fn default() -> CreateMonitoringScheduleRequest
fn default() -> CreateMonitoringScheduleRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateMonitoringScheduleRequest
impl PartialEq for CreateMonitoringScheduleRequest
Source§fn eq(&self, other: &CreateMonitoringScheduleRequest) -> bool
fn eq(&self, other: &CreateMonitoringScheduleRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateMonitoringScheduleRequest
Auto Trait Implementations§
impl Freeze for CreateMonitoringScheduleRequest
impl RefUnwindSafe for CreateMonitoringScheduleRequest
impl Send for CreateMonitoringScheduleRequest
impl Sync for CreateMonitoringScheduleRequest
impl Unpin for CreateMonitoringScheduleRequest
impl UnwindSafe for CreateMonitoringScheduleRequest
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
Mutably borrows from an owned value. Read more