interface CfnVPCDHCPOptionsAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnVPCDHCPOptionsAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnVPCDHCPOptionsAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnVPCDHCPOptionsAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnVPCDHCPOptionsAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnVPCDHCPOptionsAssociationMixinProps: ec2.CfnVPCDHCPOptionsAssociationMixinProps = {
dhcpOptionsId: 'dhcpOptionsId',
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| dhcp | string | IDHCPOptions | The ID of the DHCP options set, or default to associate no DHCP options with the VPC. |
| vpc | string | IVPCRef | The ID of the VPC. |
dhcpOptionsId?
Type:
string | IDHCPOptions
(optional)
The ID of the DHCP options set, or default to associate no DHCP options with the VPC.
vpcId?
Type:
string | IVPCRef
(optional)
The ID of the VPC.

.NET
Go
Java
Python
TypeScript