interface CfnVPCDHCPOptionsAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnVPCDHCPOptionsAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnVPCDHCPOptionsAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnVPCDHCPOptionsAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnVPCDHCPOptionsAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnVPCDHCPOptionsAssociationMixinProps |
Properties for CfnVPCDHCPOptionsAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnVPCDHCPOptionsAssociationMixinProps: ec2_mixins.CfnVPCDHCPOptionsAssociationMixinProps = {
dhcpOptionsId: 'dhcpOptionsId',
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| dhcp | string | The ID of the DHCP options set, or default to associate no DHCP options with the VPC. |
| vpc | string | The ID of the VPC. |
dhcpOptionsId?
Type:
string
(optional)
The ID of the DHCP options set, or default to associate no DHCP options with the VPC.
vpcId?
Type:
string
(optional)
The ID of the VPC.

.NET
Go
Java
Python
TypeScript