Class: Aws::RDS::Types::BlueGreenDeploymentTask

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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*.

[1]: docs.aws.amazon.com/AmazonRDS/latest/UserGuide/blue-green-deployments.html [2]: docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/blue-green-deployments.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the blue/green deployment task.

Returns:

  • (String)


686
687
688
689
690
691
# File 'lib/aws-sdk-rds/types.rb', line 686

class BlueGreenDeploymentTask < Struct.new(
  :name,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

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.

Returns:

  • (String)


686
687
688
689
690
691
# File 'lib/aws-sdk-rds/types.rb', line 686

class BlueGreenDeploymentTask < Struct.new(
  :name,
  :status)
  SENSITIVE = []
  include Aws::Structure
end