Struct rusoto_health::DescribeEventDetailsRequest[][src]

pub struct DescribeEventDetailsRequest {
    pub event_arns: Vec<String>,
    pub locale: Option<String>,
}

Fields

A list of event ARNs (unique identifiers). For example: "arn:aws:health:us-east-1::event/AWS_EC2_MAINTENANCE_5331", "arn:aws:health:us-west-1::event/AWS_EBS_LOST_VOLUME_xyz"

The locale (language) to return information in. English (en) is the default and the only supported value at this time.

Trait Implementations

impl Default for DescribeEventDetailsRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeEventDetailsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeEventDetailsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeEventDetailsRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations