All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.groundstation.kotlin.outputs.DataflowEndpointGroupIntegerRange.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.groundstation.kotlin.outputs

import kotlin.Int
import kotlin.Suppress

/**
 * An integer range that has a minimum and maximum value.
 * @property maximum A maximum value.
 * @property minimum A minimum value.
 */
public data class DataflowEndpointGroupIntegerRange(
    public val maximum: Int? = null,
    public val minimum: Int? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.groundstation.outputs.DataflowEndpointGroupIntegerRange): DataflowEndpointGroupIntegerRange = DataflowEndpointGroupIntegerRange(
            maximum = javaType.maximum().map({ args0 -> args0 }).orElse(null),
            minimum = javaType.minimum().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy