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]

[src]

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

impl Debug for CreateApplicationMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateApplicationMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations