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

commonMain.aws.sdk.kotlin.services.osis.model.VpcOptions.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.osis.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Options that specify the subnets and security groups for an OpenSearch Ingestion VPC endpoint.
 */
public class VpcOptions private constructor(builder: Builder) {
    /**
     * A list of security groups associated with the VPC endpoint.
     */
    public val securityGroupIds: List? = builder.securityGroupIds
    /**
     * A list of subnet IDs associated with the VPC endpoint.
     */
    public val subnetIds: List = requireNotNull(builder.subnetIds) { "A non-null value must be provided for subnetIds" }

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.osis.model.VpcOptions = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("VpcOptions(")
        append("securityGroupIds=$securityGroupIds,")
        append("subnetIds=$subnetIds")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = securityGroupIds?.hashCode() ?: 0
        result = 31 * result + (subnetIds.hashCode())
        return result
    }

    override fun equals(other: kotlin.Any?): kotlin.Boolean {
        if (this === other) return true
        if (other == null || this::class != other::class) return false

        other as VpcOptions

        if (securityGroupIds != other.securityGroupIds) return false
        if (subnetIds != other.subnetIds) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.osis.model.VpcOptions = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * A list of security groups associated with the VPC endpoint.
         */
        public var securityGroupIds: List? = null
        /**
         * A list of subnet IDs associated with the VPC endpoint.
         */
        public var subnetIds: List? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.osis.model.VpcOptions) : this() {
            this.securityGroupIds = x.securityGroupIds
            this.subnetIds = x.subnetIds
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.osis.model.VpcOptions = VpcOptions(this)

        internal fun correctErrors(): Builder {
            if (subnetIds == null) subnetIds = emptyList()
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy