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