Delete Blue Green Deployment
rds_delete_blue_green_deployment | R Documentation |
Deletes a blue/green deployment¶
Description¶
Deletes 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.
Usage¶
rds_delete_blue_green_deployment(BlueGreenDeploymentIdentifier,
DeleteTarget)
Arguments¶
BlueGreenDeploymentIdentifier |
[required] The unique identifier of the blue/green deployment to delete. This parameter isn't case-sensitive. Constraints:
|
DeleteTarget |
Specifies whether to delete the resources in the green
environment. You can't specify this option if the blue/green deployment
status
is |
Value¶
A list with the following syntax:
list(
BlueGreenDeployment = list(
BlueGreenDeploymentIdentifier = "string",
BlueGreenDeploymentName = "string",
Source = "string",
Target = "string",
SwitchoverDetails = list(
list(
SourceMember = "string",
TargetMember = "string",
Status = "string"
)
),
Tasks = list(
list(
Name = "string",
Status = "string"
)
),
Status = "string",
StatusDetails = "string",
CreateTime = as.POSIXct(
"2015-01-01"
),
DeleteTime = as.POSIXct(
"2015-01-01"
),
TagList = list(
list(
Key = "string",
Value = "string"
)
)
)
)
Request syntax¶
svc$delete_blue_green_deployment(
BlueGreenDeploymentIdentifier = "string",
DeleteTarget = TRUE|FALSE
)