@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
10 lines (9 loc) • 356 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface WebACLAssociationProperties {
ResourceArn: Value<string>;
WebACLId: Value<string>;
}
export default class Inner_WebACLAssociation extends ResourceBase<WebACLAssociationProperties> {
constructor(properties: WebACLAssociationProperties);
}