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

com.pulumi.awsnative.osis.kotlin.outputs.PipelineVpcOptionsVpcAttachmentOptionsProperties.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.24.0.0
Show newest version
@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