Class: Aws::CodeDeploy::Types::GreenFleetProvisioningOption
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CodeDeploy::Types::GreenFleetProvisioningOption
 
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
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.
| 2674 2675 2676 2677 2678 | # File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 2674 class GreenFleetProvisioningOption < Struct.new( :action) SENSITIVE = [] include Aws::Structure end |