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

com.pulumi.aws.imagebuilder.kotlin.outputs.GetDistributionConfigurationDistributionS3ExportConfiguration.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: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.imagebuilder.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property diskImageFormat The disk image format of the exported image (`RAW`, `VHD`, or `VMDK`)
 * @property roleName The name of the IAM role to use for exporting.
 * @property s3Bucket The name of the S3 bucket to store the exported image in.
 * @property s3Prefix The prefix for the exported image.
 */
public data class GetDistributionConfigurationDistributionS3ExportConfiguration(
    public val diskImageFormat: String,
    public val roleName: String,
    public val s3Bucket: String,
    public val s3Prefix: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.imagebuilder.outputs.GetDistributionConfigurationDistributionS3ExportConfiguration): GetDistributionConfigurationDistributionS3ExportConfiguration =
            GetDistributionConfigurationDistributionS3ExportConfiguration(
                diskImageFormat = javaType.diskImageFormat(),
                roleName = javaType.roleName(),
                s3Bucket = javaType.s3Bucket(),
                s3Prefix = javaType.s3Prefix(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy