
commonMain.aws.sdk.kotlin.services.sms.model.GetReplicationRunsResponse.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.sms.model
public class GetReplicationRunsResponse private constructor(builder: Builder) {
/**
* The token required to retrieve the next set of results. This value is null when there are no more results to return.
*/
public val nextToken: kotlin.String? = builder.nextToken
/**
* Information about the replication job.
*/
public val replicationJob: aws.sdk.kotlin.services.sms.model.ReplicationJob? = builder.replicationJob
/**
* Information about the replication runs.
*/
public val replicationRunList: List? = builder.replicationRunList
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.sms.model.GetReplicationRunsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetReplicationRunsResponse(")
append("nextToken=$nextToken,")
append("replicationJob=$replicationJob,")
append("replicationRunList=$replicationRunList")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = nextToken?.hashCode() ?: 0
result = 31 * result + (replicationJob?.hashCode() ?: 0)
result = 31 * result + (replicationRunList?.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 GetReplicationRunsResponse
if (nextToken != other.nextToken) return false
if (replicationJob != other.replicationJob) return false
if (replicationRunList != other.replicationRunList) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.sms.model.GetReplicationRunsResponse = Builder(this).apply(block).build()
public class Builder {
/**
* The token required to retrieve the next set of results. This value is null when there are no more results to return.
*/
public var nextToken: kotlin.String? = null
/**
* Information about the replication job.
*/
public var replicationJob: aws.sdk.kotlin.services.sms.model.ReplicationJob? = null
/**
* Information about the replication runs.
*/
public var replicationRunList: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.sms.model.GetReplicationRunsResponse) : this() {
this.nextToken = x.nextToken
this.replicationJob = x.replicationJob
this.replicationRunList = x.replicationRunList
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.sms.model.GetReplicationRunsResponse = GetReplicationRunsResponse(this)
/**
* construct an [aws.sdk.kotlin.services.sms.model.ReplicationJob] inside the given [block]
*/
public fun replicationJob(block: aws.sdk.kotlin.services.sms.model.ReplicationJob.Builder.() -> kotlin.Unit) {
this.replicationJob = aws.sdk.kotlin.services.sms.model.ReplicationJob.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy