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