commonMain.aws.sdk.kotlin.services.databasemigrationservice.model.ResourcePendingMaintenanceActions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databasemigrationservice-jvm Show documentation
Show all versions of databasemigrationservice-jvm Show documentation
The AWS SDK for Kotlin client for Database Migration Service
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.databasemigrationservice.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Identifies an DMS resource and any pending actions for it.
*/
public class ResourcePendingMaintenanceActions private constructor(builder: Builder) {
/**
* Detailed information about the pending maintenance action.
*/
public val pendingMaintenanceActionDetails: List? = builder.pendingMaintenanceActionDetails
/**
* The Amazon Resource Name (ARN) of the DMS resource that the pending maintenance action applies to. For information about creating an ARN, see [ Constructing an Amazon Resource Name (ARN) for DMS](https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Introduction.AWS.ARN.html) in the DMS documentation.
*/
public val resourceIdentifier: kotlin.String? = builder.resourceIdentifier
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.databasemigrationservice.model.ResourcePendingMaintenanceActions = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ResourcePendingMaintenanceActions(")
append("pendingMaintenanceActionDetails=$pendingMaintenanceActionDetails,")
append("resourceIdentifier=$resourceIdentifier")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = pendingMaintenanceActionDetails?.hashCode() ?: 0
result = 31 * result + (resourceIdentifier?.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 ResourcePendingMaintenanceActions
if (pendingMaintenanceActionDetails != other.pendingMaintenanceActionDetails) return false
if (resourceIdentifier != other.resourceIdentifier) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.databasemigrationservice.model.ResourcePendingMaintenanceActions = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Detailed information about the pending maintenance action.
*/
public var pendingMaintenanceActionDetails: List? = null
/**
* The Amazon Resource Name (ARN) of the DMS resource that the pending maintenance action applies to. For information about creating an ARN, see [ Constructing an Amazon Resource Name (ARN) for DMS](https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Introduction.AWS.ARN.html) in the DMS documentation.
*/
public var resourceIdentifier: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.databasemigrationservice.model.ResourcePendingMaintenanceActions) : this() {
this.pendingMaintenanceActionDetails = x.pendingMaintenanceActionDetails
this.resourceIdentifier = x.resourceIdentifier
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.databasemigrationservice.model.ResourcePendingMaintenanceActions = ResourcePendingMaintenanceActions(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy