[][src]Struct rusoto_elasticbeanstalk::DescribeEventsMessage

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 Clone for DescribeEventsMessage
[src]

Performs copy-assignment from source. Read more

impl Default for DescribeEventsMessage
[src]

impl PartialEq<DescribeEventsMessage> for DescribeEventsMessage
[src]

impl Debug for DescribeEventsMessage
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T