#[non_exhaustive]pub struct CloudWatchMetricDataQuery {
pub id: String,
pub expression: Option<String>,
pub label: Option<String>,
pub metric_stat: Option<CloudWatchMetricStat>,
pub period: Option<i64>,
pub return_data: bool,
pub other: Map<String, Value>,
}Available on crate feature
sns only.Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: String§expression: Option<String>§label: Option<String>§metric_stat: Option<CloudWatchMetricStat>§period: Option<i64>§return_data: bool§other: Map<String, Value>Available on crate feature
catch-all-fields only.Catchall to catch any additional fields that were present but not explicitly defined by this struct.
Enabled with Cargo feature catch-all-fields.
If catch-all-fields is disabled, any additional fields that are present will be ignored.
Trait Implementations§
Source§impl Clone for CloudWatchMetricDataQuery
impl Clone for CloudWatchMetricDataQuery
Source§fn clone(&self) -> CloudWatchMetricDataQuery
fn clone(&self) -> CloudWatchMetricDataQuery
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CloudWatchMetricDataQuery
impl Debug for CloudWatchMetricDataQuery
Source§impl Default for CloudWatchMetricDataQuery
impl Default for CloudWatchMetricDataQuery
Source§fn default() -> CloudWatchMetricDataQuery
fn default() -> CloudWatchMetricDataQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CloudWatchMetricDataQuery
impl<'de> Deserialize<'de> for CloudWatchMetricDataQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for CloudWatchMetricDataQuery
Auto Trait Implementations§
impl Freeze for CloudWatchMetricDataQuery
impl RefUnwindSafe for CloudWatchMetricDataQuery
impl Send for CloudWatchMetricDataQuery
impl Sync for CloudWatchMetricDataQuery
impl Unpin for CloudWatchMetricDataQuery
impl UnwindSafe for CloudWatchMetricDataQuery
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)