typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
58 lines (57 loc) • 2.73 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type SqlInjectionMatchSet_Type = 'AWS::WAF::SqlInjectionMatchSet';
export declare const SqlInjectionMatchSet_Type = "AWS::WAF::SqlInjectionMatchSet";
/**
* Resource Type definition for AWS::WAF::SqlInjectionMatchSet {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html}
*/
export default function SqlInjectionMatchSet(props: SqlInjectionMatchSet_Properties): CfnResource<SqlInjectionMatchSet_Properties>;
/**
* Resource Type definition for AWS::WAF::SqlInjectionMatchSet {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html}
*/
export declare type SqlInjectionMatchSet_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name}
*/
Name: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-sqlinjectionmatchtuples}
*/
SqlInjectionMatchTuples?: SqlInjectionMatchTuple[];
};
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sqlinjectionmatchset-sqlinjectionmatchtuples.html}
*/
export declare type SqlInjectionMatchTuple = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sqlinjectionmatchset-sqlinjectionmatchtuples.html#cfn-waf-sqlinjectionmatchset-sqlinjectionmatchtuples-fieldtomatch}
*/
FieldToMatch: FieldToMatch;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sqlinjectionmatchset-sqlinjectionmatchtuples.html#cfn-waf-sqlinjectionmatchset-sqlinjectionmatchtuples-texttransformation}
*/
TextTransformation: Resolvable<string>;
};
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-bytematchset-bytematchtuples-fieldtomatch.html}
*/
export declare type FieldToMatch = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-bytematchset-bytematchtuples-fieldtomatch.html#cfn-waf-sizeconstraintset-sizeconstraint-fieldtomatch-data}
*/
Data?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-bytematchset-bytematchtuples-fieldtomatch.html#cfn-waf-sizeconstraintset-sizeconstraint-fieldtomatch-type}
*/
Type: Resolvable<string>;
};