
com.pulumi.awsnative.securitylake.kotlin.inputs.DataLakeReplicationConfigurationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.securitylake.kotlin.inputs
import com.pulumi.awsnative.securitylake.inputs.DataLakeReplicationConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Provides replication details of Amazon Security Lake object.
* @property regions Specifies one or more centralized rollup Regions. The AWS Region specified in the region parameter of the `CreateDataLake` or `UpdateDataLake` operations contributes data to the rollup Region or Regions specified in this parameter.
* Replication enables automatic, asynchronous copying of objects across Amazon S3 buckets. S3 buckets that are configured for object replication can be owned by the same AWS account or by different accounts. You can replicate objects to a single destination bucket or to multiple destination buckets. The destination buckets can be in different Regions or within the same Region as the source bucket.
* @property roleArn Replication settings for the Amazon S3 buckets. This parameter uses the AWS Identity and Access Management (IAM) role you created that is managed by Security Lake, to ensure the replication setting is correct.
*/
public data class DataLakeReplicationConfigurationArgs(
public val regions: Output>? = null,
public val roleArn: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.securitylake.inputs.DataLakeReplicationConfigurationArgs =
com.pulumi.awsnative.securitylake.inputs.DataLakeReplicationConfigurationArgs.builder()
.regions(regions?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.roleArn(roleArn?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DataLakeReplicationConfigurationArgs].
*/
@PulumiTagMarker
public class DataLakeReplicationConfigurationArgsBuilder internal constructor() {
private var regions: Output>? = null
private var roleArn: Output? = null
/**
* @param value Specifies one or more centralized rollup Regions. The AWS Region specified in the region parameter of the `CreateDataLake` or `UpdateDataLake` operations contributes data to the rollup Region or Regions specified in this parameter.
* Replication enables automatic, asynchronous copying of objects across Amazon S3 buckets. S3 buckets that are configured for object replication can be owned by the same AWS account or by different accounts. You can replicate objects to a single destination bucket or to multiple destination buckets. The destination buckets can be in different Regions or within the same Region as the source bucket.
*/
@JvmName("urlqwlplsfapqfuk")
public suspend fun regions(`value`: Output>) {
this.regions = value
}
@JvmName("hprvyvqhdbnvanih")
public suspend fun regions(vararg values: Output) {
this.regions = Output.all(values.asList())
}
/**
* @param values Specifies one or more centralized rollup Regions. The AWS Region specified in the region parameter of the `CreateDataLake` or `UpdateDataLake` operations contributes data to the rollup Region or Regions specified in this parameter.
* Replication enables automatic, asynchronous copying of objects across Amazon S3 buckets. S3 buckets that are configured for object replication can be owned by the same AWS account or by different accounts. You can replicate objects to a single destination bucket or to multiple destination buckets. The destination buckets can be in different Regions or within the same Region as the source bucket.
*/
@JvmName("ssmehhywafnbuccu")
public suspend fun regions(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy