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