
com.pulumi.awsnative.ec2.kotlin.outputs.GetTransitGatewayMulticastGroupMemberResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ec2.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property groupMember Indicates that the resource is a transit gateway multicast group member.
* @property groupSource Indicates that the resource is a transit gateway multicast group member.
* @property memberType The member type (for example, static).
* @property resourceId The ID of the resource.
* @property resourceType The type of resource, for example a VPC attachment.
* @property sourceType The source type.
* @property subnetId The ID of the subnet.
* @property transitGatewayAttachmentId The ID of the transit gateway attachment.
*/
public data class GetTransitGatewayMulticastGroupMemberResult(
public val groupMember: Boolean? = null,
public val groupSource: Boolean? = null,
public val memberType: String? = null,
public val resourceId: String? = null,
public val resourceType: String? = null,
public val sourceType: String? = null,
public val subnetId: String? = null,
public val transitGatewayAttachmentId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ec2.outputs.GetTransitGatewayMulticastGroupMemberResult): GetTransitGatewayMulticastGroupMemberResult = GetTransitGatewayMulticastGroupMemberResult(
groupMember = javaType.groupMember().map({ args0 -> args0 }).orElse(null),
groupSource = javaType.groupSource().map({ args0 -> args0 }).orElse(null),
memberType = javaType.memberType().map({ args0 -> args0 }).orElse(null),
resourceId = javaType.resourceId().map({ args0 -> args0 }).orElse(null),
resourceType = javaType.resourceType().map({ args0 -> args0 }).orElse(null),
sourceType = javaType.sourceType().map({ args0 -> args0 }).orElse(null),
subnetId = javaType.subnetId().map({ args0 -> args0 }).orElse(null),
transitGatewayAttachmentId = javaType.transitGatewayAttachmentId().map({ args0 ->
args0
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy