getResourceConfiguration method

Future<GetResourceConfigurationResponse> getResourceConfiguration({
  1. required String resourceConfigurationIdentifier,
})

Retrieves information about the specified resource configuration.

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

Parameter resourceConfigurationIdentifier : The ID of the resource configuration.

Implementation

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