UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

28 lines (27 loc) 1.29 kB
import { CfnResource, Resolvable } from '../../base'; export declare type WebACLAssociation_Type = 'AWS::WAFRegional::WebACLAssociation'; export declare const WebACLAssociation_Type = "AWS::WAFRegional::WebACLAssociation"; /** * Resource Type definition for AWS::WAFRegional::WebACLAssociation * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html} */ export default function WebACLAssociation(props: WebACLAssociation_Properties): CfnResource<WebACLAssociation_Properties>; /** * Resource Type definition for AWS::WAFRegional::WebACLAssociation * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html} */ export declare type WebACLAssociation_Properties = { Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn} */ ResourceArn: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid} */ WebACLId: Resolvable<string>; };