disableSnapshotCopy method

Future<DisableSnapshotCopyResult> disableSnapshotCopy({
  1. required String clusterIdentifier,
})

Disables the automatic copying of snapshots from one region to another region for a specified cluster.

If your cluster and its snapshots are encrypted using a customer master key (CMK) from AWS KMS, use DeleteSnapshotCopyGrant to delete the grant that grants Amazon Redshift permission to the CMK in the destination region.

May throw ClusterNotFoundFault. May throw SnapshotCopyAlreadyDisabledFault. May throw InvalidClusterStateFault. May throw UnauthorizedOperation.

Parameter clusterIdentifier : The unique identifier of the source cluster that you want to disable copying of snapshots to a destination region.

Constraints: Must be the valid name of an existing cluster that has cross-region snapshot copy enabled.

Implementation

Future<DisableSnapshotCopyResult> disableSnapshotCopy({
  required String clusterIdentifier,
}) async {
  ArgumentError.checkNotNull(clusterIdentifier, 'clusterIdentifier');
  _s.validateStringLength(
    'clusterIdentifier',
    clusterIdentifier,
    0,
    2147483647,
    isRequired: true,
  );
  final $request = <String, dynamic>{};
  $request['ClusterIdentifier'] = clusterIdentifier;
  final $result = await _protocol.send(
    $request,
    action: 'DisableSnapshotCopy',
    version: '2012-12-01',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    shape: shapes['DisableSnapshotCopyMessage'],
    shapes: shapes,
    resultWrapper: 'DisableSnapshotCopyResult',
  );
  return DisableSnapshotCopyResult.fromXml($result);
}