Struct rusoto_elasticbeanstalk::DescribeEventsMessage[][src]

pub struct DescribeEventsMessage {
    pub application_name: Option<String>,
    pub end_time: Option<String>,
    pub environment_id: Option<String>,
    pub environment_name: Option<String>,
    pub max_records: Option<i64>,
    pub next_token: Option<String>,
    pub platform_arn: Option<String>,
    pub request_id: Option<String>,
    pub severity: Option<String>,
    pub start_time: Option<String>,
    pub template_name: Option<String>,
    pub version_label: Option<String>,
}

Request to retrieve a list of events for an environment.

Fields

If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those associated with this application.

If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur up to, but not including, the EndTime.

If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment.

If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment.

Specifies the maximum number of events that can be returned, beginning with the most recent event.

Pagination token. If specified, the events return the next batch of results.

The ARN of the version of the custom platform.

If specified, AWS Elastic Beanstalk restricts the described events to include only those associated with this request ID.

If specified, limits the events returned from this call to include only those with the specified severity or higher.

If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur on or after this time.

If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that are associated with this environment configuration.

If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this application version.

Trait Implementations

impl Default for DescribeEventsMessage
[src]

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

impl Debug for DescribeEventsMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeEventsMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeEventsMessage
[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