UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

28 lines (27 loc) 1.32 kB
import { CfnResource, Resolvable } from '../../base'; export declare type VPCDHCPOptionsAssociation_Type = 'AWS::EC2::VPCDHCPOptionsAssociation'; export declare const VPCDHCPOptionsAssociation_Type = "AWS::EC2::VPCDHCPOptionsAssociation"; /** * Resource Type definition for AWS::EC2::VPCDHCPOptionsAssociation * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html} */ export default function VPCDHCPOptionsAssociation(props: VPCDHCPOptionsAssociation_Properties): CfnResource<VPCDHCPOptionsAssociation_Properties>; /** * Resource Type definition for AWS::EC2::VPCDHCPOptionsAssociation * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html} */ export declare type VPCDHCPOptionsAssociation_Properties = { Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-dhcpoptionsid} */ DhcpOptionsId: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpc-dhcp-options-assoc.html#cfn-ec2-vpcdhcpoptionsassociation-vpcid} */ VpcId: Resolvable<string>; };