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