Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ec2.kotlin.inputs
import com.pulumi.awsnative.ec2.inputs.SpotFleetInstanceNetworkInterfaceSpecificationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @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 SpotFleetInstanceNetworkInterfaceSpecificationArgs(
public val associatePublicIpAddress: Output? = null,
public val deleteOnTermination: Output? = null,
public val description: Output? = null,
public val deviceIndex: Output? = null,
public val groups: Output>? = null,
public val ipv6AddressCount: Output? = null,
public val ipv6Addresses: Output>? = null,
public val networkInterfaceId: Output? = null,
public val privateIpAddresses: Output>? = null,
public val secondaryPrivateIpAddressCount: Output? = null,
public val subnetId: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.ec2.inputs.SpotFleetInstanceNetworkInterfaceSpecificationArgs =
com.pulumi.awsnative.ec2.inputs.SpotFleetInstanceNetworkInterfaceSpecificationArgs.builder()
.associatePublicIpAddress(associatePublicIpAddress?.applyValue({ args0 -> args0 }))
.deleteOnTermination(deleteOnTermination?.applyValue({ args0 -> args0 }))
.description(description?.applyValue({ args0 -> args0 }))
.deviceIndex(deviceIndex?.applyValue({ args0 -> args0 }))
.groups(groups?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.ipv6AddressCount(ipv6AddressCount?.applyValue({ args0 -> args0 }))
.ipv6Addresses(
ipv6Addresses?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.networkInterfaceId(networkInterfaceId?.applyValue({ args0 -> args0 }))
.privateIpAddresses(
privateIpAddresses?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.secondaryPrivateIpAddressCount(secondaryPrivateIpAddressCount?.applyValue({ args0 -> args0 }))
.subnetId(subnetId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SpotFleetInstanceNetworkInterfaceSpecificationArgs].
*/
@PulumiTagMarker
public class SpotFleetInstanceNetworkInterfaceSpecificationArgsBuilder internal constructor() {
private var associatePublicIpAddress: Output? = null
private var deleteOnTermination: Output? = null
private var description: Output? = null
private var deviceIndex: Output? = null
private var groups: Output>? = null
private var ipv6AddressCount: Output? = null
private var ipv6Addresses: Output>? = null
private var networkInterfaceId: Output? = null
private var privateIpAddresses: Output>? = null
private var secondaryPrivateIpAddressCount: Output? = null
private var subnetId: Output? = null
/**
* @param value 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/) .
*/
@JvmName("lsflivtrqpeaylml")
public suspend fun associatePublicIpAddress(`value`: Output) {
this.associatePublicIpAddress = value
}
/**
* @param value Indicates whether the network interface is deleted when the instance is terminated.
*/
@JvmName("vvyxbpdccjsjedia")
public suspend fun deleteOnTermination(`value`: Output) {
this.deleteOnTermination = value
}
/**
* @param value The description of the network interface. Applies only if creating a network interface when launching an instance.
*/
@JvmName("qwkoglagcguplfmi")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value 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.
*/
@JvmName("clfikbemyleyphka")
public suspend fun deviceIndex(`value`: Output) {
this.deviceIndex = value
}
/**
* @param value The IDs of the security groups for the network interface. Applies only if creating a network interface when launching an instance.
*/
@JvmName("tgusoijqmuarvsjd")
public suspend fun groups(`value`: Output>) {
this.groups = value
}
@JvmName("dmbakqxlbtmacfyh")
public suspend fun groups(vararg values: Output) {
this.groups = Output.all(values.asList())
}
/**
* @param values The IDs of the security groups for the network interface. Applies only if creating a network interface when launching an instance.
*/
@JvmName("btxgeicdyyolmfcb")
public suspend fun groups(values: List