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

com.pulumi.awsnative.sagemaker.kotlin.outputs.UserProfileDefaultEbsStorageSettings.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@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(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy