commonMain.aws.sdk.kotlin.services.kinesis.model.RegisterStreamConsumerResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kinesis-jvm Show documentation
Show all versions of kinesis-jvm Show documentation
The AWS SDK for Kotlin client for Kinesis
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.kinesis.model
import aws.smithy.kotlin.runtime.SdkDsl
public class RegisterStreamConsumerResponse private constructor(builder: Builder) {
/**
* An object that represents the details of the consumer you registered. When you register a consumer, it gets an ARN that is generated by Kinesis Data Streams.
*/
public val consumer: aws.sdk.kotlin.services.kinesis.model.Consumer? = builder.consumer
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.kinesis.model.RegisterStreamConsumerResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RegisterStreamConsumerResponse(")
append("consumer=$consumer")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = consumer?.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 RegisterStreamConsumerResponse
if (consumer != other.consumer) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.kinesis.model.RegisterStreamConsumerResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An object that represents the details of the consumer you registered. When you register a consumer, it gets an ARN that is generated by Kinesis Data Streams.
*/
public var consumer: aws.sdk.kotlin.services.kinesis.model.Consumer? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.kinesis.model.RegisterStreamConsumerResponse) : this() {
this.consumer = x.consumer
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.kinesis.model.RegisterStreamConsumerResponse = RegisterStreamConsumerResponse(this)
/**
* construct an [aws.sdk.kotlin.services.kinesis.model.Consumer] inside the given [block]
*/
public fun consumer(block: aws.sdk.kotlin.services.kinesis.model.Consumer.Builder.() -> kotlin.Unit) {
this.consumer = aws.sdk.kotlin.services.kinesis.model.Consumer.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}