interface Ipv6PrefixSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnNetworkInterfacePropsMixin.Ipv6PrefixSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnNetworkInterfacePropsMixin_Ipv6PrefixSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnNetworkInterfacePropsMixin.Ipv6PrefixSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnNetworkInterfacePropsMixin.Ipv6PrefixSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnNetworkInterfacePropsMixin » Ipv6PrefixSpecificationProperty |
Describes the IPv6 prefix.
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 ipv6PrefixSpecificationProperty: ec2.CfnNetworkInterfacePropsMixin.Ipv6PrefixSpecificationProperty = {
ipv6Prefix: 'ipv6Prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| ipv6 | string | The IPv6 prefix. |
ipv6Prefix?
Type:
string
(optional)
The IPv6 prefix.
For information, see Assigning prefixes to Amazon EC2 network interfaces in the Amazon Elastic Compute Cloud User Guide .

.NET
Go
Java
Python
TypeScript