describeReplicationTasks method

Future<DescribeReplicationTasksResponse> describeReplicationTasks({
  1. List<Filter>? filters,
  2. String? marker,
  3. int? maxRecords,
  4. bool? withoutSettings,
})

Returns information about replication tasks for your account in the current region.

May throw ResourceNotFoundFault.

Parameter filters : Filters applied to replication tasks.

Valid filter names: replication-task-arn | replication-task-id | migration-type | endpoint-arn | replication-instance-arn

Parameter marker : An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

Parameter maxRecords : The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

Parameter withoutSettings : An option to set to avoid returning information about settings. Use this to reduce overhead when setting information is too large. To use this option, choose true; otherwise, choose false (the default).

Implementation

Future<DescribeReplicationTasksResponse> describeReplicationTasks({
  List<Filter>? filters,
  String? marker,
  int? maxRecords,
  bool? withoutSettings,
}) async {
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'AmazonDMSv20160101.DescribeReplicationTasks'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      if (filters != null) 'Filters': filters,
      if (marker != null) 'Marker': marker,
      if (maxRecords != null) 'MaxRecords': maxRecords,
      if (withoutSettings != null) 'WithoutSettings': withoutSettings,
    },
  );

  return DescribeReplicationTasksResponse.fromJson(jsonResponse.body);
}