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

commonMain.aws.sdk.kotlin.services.iotsitewise.model.MultiLayerStorage.kt Maven / Gradle / Ivy

There is a newer version: 1.3.99
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.iotsitewise.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Contains information about the storage destination.
 */
public class MultiLayerStorage private constructor(builder: Builder) {
    /**
     * Contains information about a customer managed Amazon S3 bucket.
     */
    public val customerManagedS3Storage: aws.sdk.kotlin.services.iotsitewise.model.CustomerManagedS3Storage? = builder.customerManagedS3Storage

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

    override fun toString(): kotlin.String = buildString {
        append("MultiLayerStorage(")
        append("customerManagedS3Storage=$customerManagedS3Storage")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = customerManagedS3Storage?.hashCode() ?: 0
        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 MultiLayerStorage

        if (customerManagedS3Storage != other.customerManagedS3Storage) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Contains information about a customer managed Amazon S3 bucket.
         */
        public var customerManagedS3Storage: aws.sdk.kotlin.services.iotsitewise.model.CustomerManagedS3Storage? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.iotsitewise.model.MultiLayerStorage) : this() {
            this.customerManagedS3Storage = x.customerManagedS3Storage
        }

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

        /**
         * construct an [aws.sdk.kotlin.services.iotsitewise.model.CustomerManagedS3Storage] inside the given [block]
         */
        public fun customerManagedS3Storage(block: aws.sdk.kotlin.services.iotsitewise.model.CustomerManagedS3Storage.Builder.() -> kotlin.Unit) {
            this.customerManagedS3Storage = aws.sdk.kotlin.services.iotsitewise.model.CustomerManagedS3Storage.invoke(block)
        }

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy