@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
18 lines (17 loc) • 699 B
TypeScript
import { ResourceBase, ResourceTag as Inner_ResourceTag } from "../../resource";
import { Value, List } from "../../data-types";
export declare class VariantProperty {
VariantPropertyType?: Value<string>;
constructor(properties: VariantProperty);
}
export interface EndpointProperties {
RetainAllVariantProperties?: Value<boolean>;
EndpointName?: Value<string>;
ExcludeRetainedVariantProperties?: List<VariantProperty>;
EndpointConfigName: Value<string>;
Tags?: List<Inner_ResourceTag>;
}
export default class Inner_Endpoint extends ResourceBase<EndpointProperties> {
static VariantProperty: typeof VariantProperty;
constructor(properties: EndpointProperties);
}