[][src]Struct rusoto_elasticbeanstalk::PlatformBranchSummary

pub struct PlatformBranchSummary {
    pub branch_name: Option<String>,
    pub branch_order: Option<i64>,
    pub lifecycle_state: Option<String>,
    pub platform_name: Option<String>,
    pub supported_tier_list: Option<Vec<String>>,
}

Summary information about a platform branch.

Fields

branch_name: Option<String>

The name of the platform branch.

branch_order: Option<i64>

An ordinal number that designates the order in which platform branches have been added to a platform. This can be helpful, for example, if your code calls the ListPlatformBranches action and then displays a list of platform branches.

A larger BranchOrder value designates a newer platform branch within the platform.

lifecycle_state: Option<String>

The support life cycle state of the platform branch.

Possible values: beta | supported | deprecated | retired

platform_name: Option<String>

The name of the platform to which this platform branch belongs.

supported_tier_list: Option<Vec<String>>

The environment tiers that platform versions in this branch support.

Possible values: WebServer/Standard | Worker/SQS/HTTP

Trait Implementations

impl Clone for PlatformBranchSummary[src]

impl Debug for PlatformBranchSummary[src]

impl Default for PlatformBranchSummary[src]

impl PartialEq<PlatformBranchSummary> for PlatformBranchSummary[src]

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