
com.pulumi.awsnative.ec2.kotlin.outputs.GetSecurityGroupIngressResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ec2.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property description Updates the description of an ingress (inbound) security group rule. You can replace an existing description, or add a description to a rule that did not have one previously
* @property id The Security Group Rule Id
*/
public data class GetSecurityGroupIngressResult(
public val description: String? = null,
public val id: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ec2.outputs.GetSecurityGroupIngressResult): GetSecurityGroupIngressResult = GetSecurityGroupIngressResult(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
id = javaType.id().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy