getSupportedResourceTypes method

Future<GetSupportedResourceTypesOutput> getSupportedResourceTypes()

Returns the AWS resource types supported by AWS Backup.

May throw ServiceUnavailableException.

Implementation

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