commonMain.aws.sdk.kotlin.services.sagemakergeospatial.model.CloudRemovalConfigInput.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sagemakergeospatial-jvm Show documentation
Show all versions of sagemakergeospatial-jvm Show documentation
The AWS SDK for Kotlin client for SageMaker Geospatial
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.sagemakergeospatial.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Input structure for Cloud Removal Operation type
*/
public class CloudRemovalConfigInput private constructor(builder: Builder) {
/**
* The name of the algorithm used for cloud removal.
*/
public val algorithmName: aws.sdk.kotlin.services.sagemakergeospatial.model.AlgorithmNameCloudRemoval? = builder.algorithmName
/**
* The interpolation value you provide for cloud removal.
*/
public val interpolationValue: kotlin.String? = builder.interpolationValue
/**
* TargetBands to be returned in the output of CloudRemoval operation.
*/
public val targetBands: List? = builder.targetBands
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.sagemakergeospatial.model.CloudRemovalConfigInput = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CloudRemovalConfigInput(")
append("algorithmName=$algorithmName,")
append("interpolationValue=$interpolationValue,")
append("targetBands=$targetBands")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = algorithmName?.hashCode() ?: 0
result = 31 * result + (interpolationValue?.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 CloudRemovalConfigInput
if (algorithmName != other.algorithmName) return false
if (interpolationValue != other.interpolationValue) return false
if (targetBands != other.targetBands) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.sagemakergeospatial.model.CloudRemovalConfigInput = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the algorithm used for cloud removal.
*/
public var algorithmName: aws.sdk.kotlin.services.sagemakergeospatial.model.AlgorithmNameCloudRemoval? = null
/**
* The interpolation value you provide for cloud removal.
*/
public var interpolationValue: kotlin.String? = null
/**
* TargetBands to be returned in the output of CloudRemoval operation.
*/
public var targetBands: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.sagemakergeospatial.model.CloudRemovalConfigInput) : this() {
this.algorithmName = x.algorithmName
this.interpolationValue = x.interpolationValue
this.targetBands = x.targetBands
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.sagemakergeospatial.model.CloudRemovalConfigInput = CloudRemovalConfigInput(this)
internal fun correctErrors(): Builder {
return this
}
}
}