
commonMain.aws.sdk.kotlin.services.dynamodb.model.DescribeKinesisStreamingDestinationResponse.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.dynamodb.model
public class DescribeKinesisStreamingDestinationResponse private constructor(builder: Builder) {
/**
* The list of replica structures for the table being described.
*/
public val kinesisDataStreamDestinations: List? = builder.kinesisDataStreamDestinations
/**
* The name of the table being described.
*/
public val tableName: kotlin.String? = builder.tableName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.dynamodb.model.DescribeKinesisStreamingDestinationResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeKinesisStreamingDestinationResponse(")
append("kinesisDataStreamDestinations=$kinesisDataStreamDestinations,")
append("tableName=$tableName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = kinesisDataStreamDestinations?.hashCode() ?: 0
result = 31 * result + (tableName?.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 DescribeKinesisStreamingDestinationResponse
if (kinesisDataStreamDestinations != other.kinesisDataStreamDestinations) return false
if (tableName != other.tableName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.dynamodb.model.DescribeKinesisStreamingDestinationResponse = Builder(this).apply(block).build()
public class Builder {
/**
* The list of replica structures for the table being described.
*/
public var kinesisDataStreamDestinations: List? = null
/**
* The name of the table being described.
*/
public var tableName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.dynamodb.model.DescribeKinesisStreamingDestinationResponse) : this() {
this.kinesisDataStreamDestinations = x.kinesisDataStreamDestinations
this.tableName = x.tableName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.dynamodb.model.DescribeKinesisStreamingDestinationResponse = DescribeKinesisStreamingDestinationResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy