describeReplicator method

Future<DescribeReplicatorResponse> describeReplicator({
  1. required String replicatorArn,
})

Describes a replicator.

May throw BadRequestException. May throw ForbiddenException. May throw InternalServerErrorException. May throw NotFoundException. May throw ServiceUnavailableException. May throw TooManyRequestsException. May throw UnauthorizedException.

Parameter replicatorArn : The Amazon Resource Name (ARN) of the replicator to be described.

Implementation

Future<DescribeReplicatorResponse> describeReplicator({
  required String replicatorArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/replication/v1/replicators/${Uri.encodeComponent(replicatorArn)}',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeReplicatorResponse.fromJson(response);
}