commonMain.aws.sdk.kotlin.services.firehose.model.ProcessingConfiguration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firehose-jvm Show documentation
Show all versions of firehose-jvm Show documentation
The AWS SDK for Kotlin client for Firehose
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.firehose.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Describes a data processing configuration.
*/
public class ProcessingConfiguration private constructor(builder: Builder) {
/**
* Enables or disables data processing.
*/
public val enabled: kotlin.Boolean? = builder.enabled
/**
* The data processors.
*/
public val processors: List? = builder.processors
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.firehose.model.ProcessingConfiguration = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ProcessingConfiguration(")
append("enabled=$enabled,")
append("processors=$processors")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = enabled?.hashCode() ?: 0
result = 31 * result + (processors?.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 ProcessingConfiguration
if (enabled != other.enabled) return false
if (processors != other.processors) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.firehose.model.ProcessingConfiguration = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Enables or disables data processing.
*/
public var enabled: kotlin.Boolean? = null
/**
* The data processors.
*/
public var processors: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.firehose.model.ProcessingConfiguration) : this() {
this.enabled = x.enabled
this.processors = x.processors
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.firehose.model.ProcessingConfiguration = ProcessingConfiguration(this)
internal fun correctErrors(): Builder {
return this
}
}
}