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

com.pulumi.awsnative.ec2.kotlin.outputs.GetNetworkInsightsAccessScopeResult.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.ec2.kotlin.outputs

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

/**
 *
 * @property createdDate The creation date.
 * @property networkInsightsAccessScopeArn The ARN of the Network Access Scope.
 * @property networkInsightsAccessScopeId The ID of the Network Access Scope.
 * @property tags The tags.
 * @property updatedDate The last updated date.
 */
public data class GetNetworkInsightsAccessScopeResult(
    public val createdDate: String? = null,
    public val networkInsightsAccessScopeArn: String? = null,
    public val networkInsightsAccessScopeId: String? = null,
    public val tags: List? = null,
    public val updatedDate: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.ec2.outputs.GetNetworkInsightsAccessScopeResult): GetNetworkInsightsAccessScopeResult = GetNetworkInsightsAccessScopeResult(
            createdDate = javaType.createdDate().map({ args0 -> args0 }).orElse(null),
            networkInsightsAccessScopeArn = javaType.networkInsightsAccessScopeArn().map({ args0 ->
                args0
            }).orElse(null),
            networkInsightsAccessScopeId = javaType.networkInsightsAccessScopeId().map({ args0 ->
                args0
            }).orElse(null),
            tags = javaType.tags().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
                })
            }),
            updatedDate = javaType.updatedDate().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy