getResourceSet method

Future<GetResourceSetResponse> getResourceSet({
  1. required String resourceSetName,
})

Displays the details about a resource set, including a list of the resources in the set.

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

Parameter resourceSetName : Name of a resource set.

Implementation

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