commonMain.aws.sdk.kotlin.services.firehose.model.PartitionField.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
/**
* Amazon Data Firehose is in preview release and is subject to change.
*/
public class PartitionField private constructor(builder: Builder) {
/**
* Amazon Data Firehose is in preview release and is subject to change.
*/
public val sourceName: kotlin.String = requireNotNull(builder.sourceName) { "A non-null value must be provided for sourceName" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.firehose.model.PartitionField = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PartitionField(")
append("sourceName=$sourceName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = sourceName.hashCode()
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 PartitionField
if (sourceName != other.sourceName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.firehose.model.PartitionField = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Amazon Data Firehose is in preview release and is subject to change.
*/
public var sourceName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.firehose.model.PartitionField) : this() {
this.sourceName = x.sourceName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.firehose.model.PartitionField = PartitionField(this)
internal fun correctErrors(): Builder {
if (sourceName == null) sourceName = ""
return this
}
}
}