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¶
Arguments¶
BlueGreenDeploymentIdentifier
[required] 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.
DeleteTarget
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
.
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"
)
)
)
)