Class: Aws::RDS::Types::DeleteBlueGreenDeploymentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::DeleteBlueGreenDeploymentRequest
- Defined in:
- gems/aws-sdk-rds/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.
^
11405 11406 11407 11408 11409 11410 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 11405 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 is SWITCHOVER_COMPLETED
.
11405 11406 11407 11408 11409 11410 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 11405 class DeleteBlueGreenDeploymentRequest < Struct.new( :blue_green_deployment_identifier, :delete_target) SENSITIVE = [] include Aws::Structure end |