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

commonMain.aws.sdk.kotlin.services.configservice.model.ResourceKey.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.configservice.model



/**
 * The details that identify a resource within Config, including the resource type and resource ID.
 */
public class ResourceKey private constructor(builder: Builder) {
    /**
     * The ID of the resource (for example., sg-xxxxxx).
     */
    public val resourceId: kotlin.String = requireNotNull(builder.resourceId) { "A non-null value must be provided for resourceId" }
    /**
     * The resource type.
     */
    public val resourceType: aws.sdk.kotlin.services.configservice.model.ResourceType = requireNotNull(builder.resourceType) { "A non-null value must be provided for resourceType" }

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

    override fun toString(): kotlin.String = buildString {
        append("ResourceKey(")
        append("resourceId=$resourceId,")
        append("resourceType=$resourceType")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = resourceId.hashCode()
        result = 31 * result + (resourceType.hashCode())
        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 ResourceKey

        if (resourceId != other.resourceId) return false
        if (resourceType != other.resourceType) return false

        return true
    }

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

    public class Builder {
        /**
         * The ID of the resource (for example., sg-xxxxxx).
         */
        public var resourceId: kotlin.String? = null
        /**
         * The resource type.
         */
        public var resourceType: aws.sdk.kotlin.services.configservice.model.ResourceType? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.configservice.model.ResourceKey) : this() {
            this.resourceId = x.resourceId
            this.resourceType = x.resourceType
        }

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

        internal fun correctErrors(): Builder {
            if (resourceId == null) resourceId = ""
            if (resourceType == null) resourceType = ResourceType.SdkUnknown("no value provided")
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy