getProfileTemplate method

Future<GetProfileTemplateOutput> getProfileTemplate()

Get profile template.

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

Implementation

Future<GetProfileTemplateOutput> getProfileTemplate() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/profileTemplate',
    exceptionFnMap: _exceptionFns,
  );
  return GetProfileTemplateOutput.fromJson(response);
}