DeploymentStyle — AWS SDK for Ruby V3 (original) (raw)
Class: Aws::CodeDeploy::Types::DeploymentStyle
Inherits:
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::DeploymentStyle show all
Defined in:
gems/aws-sdk-codedeploy/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 Summarycollapse
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 'gems/aws-sdk-codedeploy/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 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 1904 class DeploymentStyle < Struct.new( :deployment_type, :deployment_option) SENSITIVE = [] include Aws::Structure end |
---|