Class: Aws::CodeDeploy::Types::DeploymentStyle
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::DeploymentStyle
- Defined in:
- gems/aws-sdk-codedeploy/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.
2221 2222 2223 2224 2225 2226 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2221 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.
2221 2222 2223 2224 2225 2226 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2221 class DeploymentStyle < Struct.new( :deployment_type, :deployment_option) SENSITIVE = [] include Aws::Structure end |