getClassificationScope method
Retrieves the classification scope settings for an account.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter id :
The unique identifier for the Amazon Macie resource that the request
applies to.
Implementation
Future<GetClassificationScopeResponse> getClassificationScope({
required String id,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/classification-scopes/${Uri.encodeComponent(id)}',
exceptionFnMap: _exceptionFns,
);
return GetClassificationScopeResponse.fromJson(response);
}