@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
16 lines (15 loc) • 556 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value, List } from "../../data-types";
export declare class GeoMatchConstraint {
Type: Value<string>;
Value: Value<string>;
constructor(properties: GeoMatchConstraint);
}
export interface GeoMatchSetProperties {
GeoMatchConstraints?: List<GeoMatchConstraint>;
Name: Value<string>;
}
export default class Inner_GeoMatchSet extends ResourceBase<GeoMatchSetProperties> {
static GeoMatchConstraint: typeof GeoMatchConstraint;
constructor(properties: GeoMatchSetProperties);
}