Amazon.WAFRegional.AmazonWAFRegionalClient.GetChangeTokenStatusAsync C# (CSharp) Метод

GetChangeTokenStatusAsync() публичный Метод

Returns the status of a ChangeToken that you got by calling GetChangeToken. ChangeTokenStatus is one of the following values:
  • PROVISIONED: You requested the change token by calling GetChangeToken, but you haven't used it yet in a call to create, update, or delete an AWS WAF object.

  • PENDING: AWS WAF is propagating the create, update, or delete request to all AWS WAF servers.

  • IN_SYNC: Propagation is complete.

/// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// /// The operation failed because the referenced object doesn't exist. ///
public GetChangeTokenStatusAsync ( string changeToken, System cancellationToken = default(CancellationToken) ) : Task
changeToken string The change token for which you want to get the status. This change token was previously returned in the GetChangeToken response.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<GetChangeTokenStatusResponse> GetChangeTokenStatusAsync(string changeToken, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new GetChangeTokenStatusRequest();
            request.ChangeToken = changeToken;
            return GetChangeTokenStatusAsync(request, cancellationToken);
        }

Same methods

AmazonWAFRegionalClient::GetChangeTokenStatusAsync ( GetChangeTokenStatusRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonWAFRegionalClient