com.pulumi.awsnative.transfer.kotlin.outputs.GetProfileResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.transfer.kotlin.outputs
import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property arn Specifies the unique Amazon Resource Name (ARN) for the profile.
* @property as2Id AS2 identifier agreed with a trading partner.
* @property certificateIds List of the certificate IDs associated with this profile to be used for encryption and signing of AS2 messages.
* @property profileId A unique identifier for the profile
* @property tags An array of key-value pairs to apply to this resource.
*/
public data class GetProfileResult(
public val arn: String? = null,
public val as2Id: String? = null,
public val certificateIds: List? = null,
public val profileId: String? = null,
public val tags: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.transfer.outputs.GetProfileResult): GetProfileResult = GetProfileResult(
arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
as2Id = javaType.as2Id().map({ args0 -> args0 }).orElse(null),
certificateIds = javaType.certificateIds().map({ args0 -> args0 }),
profileId = javaType.profileId().map({ args0 -> args0 }).orElse(null),
tags = javaType.tags().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
})
}),
)
}
}