interface InstanceIpv6AddressProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnNetworkInterfacePropsMixin.InstanceIpv6AddressProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnNetworkInterfacePropsMixin_InstanceIpv6AddressProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnNetworkInterfacePropsMixin.InstanceIpv6AddressProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnNetworkInterfacePropsMixin.InstanceIpv6AddressProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnNetworkInterfacePropsMixin » InstanceIpv6AddressProperty |
Describes the IPv6 addresses to associate with the network interface.
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 instanceIpv6AddressProperty: ec2_mixins.CfnNetworkInterfacePropsMixin.InstanceIpv6AddressProperty = {
ipv6Address: 'ipv6Address',
};
Properties
| Name | Type | Description |
|---|---|---|
| ipv6 | string | An IPv6 address to associate with the network interface. |
ipv6Address?
Type:
string
(optional)
An IPv6 address to associate with the network interface.

.NET
Go
Java
Python
TypeScript