getCustomEndpoint method

Future<GetCustomEndpointResponse> getCustomEndpoint()

Returns the IoT managed integrations custom endpoint.

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

Implementation

Future<GetCustomEndpointResponse> getCustomEndpoint() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/custom-endpoint',
    exceptionFnMap: _exceptionFns,
  );
  return GetCustomEndpointResponse.fromJson(response);
}