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

com.pulumi.awsnative.redshift.kotlin.outputs.EndpointAccessVpcSecurityGroup.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.redshift.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Describes the members of a VPC security group.
 * @property status The status of the VPC security group.
 * @property vpcSecurityGroupId The identifier of the VPC security group.
 */
public data class EndpointAccessVpcSecurityGroup(
    public val status: String? = null,
    public val vpcSecurityGroupId: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.redshift.outputs.EndpointAccessVpcSecurityGroup): EndpointAccessVpcSecurityGroup = EndpointAccessVpcSecurityGroup(
            status = javaType.status().map({ args0 -> args0 }).orElse(null),
            vpcSecurityGroupId = javaType.vpcSecurityGroupId().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy