getConfigurationManager method
Returns a configuration manager.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter managerArn :
The ARN of the configuration manager.
Implementation
Future<GetConfigurationManagerOutput> getConfigurationManager({
required String managerArn,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/configurationManager/${Uri.encodeComponent(managerArn)}',
exceptionFnMap: _exceptionFns,
);
return GetConfigurationManagerOutput.fromJson(response);
}