describeDataSetRefreshProperties method
Describes the refresh properties of a dataset.
May throw AccessDeniedException.
May throw InternalFailureException.
May throw InvalidParameterValueException.
May throw LimitExceededException.
May throw PreconditionNotMetException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
Parameter awsAccountId :
The Amazon Web Services account ID.
Parameter dataSetId :
The ID of the dataset.
Implementation
Future<DescribeDataSetRefreshPropertiesResponse>
describeDataSetRefreshProperties({
required String awsAccountId,
required String dataSetId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/accounts/${Uri.encodeComponent(awsAccountId)}/data-sets/${Uri.encodeComponent(dataSetId)}/refresh-properties',
exceptionFnMap: _exceptionFns,
);
return DescribeDataSetRefreshPropertiesResponse.fromJson(response);
}