commonMain.aws.sdk.kotlin.services.redshift.model.GetClusterCredentialsWithIamRequest.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 GetClusterCredentialsWithIamRequest private constructor(builder: Builder) {
/**
* The unique identifier of the cluster that contains the database for which you are requesting credentials.
*/
public val clusterIdentifier: kotlin.String? = builder.clusterIdentifier
/**
* The custom domain name for the IAM message cluster credentials.
*/
public val customDomainName: kotlin.String? = builder.customDomainName
/**
* The name of the database for which you are requesting credentials. If the database name is specified, the IAM policy must allow access to the resource `dbname` for the specified database name. If the database name is not specified, access to all databases is allowed.
*/
public val dbName: kotlin.String? = builder.dbName
/**
* The number of seconds until the returned temporary password expires.
*
* Range: 900-3600. Default: 900.
*/
public val durationSeconds: kotlin.Int? = builder.durationSeconds
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.GetClusterCredentialsWithIamRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetClusterCredentialsWithIamRequest(")
append("clusterIdentifier=$clusterIdentifier,")
append("customDomainName=$customDomainName,")
append("dbName=$dbName,")
append("durationSeconds=$durationSeconds")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = clusterIdentifier?.hashCode() ?: 0
result = 31 * result + (customDomainName?.hashCode() ?: 0)
result = 31 * result + (dbName?.hashCode() ?: 0)
result = 31 * result + (durationSeconds ?: 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 GetClusterCredentialsWithIamRequest
if (clusterIdentifier != other.clusterIdentifier) return false
if (customDomainName != other.customDomainName) return false
if (dbName != other.dbName) return false
if (durationSeconds != other.durationSeconds) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.GetClusterCredentialsWithIamRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The unique identifier of the cluster that contains the database for which you are requesting credentials.
*/
public var clusterIdentifier: kotlin.String? = null
/**
* The custom domain name for the IAM message cluster credentials.
*/
public var customDomainName: kotlin.String? = null
/**
* The name of the database for which you are requesting credentials. If the database name is specified, the IAM policy must allow access to the resource `dbname` for the specified database name. If the database name is not specified, access to all databases is allowed.
*/
public var dbName: kotlin.String? = null
/**
* The number of seconds until the returned temporary password expires.
*
* Range: 900-3600. Default: 900.
*/
public var durationSeconds: kotlin.Int? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.GetClusterCredentialsWithIamRequest) : this() {
this.clusterIdentifier = x.clusterIdentifier
this.customDomainName = x.customDomainName
this.dbName = x.dbName
this.durationSeconds = x.durationSeconds
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.GetClusterCredentialsWithIamRequest = GetClusterCredentialsWithIamRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}