getConfiguration method

Future<GetConfigurationOutput> getConfiguration({
  1. required String configurationId,
})

Returns details about the specified configuration.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter configurationId : A service generated identifier for the configuration.

Implementation

Future<GetConfigurationOutput> getConfiguration({
  required String configurationId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/getConfiguration/${Uri.encodeComponent(configurationId)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetConfigurationOutput.fromJson(response);
}