Class: Aws::RDS::Types::DeleteBlueGreenDeploymentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::DeleteBlueGreenDeploymentRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#blue_green_deployment_identifier ⇒ String
The unique identifier of the blue/green deployment to delete.
-
#delete_target ⇒ Boolean
Specifies whether to delete the resources in the green environment.
Instance Attribute Details
#blue_green_deployment_identifier ⇒ String
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.
^
11380 11381 11382 11383 11384 11385 |
# File 'lib/aws-sdk-rds/types.rb', line 11380 class DeleteBlueGreenDeploymentRequest < Struct.new( :blue_green_deployment_identifier, :delete_target) SENSITIVE = [] include Aws::Structure end |
#delete_target ⇒ Boolean
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
11380 11381 11382 11383 11384 11385 |
# File 'lib/aws-sdk-rds/types.rb', line 11380 class DeleteBlueGreenDeploymentRequest < Struct.new( :blue_green_deployment_identifier, :delete_target) SENSITIVE = [] include Aws::Structure end |