Class: Aws::RDS::Types::SwitchoverBlueGreenDeploymentRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#blue_green_deployment_identifierString

The unique identifier of the blue/green deployment.

Constraints:

  • Must match an existing blue/green deployment identifier.

^

Returns:

  • (String)


26600
26601
26602
26603
26604
26605
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 26600

class SwitchoverBlueGreenDeploymentRequest < Struct.new(
  :blue_green_deployment_identifier,
  :switchover_timeout)
  SENSITIVE = []
  include Aws::Structure
end

#switchover_timeoutInteger

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.

Returns:

  • (Integer)


26600
26601
26602
26603
26604
26605
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 26600

class SwitchoverBlueGreenDeploymentRequest < Struct.new(
  :blue_green_deployment_identifier,
  :switchover_timeout)
  SENSITIVE = []
  include Aws::Structure
end