Struct rusoto_elasticbeanstalk::CreateApplicationMessage[][src]

pub struct CreateApplicationMessage {
    pub application_name: String,
    pub description: Option<String>,
    pub resource_lifecycle_config: Option<ApplicationResourceLifecycleConfig>,
}

Request to create an application.

Fields

The name of the application.

Constraint: This name must be unique within your account. If the specified name already exists, the action returns an InvalidParameterValue error.

Describes the application.

Specify an application resource lifecycle configuration to prevent your application from accumulating too many versions.

Trait Implementations

impl Default for CreateApplicationMessage
[src]

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

impl Debug for CreateApplicationMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateApplicationMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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