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

commonMain.aws.sdk.kotlin.services.sagemakergeospatial.model.ResamplingConfigInput.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.sagemakergeospatial.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * The structure representing input for resampling operation.
 */
public class ResamplingConfigInput private constructor(builder: Builder) {
    /**
     * The name of the algorithm used for resampling.
     */
    public val algorithmName: aws.sdk.kotlin.services.sagemakergeospatial.model.AlgorithmNameResampling? = builder.algorithmName
    /**
     * The structure representing output resolution (in target georeferenced units) of the result of resampling operation.
     */
    public val outputResolution: aws.sdk.kotlin.services.sagemakergeospatial.model.OutputResolutionResamplingInput? = builder.outputResolution
    /**
     * Bands used in the operation. If no target bands are specified, it uses all bands available in the input.
     */
    public val targetBands: List? = builder.targetBands

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

    override fun toString(): kotlin.String = buildString {
        append("ResamplingConfigInput(")
        append("algorithmName=$algorithmName,")
        append("outputResolution=$outputResolution,")
        append("targetBands=$targetBands")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = algorithmName?.hashCode() ?: 0
        result = 31 * result + (outputResolution?.hashCode() ?: 0)
        result = 31 * result + (targetBands?.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 ResamplingConfigInput

        if (algorithmName != other.algorithmName) return false
        if (outputResolution != other.outputResolution) return false
        if (targetBands != other.targetBands) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The name of the algorithm used for resampling.
         */
        public var algorithmName: aws.sdk.kotlin.services.sagemakergeospatial.model.AlgorithmNameResampling? = null
        /**
         * The structure representing output resolution (in target georeferenced units) of the result of resampling operation.
         */
        public var outputResolution: aws.sdk.kotlin.services.sagemakergeospatial.model.OutputResolutionResamplingInput? = null
        /**
         * Bands used in the operation. If no target bands are specified, it uses all bands available in the input.
         */
        public var targetBands: List? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.sagemakergeospatial.model.ResamplingConfigInput) : this() {
            this.algorithmName = x.algorithmName
            this.outputResolution = x.outputResolution
            this.targetBands = x.targetBands
        }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy