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

impl Debug for ComposeEnvironmentsMessage[src]

impl Default for ComposeEnvironmentsMessage[src]

impl PartialEq<ComposeEnvironmentsMessage> for ComposeEnvironmentsMessage[src]

impl StructuralPartialEq for ComposeEnvironmentsMessage[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.