pub struct CloudWatchClient<'a> { /* private fields */ }Implementations§
Source§impl CloudWatchClient<'_>
impl CloudWatchClient<'_>
Sourcepub async fn get_alarms(&self) -> Result<CloudWatchAlarmsResponse, Error>
pub async fn get_alarms(&self) -> Result<CloudWatchAlarmsResponse, Error>
List every metric and composite alarm across all accounts and regions, flattened with current state.
Sourcepub async fn get_metrics(&self) -> Result<CloudWatchMetricsResponse, Error>
pub async fn get_metrics(&self) -> Result<CloudWatchMetricsResponse, Error>
List every unique metric series (account, region, namespace, metric, dimensions) with its datapoint count and latest value.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for CloudWatchClient<'a>
impl<'a> !UnwindSafe for CloudWatchClient<'a>
impl<'a> Freeze for CloudWatchClient<'a>
impl<'a> Send for CloudWatchClient<'a>
impl<'a> Sync for CloudWatchClient<'a>
impl<'a> Unpin for CloudWatchClient<'a>
impl<'a> UnsafeUnpin for CloudWatchClient<'a>
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