Class: Aws::RDS::Types::DeleteBlueGreenDeploymentRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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 to delete. This parameter isn’t case-sensitive.

Constraints:

  • Must match an existing blue/green deployment identifier.

^

Returns:

  • (String)


10960
10961
10962
10963
10964
10965
# File 'lib/aws-sdk-rds/types.rb', line 10960

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

#delete_targetBoolean

Specifies whether to delete the resources in the green environment. You can’t specify this option if the blue/green deployment

status][1

is ‘SWITCHOVER_COMPLETED`.

[1]: docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_BlueGreenDeployment.html

Returns:

  • (Boolean)


10960
10961
10962
10963
10964
10965
# File 'lib/aws-sdk-rds/types.rb', line 10960

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