com.pulumi.awsnative.sagemaker.kotlin.outputs.UserProfileDefaultEbsStorageSettings.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
* Properties related to the Amazon Elastic Block Store volume.
* @property defaultEbsVolumeSizeInGb Default size of the Amazon EBS volume in Gb
* @property maximumEbsVolumeSizeInGb Maximum size of the Amazon EBS volume in Gb. Must be greater than or equal to the DefaultEbsVolumeSizeInGb.
*/
public data class UserProfileDefaultEbsStorageSettings(
public val defaultEbsVolumeSizeInGb: Int,
public val maximumEbsVolumeSizeInGb: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.UserProfileDefaultEbsStorageSettings): UserProfileDefaultEbsStorageSettings = UserProfileDefaultEbsStorageSettings(
defaultEbsVolumeSizeInGb = javaType.defaultEbsVolumeSizeInGb(),
maximumEbsVolumeSizeInGb = javaType.maximumEbsVolumeSizeInGb(),
)
}
}