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

com.pulumi.awsnative.ecr.kotlin.outputs.ReplicationConfigurationReplicationDestination.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.ecr.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * An array of objects representing the details of a replication destination.
 * @property region The Region to replicate to.
 * @property registryId The AWS account ID of the Amazon ECR private registry to replicate to. When configuring cross-Region replication within your own registry, specify your own account ID.
 */
public data class ReplicationConfigurationReplicationDestination(
    public val region: String,
    public val registryId: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.ecr.outputs.ReplicationConfigurationReplicationDestination): ReplicationConfigurationReplicationDestination =
            ReplicationConfigurationReplicationDestination(
                region = javaType.region(),
                registryId = javaType.registryId(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy