![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.ec2.kotlin.outputs.SpotFleetInstanceNetworkInterfaceSpecification.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ec2.kotlin.outputs
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property associatePublicIpAddress Indicates whether to assign a public IPv4 address to an instance you launch in a VPC. The public IP address can only be assigned to a network interface for eth0, and can only be assigned to a new network interface, not an existing one. You cannot specify more than one network interface in the request. If launching into a default subnet, the default value is `true` .
* AWS charges for all public IPv4 addresses, including public IPv4 addresses associated with running instances and Elastic IP addresses. For more information, see the *Public IPv4 Address* tab on the [Amazon VPC pricing page](https://docs.aws.amazon.com/vpc/pricing/) .
* @property deleteOnTermination Indicates whether the network interface is deleted when the instance is terminated.
* @property description The description of the network interface. Applies only if creating a network interface when launching an instance.
* @property deviceIndex The position of the network interface in the attachment order. A primary network interface has a device index of 0.
* If you specify a network interface when launching an instance, you must specify the device index.
* @property groups The IDs of the security groups for the network interface. Applies only if creating a network interface when launching an instance.
* @property ipv6AddressCount A number of IPv6 addresses to assign to the network interface. Amazon EC2 chooses the IPv6 addresses from the range of the subnet. You cannot specify this option and the option to assign specific IPv6 addresses in the same request. You can specify this option if you've specified a minimum number of instances to launch.
* @property ipv6Addresses The IPv6 addresses to assign to the network interface. You cannot specify this option and the option to assign a number of IPv6 addresses in the same request. You cannot specify this option if you've specified a minimum number of instances to launch.
* @property networkInterfaceId The ID of the network interface.
* If you are creating a Spot Fleet, omit this parameter because you can’t specify a network interface ID in a launch specification.
* @property privateIpAddresses The private IPv4 addresses to assign to the network interface. Only one private IPv4 address can be designated as primary. You cannot specify this option if you're launching more than one instance in a [RunInstances](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) request.
* @property secondaryPrivateIpAddressCount The number of secondary private IPv4 addresses. You can't specify this option and specify more than one private IP address using the private IP addresses option. You cannot specify this option if you're launching more than one instance in a [RunInstances](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) request.
* @property subnetId The ID of the subnet associated with the network interface.
*/
public data class SpotFleetInstanceNetworkInterfaceSpecification(
public val associatePublicIpAddress: Boolean? = null,
public val deleteOnTermination: Boolean? = null,
public val description: String? = null,
public val deviceIndex: Int? = null,
public val groups: List? = null,
public val ipv6AddressCount: Int? = null,
public val ipv6Addresses: List? = null,
public val networkInterfaceId: String? = null,
public val privateIpAddresses: List? = null,
public val secondaryPrivateIpAddressCount: Int? = null,
public val subnetId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ec2.outputs.SpotFleetInstanceNetworkInterfaceSpecification): SpotFleetInstanceNetworkInterfaceSpecification =
SpotFleetInstanceNetworkInterfaceSpecification(
associatePublicIpAddress = javaType.associatePublicIpAddress().map({ args0 -> args0 }).orElse(null),
deleteOnTermination = javaType.deleteOnTermination().map({ args0 -> args0 }).orElse(null),
description = javaType.description().map({ args0 -> args0 }).orElse(null),
deviceIndex = javaType.deviceIndex().map({ args0 -> args0 }).orElse(null),
groups = javaType.groups().map({ args0 -> args0 }),
ipv6AddressCount = javaType.ipv6AddressCount().map({ args0 -> args0 }).orElse(null),
ipv6Addresses = javaType.ipv6Addresses().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.ec2.kotlin.outputs.SpotFleetInstanceIpv6Address.Companion.toKotlin(args0)
})
}),
networkInterfaceId = javaType.networkInterfaceId().map({ args0 -> args0 }).orElse(null),
privateIpAddresses = javaType.privateIpAddresses().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.ec2.kotlin.outputs.SpotFleetPrivateIpAddressSpecification.Companion.toKotlin(args0)
})
}),
secondaryPrivateIpAddressCount = javaType.secondaryPrivateIpAddressCount().map({ args0 ->
args0
}).orElse(null),
subnetId = javaType.subnetId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy