
com.pulumi.aws.batch.kotlin.outputs.GetJobDefinitionNodePropertyNodeRangePropertyContainerResourceRequirement.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.batch.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property type The type of resource to assign to a container. The supported resources include `GPU`, `MEMORY`, and `VCPU`.
* @property value The quantity of the specified resource to reserve for the container.
*/
public data class GetJobDefinitionNodePropertyNodeRangePropertyContainerResourceRequirement(
public val type: String,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.batch.outputs.GetJobDefinitionNodePropertyNodeRangePropertyContainerResourceRequirement): GetJobDefinitionNodePropertyNodeRangePropertyContainerResourceRequirement =
GetJobDefinitionNodePropertyNodeRangePropertyContainerResourceRequirement(
type = javaType.type(),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy