UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

42 lines (41 loc) 1.73 kB
import { CfnResource, Resolvable } from '../../base'; export declare type IPSet_Type = 'AWS::WAFRegional::IPSet'; export declare const IPSet_Type = "AWS::WAFRegional::IPSet"; /** * Resource Type definition for AWS::WAFRegional::IPSet {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html} */ export default function IPSet(props: IPSet_Properties): CfnResource<IPSet_Properties>; /** * Resource Type definition for AWS::WAFRegional::IPSet {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html} */ export declare type IPSet_Properties = { Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-ipsetdescriptors} */ IPSetDescriptors?: IPSetDescriptor[]; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name} */ Name: Resolvable<string>; }; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-ipset-ipsetdescriptor.html} */ export declare type IPSetDescriptor = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-ipset-ipsetdescriptor.html#cfn-wafregional-ipset-ipsetdescriptor-type} */ Type: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-ipset-ipsetdescriptor.html#cfn-wafregional-ipset-ipsetdescriptor-value} */ Value: Resolvable<string>; };