![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.certificatemanager.kotlin.outputs.GetAccountResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.certificatemanager.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property accountId ID of the AWS account that owns the certificate.
* @property expiryEventsConfiguration Object containing expiration events options associated with an AWS account . For more information, see [ExpiryEventsConfiguration](https://docs.aws.amazon.com/acm/latest/APIReference/API_ExpiryEventsConfiguration.html) in the API reference.
*/
public data class GetAccountResult(
public val accountId: String? = null,
public val expiryEventsConfiguration: AccountExpiryEventsConfiguration? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.certificatemanager.outputs.GetAccountResult): GetAccountResult = GetAccountResult(
accountId = javaType.accountId().map({ args0 -> args0 }).orElse(null),
expiryEventsConfiguration = javaType.expiryEventsConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.certificatemanager.kotlin.outputs.AccountExpiryEventsConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy