Create Db Cluster Snapshot
rds_create_db_cluster_snapshot | R Documentation |
Creates a snapshot of a DB cluster¶
Description¶
Creates a snapshot of a DB cluster.
For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.
For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.
Usage¶
rds_create_db_cluster_snapshot(DBClusterSnapshotIdentifier,
DBClusterIdentifier, Tags)
Arguments¶
DBClusterSnapshotIdentifier |
[required] The identifier of the DB cluster snapshot. This parameter is stored as a lowercase string. Constraints:
Example: |
DBClusterIdentifier |
[required] The identifier of the DB cluster to create a snapshot for. This parameter isn't case-sensitive. Constraints:
Example: |
Tags |
The tags to be assigned to the DB cluster snapshot. |
Value¶
A list with the following syntax:
list(
DBClusterSnapshot = list(
AvailabilityZones = list(
"string"
),
DBClusterSnapshotIdentifier = "string",
DBClusterIdentifier = "string",
SnapshotCreateTime = as.POSIXct(
"2015-01-01"
),
Engine = "string",
EngineMode = "string",
AllocatedStorage = 123,
Status = "string",
Port = 123,
VpcId = "string",
ClusterCreateTime = as.POSIXct(
"2015-01-01"
),
MasterUsername = "string",
EngineVersion = "string",
LicenseModel = "string",
SnapshotType = "string",
PercentProgress = 123,
StorageEncrypted = TRUE|FALSE,
KmsKeyId = "string",
DBClusterSnapshotArn = "string",
SourceDBClusterSnapshotArn = "string",
IAMDatabaseAuthenticationEnabled = TRUE|FALSE,
TagList = list(
list(
Key = "string",
Value = "string"
)
),
DBSystemId = "string",
StorageType = "string",
DbClusterResourceId = "string",
StorageThroughput = 123
)
)
Request syntax¶
svc$create_db_cluster_snapshot(
DBClusterSnapshotIdentifier = "string",
DBClusterIdentifier = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
Examples¶
## Not run:
# This example creates a DB cluster snapshot.
svc$create_db_cluster_snapshot(
DBClusterIdentifier = "mydbcluster",
DBClusterSnapshotIdentifier = "mydbclustersnapshot"
)
## End(Not run)