commonMain.aws.sdk.kotlin.services.redshiftserverless.model.ScheduledActionAssociation.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshiftserverless-jvm Show documentation
Show all versions of redshiftserverless-jvm Show documentation
The AWS SDK for Kotlin client for Redshift Serverless
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshiftserverless.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Contains names of objects associated with a scheduled action.
*/
public class ScheduledActionAssociation private constructor(builder: Builder) {
/**
* Name of associated Amazon Redshift Serverless namespace.
*/
public val namespaceName: kotlin.String? = builder.namespaceName
/**
* Name of associated scheduled action.
*/
public val scheduledActionName: kotlin.String? = builder.scheduledActionName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshiftserverless.model.ScheduledActionAssociation = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ScheduledActionAssociation(")
append("namespaceName=$namespaceName,")
append("scheduledActionName=$scheduledActionName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = namespaceName?.hashCode() ?: 0
result = 31 * result + (scheduledActionName?.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 ScheduledActionAssociation
if (namespaceName != other.namespaceName) return false
if (scheduledActionName != other.scheduledActionName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshiftserverless.model.ScheduledActionAssociation = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Name of associated Amazon Redshift Serverless namespace.
*/
public var namespaceName: kotlin.String? = null
/**
* Name of associated scheduled action.
*/
public var scheduledActionName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshiftserverless.model.ScheduledActionAssociation) : this() {
this.namespaceName = x.namespaceName
this.scheduledActionName = x.scheduledActionName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshiftserverless.model.ScheduledActionAssociation = ScheduledActionAssociation(this)
internal fun correctErrors(): Builder {
return this
}
}
}