getReplicationConfiguration method

Future<ReplicationConfiguration> getReplicationConfiguration({
  1. required String sourceServerID,
})

Gets a ReplicationConfiguration, filtered by Source Server ID.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw UninitializedAccountException.

Parameter sourceServerID : The ID of the Source Serve for this Replication Configuration.r

Implementation

Future<ReplicationConfiguration> getReplicationConfiguration({
  required String sourceServerID,
}) async {
  final $payload = <String, dynamic>{
    'sourceServerID': sourceServerID,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/GetReplicationConfiguration',
    exceptionFnMap: _exceptionFns,
  );
  return ReplicationConfiguration.fromJson(response);
}