aws-cdk-lib.aws_ec2.CfnLaunchTemplate.PrivateIpAddProperty

interface PrivateIpAddProperty

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnLaunchTemplate.PrivateIpAddProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnLaunchTemplate_PrivateIpAddProperty
Javasoftware.amazon.awscdk.services.ec2.CfnLaunchTemplate.PrivateIpAddProperty
Pythonaws_cdk.aws_ec2.CfnLaunchTemplate.PrivateIpAddProperty
TypeScript aws-cdk-lib » aws_ec2 » CfnLaunchTemplate » PrivateIpAddProperty

Specifies a secondary private IPv4 address for a network interface.

PrivateIpAdd 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 privateIpAddProperty: ec2.CfnLaunchTemplate.PrivateIpAddProperty = {
  primary: false,
  privateIpAddress: 'privateIpAddress',
};

Properties

NameTypeDescription
primary?boolean | IResolvableIndicates whether the private IPv4 address is the primary private IPv4 address.
privateIpAddress?stringThe private IPv4 address.

primary?

Type: boolean | IResolvable (optional)

Indicates whether the private IPv4 address is the primary private IPv4 address.

Only one IPv4 address can be designated as primary.


privateIpAddress?

Type: string (optional)

The private IPv4 address.