restoreDBClusterFromSnapshot method

Future<RestoreDBClusterFromSnapshotResult> restoreDBClusterFromSnapshot({
  1. required String dBClusterIdentifier,
  2. required String engine,
  3. required String snapshotIdentifier,
  4. List<String>? availabilityZones,
  5. String? dBClusterParameterGroupName,
  6. String? dBSubnetGroupName,
  7. String? databaseName,
  8. bool? deletionProtection,
  9. List<String>? enableCloudwatchLogsExports,
  10. bool? enableIAMDatabaseAuthentication,
  11. String? engineVersion,
  12. String? kmsKeyId,
  13. String? optionGroupName,
  14. int? port,
  15. List<Tag>? tags,
  16. List<String>? vpcSecurityGroupIds,
})

Creates a new DB cluster from a DB snapshot or DB cluster snapshot.

If a DB snapshot is specified, the target DB cluster is created from the source DB snapshot with a default configuration and default security group.

If a DB cluster snapshot is specified, the target DB cluster is created from the source DB cluster restore point with the same configuration as the original source DB cluster, except that the new DB cluster is created with the default security group.

May throw DBClusterAlreadyExistsFault. May throw DBClusterQuotaExceededFault. May throw StorageQuotaExceededFault. May throw DBSubnetGroupNotFoundFault. May throw DBSnapshotNotFoundFault. May throw DBClusterSnapshotNotFoundFault. May throw InsufficientDBClusterCapacityFault. May throw InsufficientStorageClusterCapacityFault. May throw InvalidDBSnapshotStateFault. May throw InvalidDBClusterSnapshotStateFault. May throw StorageQuotaExceededFault. May throw InvalidVPCNetworkStateFault. May throw InvalidRestoreFault. May throw DBSubnetGroupNotFoundFault. May throw InvalidSubnet. May throw OptionGroupNotFoundFault. May throw KMSKeyNotAccessibleFault. May throw DBClusterParameterGroupNotFoundFault.

Parameter dBClusterIdentifier : The name of the DB cluster to create from the DB snapshot or DB cluster snapshot. This parameter isn't case-sensitive.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens
  • First character must be a letter
  • Cannot end with a hyphen or contain two consecutive hyphens
Example: my-snapshot-id

Parameter engine : The database engine to use for the new DB cluster.

Default: The same as source

Constraint: Must be compatible with the engine of the source

Parameter snapshotIdentifier : The identifier for the DB snapshot or DB cluster snapshot to restore from.

You can use either the name or the Amazon Resource Name (ARN) to specify a DB cluster snapshot. However, you can use only the ARN to specify a DB snapshot.

Constraints:

  • Must match the identifier of an existing Snapshot.

Parameter availabilityZones : Provides the list of EC2 Availability Zones that instances in the restored DB cluster can be created in.

Parameter dBClusterParameterGroupName : The name of the DB cluster parameter group to associate with the new DB cluster.

Constraints:

  • If supplied, must match the name of an existing DBClusterParameterGroup.

Parameter dBSubnetGroupName : The name of the DB subnet group to use for the new DB cluster.

Constraints: If supplied, must match the name of an existing DBSubnetGroup.

Example: mySubnetgroup

Parameter databaseName : Not supported.

Parameter deletionProtection : A value that indicates whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection is disabled.

Parameter enableCloudwatchLogsExports : The list of logs that the restored DB cluster is to export to Amazon CloudWatch Logs.

Parameter enableIAMDatabaseAuthentication : True to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts, and otherwise false.

Default: false

Parameter engineVersion : The version of the database engine to use for the new DB cluster.

Parameter kmsKeyId : The AWS KMS key identifier to use when restoring an encrypted DB cluster from a DB snapshot or DB cluster snapshot.

The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are restoring a DB cluster with the same AWS account that owns the KMS encryption key used to encrypt the new DB cluster, then you can use the KMS key alias instead of the ARN for the KMS encryption key.

If you do not specify a value for the KmsKeyId parameter, then the following will occur:

  • If the DB snapshot or DB cluster snapshot in SnapshotIdentifier is encrypted, then the restored DB cluster is encrypted using the KMS key that was used to encrypt the DB snapshot or DB cluster snapshot.
  • If the DB snapshot or DB cluster snapshot in SnapshotIdentifier is not encrypted, then the restored DB cluster is not encrypted.

Parameter optionGroupName : (Not supported by Neptune)

Parameter port : The port number on which the new DB cluster accepts connections.

Constraints: Value must be 1150-65535

Default: The same port as the original DB cluster.

Parameter tags : The tags to be assigned to the restored DB cluster.

Parameter vpcSecurityGroupIds : A list of VPC security groups that the new DB cluster will belong to.

Implementation

Future<RestoreDBClusterFromSnapshotResult> restoreDBClusterFromSnapshot({
  required String dBClusterIdentifier,
  required String engine,
  required String snapshotIdentifier,
  List<String>? availabilityZones,
  String? dBClusterParameterGroupName,
  String? dBSubnetGroupName,
  String? databaseName,
  bool? deletionProtection,
  List<String>? enableCloudwatchLogsExports,
  bool? enableIAMDatabaseAuthentication,
  String? engineVersion,
  String? kmsKeyId,
  String? optionGroupName,
  int? port,
  List<Tag>? tags,
  List<String>? vpcSecurityGroupIds,
}) async {
  ArgumentError.checkNotNull(dBClusterIdentifier, 'dBClusterIdentifier');
  ArgumentError.checkNotNull(engine, 'engine');
  ArgumentError.checkNotNull(snapshotIdentifier, 'snapshotIdentifier');
  final $request = <String, dynamic>{};
  $request['DBClusterIdentifier'] = dBClusterIdentifier;
  $request['Engine'] = engine;
  $request['SnapshotIdentifier'] = snapshotIdentifier;
  availabilityZones?.also((arg) => $request['AvailabilityZones'] = arg);
  dBClusterParameterGroupName
      ?.also((arg) => $request['DBClusterParameterGroupName'] = arg);
  dBSubnetGroupName?.also((arg) => $request['DBSubnetGroupName'] = arg);
  databaseName?.also((arg) => $request['DatabaseName'] = arg);
  deletionProtection?.also((arg) => $request['DeletionProtection'] = arg);
  enableCloudwatchLogsExports
      ?.also((arg) => $request['EnableCloudwatchLogsExports'] = arg);
  enableIAMDatabaseAuthentication
      ?.also((arg) => $request['EnableIAMDatabaseAuthentication'] = arg);
  engineVersion?.also((arg) => $request['EngineVersion'] = arg);
  kmsKeyId?.also((arg) => $request['KmsKeyId'] = arg);
  optionGroupName?.also((arg) => $request['OptionGroupName'] = arg);
  port?.also((arg) => $request['Port'] = arg);
  tags?.also((arg) => $request['Tags'] = arg);
  vpcSecurityGroupIds?.also((arg) => $request['VpcSecurityGroupIds'] = arg);
  final $result = await _protocol.send(
    $request,
    action: 'RestoreDBClusterFromSnapshot',
    version: '2014-10-31',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    shape: shapes['RestoreDBClusterFromSnapshotMessage'],
    shapes: shapes,
    resultWrapper: 'RestoreDBClusterFromSnapshotResult',
  );
  return RestoreDBClusterFromSnapshotResult.fromXml($result);
}