Class: Aws::CodeDeploy::Types::GreenFleetProvisioningOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::GreenFleetProvisioningOption
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass GreenFleetProvisioningOption data as a hash:
{
action: "DISCOVER_EXISTING", # accepts DISCOVER_EXISTING, COPY_AUTO_SCALING_GROUP
}
Information about the instances that belong to the replacement environment in a blue/green deployment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action ⇒ String
The method used to add instances to a replacement environment.
Instance Attribute Details
#action ⇒ String
The method used to add instances to a replacement environment.
-
‘DISCOVER_EXISTING`: Use instances that already exist or will be created manually.
-
‘COPY_AUTO_SCALING_GROUP`: Use settings from a specified Auto Scaling group to define and create instances in a new Auto Scaling group.
3095 3096 3097 3098 3099 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3095 class GreenFleetProvisioningOption < Struct.new( :action) SENSITIVE = [] include Aws::Structure end |