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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

The name of the blue/green deployment task.

Returns:

  • (String)


686
687
688
689
690
691
# File 'gems/aws-sdk-rds/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 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 686

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