![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.osis.kotlin.outputs.PipelineVpcOptionsVpcAttachmentOptionsProperties.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.osis.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
* Options for attaching a VPC to the pipeline.
* @property attachToVpc Whether the pipeline should be attached to the provided VPC
* @property cidrBlock The CIDR block to be reserved for OpenSearch Ingestion to create elastic network interfaces (ENIs).
*/
public data class PipelineVpcOptionsVpcAttachmentOptionsProperties(
public val attachToVpc: Boolean,
public val cidrBlock: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.osis.outputs.PipelineVpcOptionsVpcAttachmentOptionsProperties): PipelineVpcOptionsVpcAttachmentOptionsProperties =
PipelineVpcOptionsVpcAttachmentOptionsProperties(
attachToVpc = javaType.attachToVpc(),
cidrBlock = javaType.cidrBlock(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy