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

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

Returns the WebACL that is specified by WebACLId.
/// 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 GetWebACLAsync ( string webACLId, System cancellationToken = default(CancellationToken) ) : Task
webACLId string The WebACLId of the WebACL that you want to get. WebACLId is returned by CreateWebACL and by ListWebACLs.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<GetWebACLResponse> GetWebACLAsync(string webACLId, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new GetWebACLRequest();
            request.WebACLId = webACLId;
            return GetWebACLAsync(request, cancellationToken);
        }

Same methods

AmazonWAFRegionalClient::GetWebACLAsync ( GetWebACLRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonWAFRegionalClient