typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
42 lines (41 loc) • 1.88 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type GeoMatchSet_Type = 'AWS::WAFRegional::GeoMatchSet';
export declare const GeoMatchSet_Type = "AWS::WAFRegional::GeoMatchSet";
/**
* Resource Type definition for AWS::WAFRegional::GeoMatchSet {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html}
*/
export default function GeoMatchSet(props: GeoMatchSet_Properties): CfnResource<GeoMatchSet_Properties>;
/**
* Resource Type definition for AWS::WAFRegional::GeoMatchSet {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html}
*/
export declare type GeoMatchSet_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-geomatchconstraints}
*/
GeoMatchConstraints?: GeoMatchConstraint[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-geomatchset.html#cfn-wafregional-geomatchset-name}
*/
Name: Resolvable<string>;
};
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-geomatchset-geomatchconstraint.html}
*/
export declare type GeoMatchConstraint = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-geomatchset-geomatchconstraint.html#cfn-wafregional-geomatchset-geomatchconstraint-type}
*/
Type: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-geomatchset-geomatchconstraint.html#cfn-wafregional-geomatchset-geomatchconstraint-value}
*/
Value: Resolvable<string>;
};