[][src]Struct rusoto_elasticbeanstalk::ComposeEnvironmentsMessage

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

application_name: Option<String>

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

group_name: Option<String>

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.

version_labels: Option<Vec<String>>

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

impl Default for ComposeEnvironmentsMessage[src]

impl Clone for ComposeEnvironmentsMessage[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ComposeEnvironmentsMessage[src]

Auto Trait Implementations

impl Send for ComposeEnvironmentsMessage

impl Sync for ComposeEnvironmentsMessage

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]

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self