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

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

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

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

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property bucketName The Amazon S3 bucket name where the source files are stored.
 * @property bucketPrefix The object key for the Amazon S3 bucket in which the source files are stored.
 */
public data class IntegrationS3SourceProperties(
    public val bucketName: String,
    public val bucketPrefix: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.customerprofiles.outputs.IntegrationS3SourceProperties): IntegrationS3SourceProperties = IntegrationS3SourceProperties(
            bucketName = javaType.bucketName(),
            bucketPrefix = javaType.bucketPrefix().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy