getEventConfigurationByResourceTypes method

Future<GetEventConfigurationByResourceTypesResponse> getEventConfigurationByResourceTypes()

Get the event configuration based on resource types.

May throw AccessDeniedException. May throw InternalServerException. May throw ThrottlingException.

Implementation

Future<GetEventConfigurationByResourceTypesResponse>
    getEventConfigurationByResourceTypes() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/event-configurations-resource-types',
    exceptionFnMap: _exceptionFns,
  );
  return GetEventConfigurationByResourceTypesResponse.fromJson(response);
}