[][src]Struct rusoto_elasticbeanstalk::EnvironmentTier

pub struct EnvironmentTier {
    pub name: Option<String>,
    pub type_: Option<String>,
    pub version: Option<String>,
}

Describes the properties of an environment tier

Fields

name: Option<String>

The name of this environment tier.

Valid values:

  • For Web server tierWebServer

  • For Worker tierWorker

type_: Option<String>

The type of this environment tier.

Valid values:

  • For Web server tierStandard

  • For Worker tierSQS/HTTP

version: Option<String>

The version of this environment tier. When you don't set a value to it, Elastic Beanstalk uses the latest compatible worker tier version.

This member is deprecated. Any specific version that you set may become out of date. We recommend leaving it unspecified.

Trait Implementations

impl Clone for EnvironmentTier[src]

impl Debug for EnvironmentTier[src]

impl Default for EnvironmentTier[src]

impl PartialEq<EnvironmentTier> for EnvironmentTier[src]

impl StructuralPartialEq for EnvironmentTier[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.