commonMain.aws.sdk.kotlin.services.redshift.model.DescribeIntegrationsRequest.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
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshift.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DescribeIntegrationsRequest private constructor(builder: Builder) {
/**
* A filter that specifies one or more resources to return.
*/
public val filters: List? = builder.filters
/**
* The unique identifier of the integration.
*/
public val integrationArn: kotlin.String? = builder.integrationArn
/**
* An optional pagination token provided by a previous `DescribeIntegrations` request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by `MaxRecords`.
*/
public val marker: kotlin.String? = builder.marker
/**
* The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified `MaxRecords` value, a value is returned in a `marker` field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.
*
* Default: `100`
*
* Constraints: minimum 20, maximum 100.
*/
public val maxRecords: kotlin.Int? = builder.maxRecords
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.DescribeIntegrationsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeIntegrationsRequest(")
append("filters=$filters,")
append("integrationArn=$integrationArn,")
append("marker=$marker,")
append("maxRecords=$maxRecords")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = filters?.hashCode() ?: 0
result = 31 * result + (integrationArn?.hashCode() ?: 0)
result = 31 * result + (marker?.hashCode() ?: 0)
result = 31 * result + (maxRecords ?: 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 DescribeIntegrationsRequest
if (filters != other.filters) return false
if (integrationArn != other.integrationArn) return false
if (marker != other.marker) return false
if (maxRecords != other.maxRecords) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.DescribeIntegrationsRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A filter that specifies one or more resources to return.
*/
public var filters: List? = null
/**
* The unique identifier of the integration.
*/
public var integrationArn: kotlin.String? = null
/**
* An optional pagination token provided by a previous `DescribeIntegrations` request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by `MaxRecords`.
*/
public var marker: kotlin.String? = null
/**
* The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified `MaxRecords` value, a value is returned in a `marker` field of the response. You can retrieve the next set of records by retrying the command with the returned marker value.
*
* Default: `100`
*
* Constraints: minimum 20, maximum 100.
*/
public var maxRecords: kotlin.Int? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.DescribeIntegrationsRequest) : this() {
this.filters = x.filters
this.integrationArn = x.integrationArn
this.marker = x.marker
this.maxRecords = x.maxRecords
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.DescribeIntegrationsRequest = DescribeIntegrationsRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}