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

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

Returns the SqlInjectionMatchSet that is specified by SqlInjectionMatchSetId.
/// 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 GetSqlInjectionMatchSet ( string sqlInjectionMatchSetId ) : GetSqlInjectionMatchSetResponse
sqlInjectionMatchSetId string The SqlInjectionMatchSetId of the SqlInjectionMatchSet that you want to get. SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.
Результат GetSqlInjectionMatchSetResponse
        public GetSqlInjectionMatchSetResponse GetSqlInjectionMatchSet(string sqlInjectionMatchSetId)
        {
            var request = new GetSqlInjectionMatchSetRequest();
            request.SqlInjectionMatchSetId = sqlInjectionMatchSetId;
            return GetSqlInjectionMatchSet(request);
        }

Same methods

AmazonWAFRegionalClient::GetSqlInjectionMatchSet ( GetSqlInjectionMatchSetRequest request ) : GetSqlInjectionMatchSetResponse
AmazonWAFRegionalClient