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

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

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

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

import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property createdAt The time of this integration got created
 * @property deadLetterQueueUrl The URL of the SQS dead letter queue
 * @property defaultEncryptionKey The default encryption key
 * @property defaultExpirationDays The default number of days until the data within the domain expires.
 * @property lastUpdatedAt The time of this integration got last updated at
 * @property matching The process of matching duplicate profiles.
 * @property ruleBasedMatching The process of matching duplicate profiles using Rule-Based matching.
 * @property stats
 * @property tags The tags (keys and values) associated with the domain
 */
public data class GetDomainResult(
    public val createdAt: String? = null,
    public val deadLetterQueueUrl: String? = null,
    public val defaultEncryptionKey: String? = null,
    public val defaultExpirationDays: Int? = null,
    public val lastUpdatedAt: String? = null,
    public val matching: DomainMatching? = null,
    public val ruleBasedMatching: DomainRuleBasedMatching? = null,
    public val stats: DomainStats? = null,
    public val tags: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.customerprofiles.outputs.GetDomainResult): GetDomainResult = GetDomainResult(
            createdAt = javaType.createdAt().map({ args0 -> args0 }).orElse(null),
            deadLetterQueueUrl = javaType.deadLetterQueueUrl().map({ args0 -> args0 }).orElse(null),
            defaultEncryptionKey = javaType.defaultEncryptionKey().map({ args0 -> args0 }).orElse(null),
            defaultExpirationDays = javaType.defaultExpirationDays().map({ args0 -> args0 }).orElse(null),
            lastUpdatedAt = javaType.lastUpdatedAt().map({ args0 -> args0 }).orElse(null),
            matching = javaType.matching().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.customerprofiles.kotlin.outputs.DomainMatching.Companion.toKotlin(args0)
                })
            }).orElse(null),
            ruleBasedMatching = javaType.ruleBasedMatching().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.customerprofiles.kotlin.outputs.DomainRuleBasedMatching.Companion.toKotlin(args0)
                })
            }).orElse(null),
            stats = javaType.stats().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.customerprofiles.kotlin.outputs.DomainStats.Companion.toKotlin(args0)
                })
            }).orElse(null),
            tags = javaType.tags().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy