deleteDataSetRefreshProperties method

Future<DeleteDataSetRefreshPropertiesResponse> deleteDataSetRefreshProperties({
  1. required String awsAccountId,
  2. required String dataSetId,
})

Deletes the dataset refresh properties of the dataset.

May throw AccessDeniedException. May throw ConflictException. May throw InternalFailureException. May throw InvalidParameterValueException. May throw LimitExceededException. May throw ResourceNotFoundException. May throw ThrottlingException.

Parameter awsAccountId : The Amazon Web Services account ID.

Parameter dataSetId : The ID of the dataset.

Implementation

Future<DeleteDataSetRefreshPropertiesResponse>
    deleteDataSetRefreshProperties({
  required String awsAccountId,
  required String dataSetId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/accounts/${Uri.encodeComponent(awsAccountId)}/data-sets/${Uri.encodeComponent(dataSetId)}/refresh-properties',
    exceptionFnMap: _exceptionFns,
  );
  return DeleteDataSetRefreshPropertiesResponse.fromJson(response);
}