UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

12 lines (11 loc) 498 B
import { ResourceBase, ResourceTag as Inner_ResourceTag } from "../../resource"; import { Value, List } from "../../data-types"; export interface TransitGatewayAttachmentProperties { TransitGatewayId: Value<string>; VpcId: Value<string>; SubnetIds: List<Value<string>>; Tags?: List<Inner_ResourceTag>; } export default class Inner_TransitGatewayAttachment extends ResourceBase<TransitGatewayAttachmentProperties> { constructor(properties: TransitGatewayAttachmentProperties); }