commonMain.aws.sdk.kotlin.services.kinesis.model.DescribeStreamResponse.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
/**
* Represents the output for `DescribeStream`.
*/
public class DescribeStreamResponse private constructor(builder: Builder) {
/**
* The current status of the stream, the stream Amazon Resource Name (ARN), an array of shard objects that comprise the stream, and whether there are more shards available.
*/
public val streamDescription: aws.sdk.kotlin.services.kinesis.model.StreamDescription? = builder.streamDescription
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.kinesis.model.DescribeStreamResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeStreamResponse(")
append("streamDescription=$streamDescription")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = streamDescription?.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 DescribeStreamResponse
if (streamDescription != other.streamDescription) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.kinesis.model.DescribeStreamResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The current status of the stream, the stream Amazon Resource Name (ARN), an array of shard objects that comprise the stream, and whether there are more shards available.
*/
public var streamDescription: aws.sdk.kotlin.services.kinesis.model.StreamDescription? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.kinesis.model.DescribeStreamResponse) : this() {
this.streamDescription = x.streamDescription
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.kinesis.model.DescribeStreamResponse = DescribeStreamResponse(this)
/**
* construct an [aws.sdk.kotlin.services.kinesis.model.StreamDescription] inside the given [block]
*/
public fun streamDescription(block: aws.sdk.kotlin.services.kinesis.model.StreamDescription.Builder.() -> kotlin.Unit) {
this.streamDescription = aws.sdk.kotlin.services.kinesis.model.StreamDescription.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}