[][src]Struct rusoto_codedeploy::DeploymentStyle

pub struct DeploymentStyle {
    pub deployment_option: Option<String>,
    pub deployment_type: Option<String>,
}

Information about the type of deployment, either in-place or blue/green, you want to run and whether to route deployment traffic behind a load balancer.

Fields

deployment_option: Option<String>

Indicates whether to route deployment traffic behind a load balancer.

deployment_type: Option<String>

Indicates whether to run an in-place deployment or a blue/green deployment.

Trait Implementations

impl Clone for DeploymentStyle[src]

impl Default for DeploymentStyle[src]

impl PartialEq<DeploymentStyle> for DeploymentStyle[src]

impl Debug for DeploymentStyle[src]

impl Serialize for DeploymentStyle[src]

impl<'de> Deserialize<'de> for DeploymentStyle[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self