CfnVPCDHCPOptionsAssociationMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnVPCDHCPOptionsAssociationMixinProps(*, dhcp_options_id=None, vpc_id=None)
Bases:
objectProperties for CfnVPCDHCPOptionsAssociationPropsMixin.
- Parameters:
dhcp_options_id (
Optional[str]) – The ID of the DHCP options set, ordefaultto associate no DHCP options with the VPC.vpc_id (
Optional[str]) – The ID of the VPC.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_ec2 import mixins as ec2_mixins cfn_vPCDHCPOptions_association_mixin_props = ec2_mixins.CfnVPCDHCPOptionsAssociationMixinProps( dhcp_options_id="dhcpOptionsId", vpc_id="vpcId" )
Attributes
- dhcp_options_id
The ID of the DHCP options set, or
defaultto associate no DHCP options with the VPC.