internal virtual CompleteAttachmentUploadResponse CompleteAttachmentUpload(CompleteAttachmentUploadRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = CompleteAttachmentUploadRequestMarshaller.Instance; options.ResponseUnmarshaller = CompleteAttachmentUploadResponseUnmarshaller.Instance; return(Invoke <CompleteAttachmentUploadResponse>(request, options)); }
/// <summary> /// Initiates the asynchronous execution of the CompleteAttachmentUpload operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the CompleteAttachmentUpload operation on AmazonConnectParticipantClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndCompleteAttachmentUpload /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/connectparticipant-2018-09-07/CompleteAttachmentUpload">REST API Reference for CompleteAttachmentUpload Operation</seealso> public virtual IAsyncResult BeginCompleteAttachmentUpload(CompleteAttachmentUploadRequest request, AsyncCallback callback, object state) { var options = new InvokeOptions(); options.RequestMarshaller = CompleteAttachmentUploadRequestMarshaller.Instance; options.ResponseUnmarshaller = CompleteAttachmentUploadResponseUnmarshaller.Instance; return(BeginInvoke(request, options, callback, state)); }
/// <summary> /// Allows you to confirm that the attachment has been uploaded using the pre-signed URL /// provided in StartAttachmentUpload API. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CompleteAttachmentUpload service method.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// /// <returns>The response from the CompleteAttachmentUpload service method, as returned by ConnectParticipant.</returns> /// <exception cref="Amazon.ConnectParticipant.Model.AccessDeniedException"> /// You do not have sufficient access to perform this action. /// </exception> /// <exception cref="Amazon.ConnectParticipant.Model.ConflictException"> /// An attachment with that identifier is already being uploaded. /// </exception> /// <exception cref="Amazon.ConnectParticipant.Model.InternalServerException"> /// This exception occurs when there is an internal failure in the Amazon Connect service. /// </exception> /// <exception cref="Amazon.ConnectParticipant.Model.ServiceQuotaExceededException"> /// The number of attachments per contact exceeds the quota. /// </exception> /// <exception cref="Amazon.ConnectParticipant.Model.ThrottlingException"> /// The request was denied due to request throttling. /// </exception> /// <exception cref="Amazon.ConnectParticipant.Model.ValidationException"> /// The input fails to satisfy the constraints specified by Amazon Connect. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/connectparticipant-2018-09-07/CompleteAttachmentUpload">REST API Reference for CompleteAttachmentUpload Operation</seealso> public virtual Task <CompleteAttachmentUploadResponse> CompleteAttachmentUploadAsync(CompleteAttachmentUploadRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = CompleteAttachmentUploadRequestMarshaller.Instance; options.ResponseUnmarshaller = CompleteAttachmentUploadResponseUnmarshaller.Instance; return(InvokeAsync <CompleteAttachmentUploadResponse>(request, options, cancellationToken)); }