@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
22 lines (21 loc) • 814 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value, List } from "../../data-types";
export declare class SqlInjectionMatchTuple {
FieldToMatch: FieldToMatch;
TextTransformation: Value<string>;
constructor(properties: SqlInjectionMatchTuple);
}
export declare class FieldToMatch {
Data?: Value<string>;
Type: Value<string>;
constructor(properties: FieldToMatch);
}
export interface SqlInjectionMatchSetProperties {
Name: Value<string>;
SqlInjectionMatchTuples?: List<SqlInjectionMatchTuple>;
}
export default class Inner_SqlInjectionMatchSet extends ResourceBase<SqlInjectionMatchSetProperties> {
static SqlInjectionMatchTuple: typeof SqlInjectionMatchTuple;
static FieldToMatch: typeof FieldToMatch;
constructor(properties: SqlInjectionMatchSetProperties);
}