Class: Aws::CodeDeploy::Types::DeploymentStyle
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::DeploymentStyle
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
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.
1904 1905 1906 1907 1908 1909 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 1904 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.
1904 1905 1906 1907 1908 1909 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 1904 class DeploymentStyle < Struct.new( :deployment_type, :deployment_option) SENSITIVE = [] include Aws::Structure end |