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

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

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

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

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property connectionEvents The endpoint events for which to receive notifications.
 * @property connectionNotificationArn The ARN of the SNS topic for the notifications.
 * @property vpcEndpointConnectionNotificationId VPC Endpoint Connection ID generated by service
 */
public data class GetVpcEndpointConnectionNotificationResult(
    public val connectionEvents: List? = null,
    public val connectionNotificationArn: String? = null,
    public val vpcEndpointConnectionNotificationId: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.ec2.outputs.GetVpcEndpointConnectionNotificationResult): GetVpcEndpointConnectionNotificationResult = GetVpcEndpointConnectionNotificationResult(
            connectionEvents = javaType.connectionEvents().map({ args0 -> args0 }),
            connectionNotificationArn = javaType.connectionNotificationArn().map({ args0 ->
                args0
            }).orElse(null),
            vpcEndpointConnectionNotificationId = javaType.vpcEndpointConnectionNotificationId().map({ args0 ->
                args0
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy