interface Ipv6PrefixSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnNetworkInterfacePropsMixin.Ipv6PrefixSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnNetworkInterfacePropsMixin_Ipv6PrefixSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnNetworkInterfacePropsMixin.Ipv6PrefixSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnNetworkInterfacePropsMixin.Ipv6PrefixSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const ipv6PrefixSpecificationProperty: ec2_mixins.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