[][src]Struct rusoto_pi::PerformanceInsightsClient

pub struct PerformanceInsightsClient { /* fields omitted */ }

A client for the AWS PI API.

Implementations

impl PerformanceInsightsClient[src]

pub fn new(region: Region) -> PerformanceInsightsClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> PerformanceInsightsClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

pub fn new_with_client(
    client: Client,
    region: Region
) -> PerformanceInsightsClient
[src]

Trait Implementations

impl Clone for PerformanceInsightsClient[src]

impl PerformanceInsights for PerformanceInsightsClient[src]

pub fn describe_dimension_keys<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeDimensionKeysRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeDimensionKeysResponse, RusotoError<DescribeDimensionKeysError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

For a specific time period, retrieve the top N dimension keys for a metric.

pub fn get_resource_metrics<'life0, 'async_trait>(
    &'life0 self,
    input: GetResourceMetricsRequest
) -> Pin<Box<dyn Future<Output = Result<GetResourceMetricsResponse, RusotoError<GetResourceMetricsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Retrieve Performance Insights metrics for a set of data sources, over a time period. You can provide specific dimension groups and dimensions, and provide aggregation and filtering criteria for each group.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.