
com.pulumi.awsnative.ec2.kotlin.outputs.LaunchTemplateIpv4PrefixSpecification.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ec2.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Specifies an IPv4 prefix for a network interface.
* ``Ipv4PrefixSpecification`` is a property of [AWS::EC2::LaunchTemplate NetworkInterface](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-networkinterface.html).
* @property ipv4Prefix The IPv4 prefix. For information, see [Assigning prefixes to network interfaces](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-eni.html) in the *Amazon EC2 User Guide*.
*/
public data class LaunchTemplateIpv4PrefixSpecification(
public val ipv4Prefix: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ec2.outputs.LaunchTemplateIpv4PrefixSpecification): LaunchTemplateIpv4PrefixSpecification = LaunchTemplateIpv4PrefixSpecification(
ipv4Prefix = javaType.ipv4Prefix().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy