getGlobalResolver method
Retrieves information about a Route 53 Global Resolver instance.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter globalResolverId :
The ID of the Route 53 Global Resolver to retrieve information about.
Implementation
Future<GetGlobalResolverOutput> getGlobalResolver({
required String globalResolverId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/global-resolver/${Uri.encodeComponent(globalResolverId)}',
exceptionFnMap: _exceptionFns,
);
return GetGlobalResolverOutput.fromJson(response);
}