Struct rusoto_elasticbeanstalk::ApplicationDescription[][src]

pub struct ApplicationDescription {
    pub application_name: Option<String>,
    pub configuration_templates: Option<Vec<String>>,
    pub date_created: Option<String>,
    pub date_updated: Option<String>,
    pub description: Option<String>,
    pub resource_lifecycle_config: Option<ApplicationResourceLifecycleConfig>,
    pub versions: Option<Vec<String>>,
}

Describes the properties of an application.

Fields

The name of the application.

The names of the configuration templates associated with this application.

The date when the application was created.

The date when the application was last modified.

User-defined description of the application.

The lifecycle settings for the application.

The names of the versions for this application.

Trait Implementations

impl Default for ApplicationDescription
[src]

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

impl Debug for ApplicationDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for ApplicationDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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