getSignedBluinsightsUrl method

Future<GetSignedBluinsightsUrlResponse> getSignedBluinsightsUrl()

Gets a single sign-on URL that can be used to connect to AWS Blu Insights.

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

Implementation

Future<GetSignedBluinsightsUrlResponse> getSignedBluinsightsUrl() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/signed-bi-url',
    exceptionFnMap: _exceptionFns,
  );
  return GetSignedBluinsightsUrlResponse.fromJson(response);
}