interface Ipv6AddProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnLaunchTemplate.Ipv6AddProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnLaunchTemplate_Ipv6AddProperty |
Java | software.amazon.awscdk.services.ec2.CfnLaunchTemplate.Ipv6AddProperty |
Python | aws_cdk.aws_ec2.CfnLaunchTemplate.Ipv6AddProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnLaunchTemplate » Ipv6AddProperty |
Specifies an IPv6 address in an Amazon EC2 launch template.
Ipv6Add is a property of AWS::EC2::LaunchTemplate NetworkInterface .
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-lib';
const ipv6AddProperty: ec2.CfnLaunchTemplate.Ipv6AddProperty = {
ipv6Address: 'ipv6Address',
};
Properties
| Name | Type | Description |
|---|---|---|
| ipv6 | string | One or more specific IPv6 addresses from the IPv6 CIDR block range of your subnet. |
ipv6Address?
Type:
string
(optional)
One or more specific IPv6 addresses from the IPv6 CIDR block range of your subnet.
You can't use this option if you're specifying a number of IPv6 addresses.

.NET
Go
Java
Python
TypeScript