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

com.pulumi.awsnative.customerprofiles.kotlin.outputs.DomainS3ExportingConfig.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.customerprofiles.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * The S3 location where Identity Resolution Jobs write result files.
 * @property s3BucketName The name of the S3 bucket where Identity Resolution Jobs write result files.
 * @property s3KeyName The S3 key name of the location where Identity Resolution Jobs write result files.
 */
public data class DomainS3ExportingConfig(
    public val s3BucketName: String,
    public val s3KeyName: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.customerprofiles.outputs.DomainS3ExportingConfig): DomainS3ExportingConfig = DomainS3ExportingConfig(
            s3BucketName = javaType.s3BucketName(),
            s3KeyName = javaType.s3KeyName().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy