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

commonMain.aws.sdk.kotlin.services.ssmincidents.model.ResponsePlanSummary.kt Maven / Gradle / Ivy

There is a newer version: 1.3.79
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.ssmincidents.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Details of the response plan that are used when creating an incident.
 */
public class ResponsePlanSummary private constructor(builder: Builder) {
    /**
     * The Amazon Resource Name (ARN) of the response plan.
     */
    public val arn: kotlin.String = requireNotNull(builder.arn) { "A non-null value must be provided for arn" }
    /**
     * The human readable name of the response plan. This can include spaces.
     */
    public val displayName: kotlin.String? = builder.displayName
    /**
     * The name of the response plan. This can't include spaces.
     */
    public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }

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

    override fun toString(): kotlin.String = buildString {
        append("ResponsePlanSummary(")
        append("arn=$arn,")
        append("displayName=$displayName,")
        append("name=$name")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = arn.hashCode()
        result = 31 * result + (displayName?.hashCode() ?: 0)
        result = 31 * result + (name.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 ResponsePlanSummary

        if (arn != other.arn) return false
        if (displayName != other.displayName) return false
        if (name != other.name) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The Amazon Resource Name (ARN) of the response plan.
         */
        public var arn: kotlin.String? = null
        /**
         * The human readable name of the response plan. This can include spaces.
         */
        public var displayName: kotlin.String? = null
        /**
         * The name of the response plan. This can't include spaces.
         */
        public var name: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.ssmincidents.model.ResponsePlanSummary) : this() {
            this.arn = x.arn
            this.displayName = x.displayName
            this.name = x.name
        }

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

        internal fun correctErrors(): Builder {
            if (arn == null) arn = ""
            if (name == null) name = ""
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy