getIamPortalLoginUrl method

Future<GetIamPortalLoginUrlOutput> getIamPortalLoginUrl({
  1. required String domainIdentifier,
})

Gets the data portal URL for the specified Amazon DataZone domain.

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

Parameter domainIdentifier : the ID of the Amazon DataZone domain the data portal of which you want to get.

Implementation

Future<GetIamPortalLoginUrlOutput> getIamPortalLoginUrl({
  required String domainIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'POST',
    requestUri:
        '/v2/domains/${Uri.encodeComponent(domainIdentifier)}/get-portal-login-url',
    exceptionFnMap: _exceptionFns,
  );
  return GetIamPortalLoginUrlOutput.fromJson(response);
}