commonMain.aws.sdk.kotlin.services.firehose.model.InputFormatConfiguration.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
/**
* Specifies the deserializer you want to use to convert the format of the input data. This parameter is required if `Enabled` is set to true.
*/
public class InputFormatConfiguration private constructor(builder: Builder) {
/**
* Specifies which deserializer to use. You can choose either the Apache Hive JSON SerDe or the OpenX JSON SerDe. If both are non-null, the server rejects the request.
*/
public val deserializer: aws.sdk.kotlin.services.firehose.model.Deserializer? = builder.deserializer
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.firehose.model.InputFormatConfiguration = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("InputFormatConfiguration(")
append("deserializer=$deserializer")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = deserializer?.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 InputFormatConfiguration
if (deserializer != other.deserializer) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.firehose.model.InputFormatConfiguration = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Specifies which deserializer to use. You can choose either the Apache Hive JSON SerDe or the OpenX JSON SerDe. If both are non-null, the server rejects the request.
*/
public var deserializer: aws.sdk.kotlin.services.firehose.model.Deserializer? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.firehose.model.InputFormatConfiguration) : this() {
this.deserializer = x.deserializer
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.firehose.model.InputFormatConfiguration = InputFormatConfiguration(this)
/**
* construct an [aws.sdk.kotlin.services.firehose.model.Deserializer] inside the given [block]
*/
public fun deserializer(block: aws.sdk.kotlin.services.firehose.model.Deserializer.Builder.() -> kotlin.Unit) {
this.deserializer = aws.sdk.kotlin.services.firehose.model.Deserializer.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}