/// <summary> /// Used to cancel an open change request. Must be sent before the status of the request /// changes to <code>APPLYING</code>, the final stage of completing your change request. /// You can describe a change during the 60-day request history retention period for API /// calls. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CancelChangeSet service method.</param> /// /// <returns>The response from the CancelChangeSet service method, as returned by MarketplaceCatalog.</returns> /// <exception cref="Amazon.MarketplaceCatalog.Model.AccessDeniedException"> /// Access is denied. /// </exception> /// <exception cref="Amazon.MarketplaceCatalog.Model.InternalServiceException"> /// There was an internal service exception. /// </exception> /// <exception cref="Amazon.MarketplaceCatalog.Model.ResourceInUseException"> /// The resource is currently in use. /// </exception> /// <exception cref="Amazon.MarketplaceCatalog.Model.ResourceNotFoundException"> /// The specified resource wasn't found. /// </exception> /// <exception cref="Amazon.MarketplaceCatalog.Model.ThrottlingException"> /// Too many requests. /// </exception> /// <exception cref="Amazon.MarketplaceCatalog.Model.ValidationException"> /// An error occurred during validation. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/CancelChangeSet">REST API Reference for CancelChangeSet Operation</seealso> public virtual CancelChangeSetResponse CancelChangeSet(CancelChangeSetRequest request) { var options = new InvokeOptions(); options.RequestMarshaller = CancelChangeSetRequestMarshaller.Instance; options.ResponseUnmarshaller = CancelChangeSetResponseUnmarshaller.Instance; return(Invoke <CancelChangeSetResponse>(request, options)); }
/// <summary> /// Used to cancel an open change request. Must be sent before the status of the request /// changes to <code>APPLYING</code>, the final stage of completing your change request. /// You can describe a change during the 60-day request history retention period for API /// calls. /// </summary> /// <param name="request">Container for the necessary parameters to execute the CancelChangeSet 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 CancelChangeSet service method, as returned by MarketplaceCatalog.</returns> /// <exception cref="Amazon.MarketplaceCatalog.Model.AccessDeniedException"> /// Access is denied. /// </exception> /// <exception cref="Amazon.MarketplaceCatalog.Model.InternalServiceException"> /// There was an internal service exception. /// </exception> /// <exception cref="Amazon.MarketplaceCatalog.Model.ResourceInUseException"> /// The resource is currently in use. /// </exception> /// <exception cref="Amazon.MarketplaceCatalog.Model.ResourceNotFoundException"> /// The specified resource wasn't found. /// </exception> /// <exception cref="Amazon.MarketplaceCatalog.Model.ThrottlingException"> /// Too many requests. /// </exception> /// <exception cref="Amazon.MarketplaceCatalog.Model.ValidationException"> /// An error occurred during validation. /// </exception> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/CancelChangeSet">REST API Reference for CancelChangeSet Operation</seealso> public virtual Task <CancelChangeSetResponse> CancelChangeSetAsync(CancelChangeSetRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var options = new InvokeOptions(); options.RequestMarshaller = CancelChangeSetRequestMarshaller.Instance; options.ResponseUnmarshaller = CancelChangeSetResponseUnmarshaller.Instance; return(InvokeAsync <CancelChangeSetResponse>(request, options, cancellationToken)); }
/// <summary> /// Initiates the asynchronous execution of the CancelChangeSet operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the CancelChangeSet operation on AmazonMarketplaceCatalogClient.</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 EndCancelChangeSet /// operation.</returns> /// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/marketplace-catalog-2018-09-17/CancelChangeSet">REST API Reference for CancelChangeSet Operation</seealso> public virtual IAsyncResult BeginCancelChangeSet(CancelChangeSetRequest request, AsyncCallback callback, object state) { var options = new InvokeOptions(); options.RequestMarshaller = CancelChangeSetRequestMarshaller.Instance; options.ResponseUnmarshaller = CancelChangeSetResponseUnmarshaller.Instance; return(BeginInvoke(request, options, callback, state)); }