describeQuickConnect method

Future<DescribeQuickConnectResponse> describeQuickConnect({
  1. required String instanceId,
  2. required String quickConnectId,
})

Describes the quick connect.

May throw InternalServiceException. May throw InvalidParameterException. May throw InvalidRequestException. May throw ResourceNotFoundException. May throw ThrottlingException.

Parameter instanceId : The identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

Parameter quickConnectId : The identifier for the quick connect.

Implementation

Future<DescribeQuickConnectResponse> describeQuickConnect({
  required String instanceId,
  required String quickConnectId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/quick-connects/${Uri.encodeComponent(instanceId)}/${Uri.encodeComponent(quickConnectId)}',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeQuickConnectResponse.fromJson(response);
}