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

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

Returns the IPSet that is specified by IPSetId.
/// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// /// The operation failed because you tried to create, update, or delete an object by using /// an invalid account identifier. /// /// The operation failed because the referenced object doesn't exist. ///
public GetIPSetAsync ( string ipSetId, System cancellationToken = default(CancellationToken) ) : Task
ipSetId string The IPSetId of the IPSet that you want to get. IPSetId is returned by CreateIPSet and by ListIPSets.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<GetIPSetResponse> GetIPSetAsync(string ipSetId, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new GetIPSetRequest();
            request.IPSetId = ipSetId;
            return GetIPSetAsync(request, cancellationToken);
        }

Same methods

AmazonWAFRegionalClient::GetIPSetAsync ( GetIPSetRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonWAFRegionalClient