[][src]Struct rusoto_health::AWSHealthClient

pub struct AWSHealthClient { /* fields omitted */ }

A client for the AWSHealth API.

Methods

impl AWSHealthClient[src]

pub fn new(region: Region) -> AWSHealthClient[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
) -> AWSHealthClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    P::Future: Send,
    D: DispatchSignedRequest + Send + Sync + 'static,
    D::Future: Send
[src]

Trait Implementations

impl AWSHealth for AWSHealthClient[src]

fn describe_affected_entities(
    &self,
    input: DescribeAffectedEntitiesRequest
) -> RusotoFuture<DescribeAffectedEntitiesResponse, DescribeAffectedEntitiesError>
[src]

Returns a list of entities that have been affected by the specified events, based on the specified filter criteria. Entities can refer to individual customer resources, groups of customer resources, or any other construct, depending on the AWS service. Events that have impact beyond that of the affected entities, or where the extent of impact is unknown, include at least one entity indicating this.

At least one event ARN is required. Results are sorted by the lastUpdatedTime of the entity, starting with the most recent.

fn describe_entity_aggregates(
    &self,
    input: DescribeEntityAggregatesRequest
) -> RusotoFuture<DescribeEntityAggregatesResponse, DescribeEntityAggregatesError>
[src]

Returns the number of entities that are affected by each of the specified events. If no events are specified, the counts of all affected entities are returned.

fn describe_event_aggregates(
    &self,
    input: DescribeEventAggregatesRequest
) -> RusotoFuture<DescribeEventAggregatesResponse, DescribeEventAggregatesError>
[src]

Returns the number of events of each event type (issue, scheduled change, and account notification). If no filter is specified, the counts of all events in each category are returned.

fn describe_event_details(
    &self,
    input: DescribeEventDetailsRequest
) -> RusotoFuture<DescribeEventDetailsResponse, DescribeEventDetailsError>
[src]

Returns detailed information about one or more specified events. Information includes standard event data (region, service, etc., as returned by DescribeEvents), a detailed event description, and possible additional metadata that depends upon the nature of the event. Affected entities are not included; to retrieve those, use the DescribeAffectedEntities operation.

If a specified event cannot be retrieved, an error message is returned for that event.

fn describe_event_types(
    &self,
    input: DescribeEventTypesRequest
) -> RusotoFuture<DescribeEventTypesResponse, DescribeEventTypesError>
[src]

Returns the event types that meet the specified filter criteria. If no filter criteria are specified, all event types are returned, in no particular order.

fn describe_events(
    &self,
    input: DescribeEventsRequest
) -> RusotoFuture<DescribeEventsResponse, DescribeEventsError>
[src]

Returns information about events that meet the specified filter criteria. Events are returned in a summary form and do not include the detailed description, any additional metadata that depends on the event type, or any affected resources. To retrieve that information, use the DescribeEventDetails and DescribeAffectedEntities operations.

If no filter criteria are specified, all events are returned. Results are sorted by lastModifiedTime, starting with the most recent.

impl Clone for AWSHealthClient[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self