Class: Aws::CodeDeploy::Types::DeploymentStyle
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::DeploymentStyle
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass DeploymentStyle data as a 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_option ⇒ String
Indicates whether to route deployment traffic behind a load balancer.
-
#deployment_type ⇒ String
Indicates whether to run an in-place deployment or a blue/green deployment.
Instance Attribute Details
#deployment_option ⇒ String
Indicates whether to route deployment traffic behind a load balancer.
2184 2185 2186 2187 2188 2189 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 2184 class DeploymentStyle < Struct.new( :deployment_type, :deployment_option) SENSITIVE = [] include Aws::Structure end |
#deployment_type ⇒ String
Indicates whether to run an in-place deployment or a blue/green deployment.
2184 2185 2186 2187 2188 2189 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 2184 class DeploymentStyle < Struct.new( :deployment_type, :deployment_option) SENSITIVE = [] include Aws::Structure end |