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

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 to delete. This parameter isn't case-sensitive.

Constraints:

  • Must match an existing blue/green deployment identifier.

^

Returns:

  • (String)


10957
10958
10959
10960
10961
10962
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 10957

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 is SWITCHOVER_COMPLETED.

Returns:

  • (Boolean)


10957
10958
10959
10960
10961
10962
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 10957

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