com.pulumi.aws.opensearch.kotlin.outputs.VpcEndpointVpcOptions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.opensearch.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property availabilityZones
* @property securityGroupIds The list of security group IDs associated with the VPC endpoints for the domain. If you do not provide a security group ID, OpenSearch Service uses the default security group for the VPC.
* @property subnetIds A list of subnet IDs associated with the VPC endpoints for the domain. If your domain uses multiple Availability Zones, you need to provide two subnet IDs, one per zone. Otherwise, provide only one.
* @property vpcId
*/
public data class VpcEndpointVpcOptions(
public val availabilityZones: List? = null,
public val securityGroupIds: List? = null,
public val subnetIds: List,
public val vpcId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.opensearch.outputs.VpcEndpointVpcOptions): VpcEndpointVpcOptions = VpcEndpointVpcOptions(
availabilityZones = javaType.availabilityZones().map({ args0 -> args0 }),
securityGroupIds = javaType.securityGroupIds().map({ args0 -> args0 }),
subnetIds = javaType.subnetIds().map({ args0 -> args0 }),
vpcId = javaType.vpcId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy