commonMain.aws.sdk.kotlin.services.redshift.model.DescribeSnapshotCopyGrantsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshift-jvm Show documentation
Show all versions of redshift-jvm Show documentation
The AWS SDK for Kotlin client for Redshift
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshift.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
*
*/
public class DescribeSnapshotCopyGrantsResponse private constructor(builder: Builder) {
/**
* An optional parameter that specifies the starting point to return a set of response records. When the results of a `DescribeSnapshotCopyGrant` request exceed the value specified in `MaxRecords`, Amazon Web Services returns a value in the `Marker` field of the response. You can retrieve the next set of response records by providing the returned marker value in the `Marker` parameter and retrying the request.
*
* Constraints: You can specify either the **SnapshotCopyGrantName** parameter or the **Marker** parameter, but not both.
*/
public val marker: kotlin.String? = builder.marker
/**
* The list of `SnapshotCopyGrant` objects.
*/
public val snapshotCopyGrants: List? = builder.snapshotCopyGrants
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.DescribeSnapshotCopyGrantsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeSnapshotCopyGrantsResponse(")
append("marker=$marker,")
append("snapshotCopyGrants=$snapshotCopyGrants")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = marker?.hashCode() ?: 0
result = 31 * result + (snapshotCopyGrants?.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 DescribeSnapshotCopyGrantsResponse
if (marker != other.marker) return false
if (snapshotCopyGrants != other.snapshotCopyGrants) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.DescribeSnapshotCopyGrantsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An optional parameter that specifies the starting point to return a set of response records. When the results of a `DescribeSnapshotCopyGrant` request exceed the value specified in `MaxRecords`, Amazon Web Services returns a value in the `Marker` field of the response. You can retrieve the next set of response records by providing the returned marker value in the `Marker` parameter and retrying the request.
*
* Constraints: You can specify either the **SnapshotCopyGrantName** parameter or the **Marker** parameter, but not both.
*/
public var marker: kotlin.String? = null
/**
* The list of `SnapshotCopyGrant` objects.
*/
public var snapshotCopyGrants: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.DescribeSnapshotCopyGrantsResponse) : this() {
this.marker = x.marker
this.snapshotCopyGrants = x.snapshotCopyGrants
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.DescribeSnapshotCopyGrantsResponse = DescribeSnapshotCopyGrantsResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}