Class: Aws::RDS::Types::SwitchoverBlueGreenDeploymentRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::SwitchoverBlueGreenDeploymentRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #blue_green_deployment_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The unique identifier of the blue/green deployment. 
- 
  
    
      #switchover_timeout  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The amount of time, in seconds, for the switchover to complete. 
Instance Attribute Details
#blue_green_deployment_identifier ⇒ String
The unique identifier of the blue/green deployment.
Constraints:
- 
Must match an existing blue/green deployment identifier. 
^
| 27075 27076 27077 27078 27079 27080 | # File 'lib/aws-sdk-rds/types.rb', line 27075 class SwitchoverBlueGreenDeploymentRequest < Struct.new( :blue_green_deployment_identifier, :switchover_timeout) SENSITIVE = [] include Aws::Structure end | 
#switchover_timeout ⇒ Integer
The amount of time, in seconds, for the switchover to complete.
Default: 300
If the switchover takes longer than the specified duration, then any changes are rolled back, and no changes are made to the environments.
| 27075 27076 27077 27078 27079 27080 | # File 'lib/aws-sdk-rds/types.rb', line 27075 class SwitchoverBlueGreenDeploymentRequest < Struct.new( :blue_green_deployment_identifier, :switchover_timeout) SENSITIVE = [] include Aws::Structure end |