You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CodeDeploy::Types::DeploymentStyle

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DeploymentStyle as input to an Aws::Client method, you can use a vanilla Hash:

{
  deployment_type: "IN_PLACE", # accepts IN_PLACE, BLUE_GREEN
  deployment_option: "WITH_TRAFFIC_CONTROL", # accepts WITH_TRAFFIC_CONTROL, WITHOUT_TRAFFIC_CONTROL
}

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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#deployment_optionString

Indicates whether to route deployment traffic behind a load balancer.

Possible values:

  • WITH_TRAFFIC_CONTROL
  • WITHOUT_TRAFFIC_CONTROL

Returns:

  • (String)

    Indicates whether to route deployment traffic behind a load balancer.

#deployment_typeString

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

Possible values:

  • IN_PLACE
  • BLUE_GREEN

Returns:

  • (String)

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