Class: Aws::RDS::Types::BlueGreenDeploymentTask
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::BlueGreenDeploymentTask
 
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
Details about a task for a blue/green deployment.
For more information, see Using Amazon RDS Blue/Green Deployments for database updates in the Amazon RDS User Guide and Using Amazon RDS Blue/Green Deployments for database updates in the Amazon Aurora User Guide.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the blue/green deployment task. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of the blue/green deployment task. 
Instance Attribute Details
#name ⇒ String
The name of the blue/green deployment task.
| 707 708 709 710 711 712 | # File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 707 class BlueGreenDeploymentTask < Struct.new( :name, :status) SENSITIVE = [] include Aws::Structure end | 
#status ⇒ String
The status of the blue/green deployment task.
Valid Values:
- PENDING- The resource is being prepared for deployment.
- IN_PROGRESS- The resource is being deployed.
- COMPLETED- The resource has been deployed.
- FAILED- Deployment of the resource failed.
| 707 708 709 710 711 712 | # File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 707 class BlueGreenDeploymentTask < Struct.new( :name, :status) SENSITIVE = [] include Aws::Structure end |