describeAppInstanceUserEndpoint method
Returns the full details of an AppInstanceUserEndpoint.
May throw BadRequestException.
May throw ForbiddenException.
May throw ServiceFailureException.
May throw ServiceUnavailableException.
May throw ThrottledClientException.
May throw UnauthorizedClientException.
Parameter appInstanceUserArn :
The ARN of the AppInstanceUser.
Parameter endpointId :
The unique identifier of the AppInstanceUserEndpoint.
Implementation
Future<DescribeAppInstanceUserEndpointResponse>
describeAppInstanceUserEndpoint({
required String appInstanceUserArn,
required String endpointId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/app-instance-users/${Uri.encodeComponent(appInstanceUserArn)}/endpoints/${Uri.encodeComponent(endpointId)}',
exceptionFnMap: _exceptionFns,
);
return DescribeAppInstanceUserEndpointResponse.fromJson(response);
}