Amazon.WAF.AmazonWAFClient.GetByteMatchSet C# (CSharp) Метод

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

Returns the ByteMatchSet specified by ByteMatchSetId.
/// 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 GetByteMatchSet ( string byteMatchSetId ) : GetByteMatchSetResponse
byteMatchSetId string The ByteMatchSetId of the ByteMatchSet that you want to get. ByteMatchSetId is returned by CreateByteMatchSet and by ListByteMatchSets.
Результат Amazon.WAF.Model.GetByteMatchSetResponse
        public GetByteMatchSetResponse GetByteMatchSet(string byteMatchSetId)
        {
            var request = new GetByteMatchSetRequest();
            request.ByteMatchSetId = byteMatchSetId;
            return GetByteMatchSet(request);
        }

Same methods

AmazonWAFClient::GetByteMatchSet ( Amazon.WAF.Model.GetByteMatchSetRequest request ) : GetByteMatchSetResponse
AmazonWAFClient