| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.Neptune.DeleteDBCluster
Description
The DeleteDBCluster action deletes a previously provisioned DB cluster. When you delete a DB cluster, all automated backups for that DB cluster are deleted and can't be recovered. Manual DB cluster snapshots of the specified DB cluster are not deleted.
Note that the DB Cluster cannot be deleted if deletion protection is
enabled. To delete it, you must first set its DeletionProtection field
to False.
Synopsis
- data DeleteDBCluster = DeleteDBCluster' {}
- newDeleteDBCluster :: Text -> DeleteDBCluster
- deleteDBCluster_finalDBSnapshotIdentifier :: Lens' DeleteDBCluster (Maybe Text)
- deleteDBCluster_skipFinalSnapshot :: Lens' DeleteDBCluster (Maybe Bool)
- deleteDBCluster_dbClusterIdentifier :: Lens' DeleteDBCluster Text
- data DeleteDBClusterResponse = DeleteDBClusterResponse' {
- dbCluster :: Maybe DBCluster
- httpStatus :: Int
- newDeleteDBClusterResponse :: Int -> DeleteDBClusterResponse
- deleteDBClusterResponse_dbCluster :: Lens' DeleteDBClusterResponse (Maybe DBCluster)
- deleteDBClusterResponse_httpStatus :: Lens' DeleteDBClusterResponse Int
Creating a Request
data DeleteDBCluster Source #
See: newDeleteDBCluster smart constructor.
Constructors
| DeleteDBCluster' | |
Fields
| |
Instances
Arguments
| :: Text | |
| -> DeleteDBCluster |
Create a value of DeleteDBCluster with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:finalDBSnapshotIdentifier:DeleteDBCluster', deleteDBCluster_finalDBSnapshotIdentifier - The DB cluster snapshot identifier of the new DB cluster snapshot
created when SkipFinalSnapshot is set to false.
Specifying this parameter and also setting the SkipFinalShapshot
parameter to true results in an error.
Constraints:
- Must be 1 to 255 letters, numbers, or hyphens.
- First character must be a letter
- Cannot end with a hyphen or contain two consecutive hyphens
$sel:skipFinalSnapshot:DeleteDBCluster', deleteDBCluster_skipFinalSnapshot - Determines whether a final DB cluster snapshot is created before the DB
cluster is deleted. If true is specified, no DB cluster snapshot is
created. If false is specified, a DB cluster snapshot is created
before the DB cluster is deleted.
You must specify a FinalDBSnapshotIdentifier parameter if
SkipFinalSnapshot is false.
Default: false
DeleteDBCluster, deleteDBCluster_dbClusterIdentifier - The DB cluster identifier for the DB cluster to be deleted. This
parameter isn't case-sensitive.
Constraints:
- Must match an existing DBClusterIdentifier.
Request Lenses
deleteDBCluster_finalDBSnapshotIdentifier :: Lens' DeleteDBCluster (Maybe Text) Source #
The DB cluster snapshot identifier of the new DB cluster snapshot
created when SkipFinalSnapshot is set to false.
Specifying this parameter and also setting the SkipFinalShapshot
parameter to true results in an error.
Constraints:
- Must be 1 to 255 letters, numbers, or hyphens.
- First character must be a letter
- Cannot end with a hyphen or contain two consecutive hyphens
deleteDBCluster_skipFinalSnapshot :: Lens' DeleteDBCluster (Maybe Bool) Source #
Determines whether a final DB cluster snapshot is created before the DB
cluster is deleted. If true is specified, no DB cluster snapshot is
created. If false is specified, a DB cluster snapshot is created
before the DB cluster is deleted.
You must specify a FinalDBSnapshotIdentifier parameter if
SkipFinalSnapshot is false.
Default: false
deleteDBCluster_dbClusterIdentifier :: Lens' DeleteDBCluster Text Source #
The DB cluster identifier for the DB cluster to be deleted. This parameter isn't case-sensitive.
Constraints:
- Must match an existing DBClusterIdentifier.
Destructuring the Response
data DeleteDBClusterResponse Source #
See: newDeleteDBClusterResponse smart constructor.
Constructors
| DeleteDBClusterResponse' | |
Fields
| |
Instances
newDeleteDBClusterResponse Source #
Create a value of DeleteDBClusterResponse with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:dbCluster:DeleteDBClusterResponse', deleteDBClusterResponse_dbCluster - Undocumented member.
$sel:httpStatus:DeleteDBClusterResponse', deleteDBClusterResponse_httpStatus - The response's http status code.
Response Lenses
deleteDBClusterResponse_dbCluster :: Lens' DeleteDBClusterResponse (Maybe DBCluster) Source #
Undocumented member.
deleteDBClusterResponse_httpStatus :: Lens' DeleteDBClusterResponse Int Source #
The response's http status code.