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

com.pulumi.awsnative.apigateway.kotlin.outputs.GetAccountResult.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.apigateway.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property cloudWatchRoleArn The ARN of an Amazon CloudWatch role for the current Account.
 * @property id The ID for the account. For example: `abc123` .
 */
public data class GetAccountResult(
    public val cloudWatchRoleArn: String? = null,
    public val id: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.apigateway.outputs.GetAccountResult): GetAccountResult = GetAccountResult(
            cloudWatchRoleArn = javaType.cloudWatchRoleArn().map({ args0 -> args0 }).orElse(null),
            id = javaType.id().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy