Struct rusoto_elasticbeanstalk::ComposeEnvironmentsMessage[][src]

pub struct ComposeEnvironmentsMessage {
    pub application_name: Option<String>,
    pub group_name: Option<String>,
    pub version_labels: Option<Vec<String>>,
}

Request to create or update a group of environments.

Fields

The name of the application to which the specified source bundles belong.

The name of the group to which the target environments belong. Specify a group name only if the environment name defined in each target environment's manifest ends with a + (plus) character. See Environment Manifest (env.yaml) for details.

A list of version labels, specifying one or more application source bundles that belong to the target application. Each source bundle must include an environment manifest that specifies the name of the environment and the name of the solution stack to use, and optionally can specify environment links to create.

Trait Implementations

impl Default for ComposeEnvironmentsMessage
[src]

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

impl Debug for ComposeEnvironmentsMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for ComposeEnvironmentsMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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