All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.glue.model.UsageProfileDefinition.kt Maven / Gradle / Ivy

The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.glue.model

import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant

/**
 * Describes an Glue usage profile.
 */
public class UsageProfileDefinition private constructor(builder: Builder) {
    /**
     * The date and time when the usage profile was created.
     */
    public val createdOn: aws.smithy.kotlin.runtime.time.Instant? = builder.createdOn
    /**
     * A description of the usage profile.
     */
    public val description: kotlin.String? = builder.description
    /**
     * The date and time when the usage profile was last modified.
     */
    public val lastModifiedOn: aws.smithy.kotlin.runtime.time.Instant? = builder.lastModifiedOn
    /**
     * The name of the usage profile.
     */
    public val name: kotlin.String? = builder.name

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.UsageProfileDefinition = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("UsageProfileDefinition(")
        append("createdOn=$createdOn,")
        append("description=$description,")
        append("lastModifiedOn=$lastModifiedOn,")
        append("name=$name")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = createdOn?.hashCode() ?: 0
        result = 31 * result + (description?.hashCode() ?: 0)
        result = 31 * result + (lastModifiedOn?.hashCode() ?: 0)
        result = 31 * result + (name?.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 UsageProfileDefinition

        if (createdOn != other.createdOn) return false
        if (description != other.description) return false
        if (lastModifiedOn != other.lastModifiedOn) return false
        if (name != other.name) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.UsageProfileDefinition = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The date and time when the usage profile was created.
         */
        public var createdOn: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * A description of the usage profile.
         */
        public var description: kotlin.String? = null
        /**
         * The date and time when the usage profile was last modified.
         */
        public var lastModifiedOn: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * The name of the usage profile.
         */
        public var name: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.glue.model.UsageProfileDefinition) : this() {
            this.createdOn = x.createdOn
            this.description = x.description
            this.lastModifiedOn = x.lastModifiedOn
            this.name = x.name
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.glue.model.UsageProfileDefinition = UsageProfileDefinition(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy