Struct rusoto_codedeploy::DeploymentStyle[][src]

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

Indicates whether to route deployment traffic behind a load balancer.

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

Trait Implementations

impl Default for DeploymentStyle
[src]

Returns the "default value" for a type. Read more

impl Debug for DeploymentStyle
[src]

Formats the value using the given formatter. Read more

impl Clone for DeploymentStyle
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeploymentStyle
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations