getClusterSnapshot method

Future<GetClusterSnapshotOutput> getClusterSnapshot({
  1. required String snapshotArn,
})

Returns information about a specific elastic cluster snapshot

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter snapshotArn : The ARN identifier of the elastic cluster snapshot.

Implementation

Future<GetClusterSnapshotOutput> getClusterSnapshot({
  required String snapshotArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/cluster-snapshot/${Uri.encodeComponent(snapshotArn)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetClusterSnapshotOutput.fromJson(response);
}