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

commonMain.aws.sdk.kotlin.services.auditmanager.model.ControlSet.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.auditmanager.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * A set of controls in Audit Manager.
 */
public class ControlSet private constructor(builder: Builder) {
    /**
     * The list of controls within the control set.
     */
    public val controls: List? = builder.controls
    /**
     * The identifier of the control set in the assessment. This is the control set name in a plain string format.
     */
    public val id: kotlin.String? = builder.id
    /**
     * The name of the control set.
     */
    public val name: kotlin.String? = builder.name

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

    override fun toString(): kotlin.String = buildString {
        append("ControlSet(")
        append("controls=$controls,")
        append("id=$id,")
        append("name=$name")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = controls?.hashCode() ?: 0
        result = 31 * result + (id?.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 ControlSet

        if (controls != other.controls) return false
        if (id != other.id) return false
        if (name != other.name) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The list of controls within the control set.
         */
        public var controls: List? = null
        /**
         * The identifier of the control set in the assessment. This is the control set name in a plain string format.
         */
        public var id: kotlin.String? = null
        /**
         * The name of the control set.
         */
        public var name: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.auditmanager.model.ControlSet) : this() {
            this.controls = x.controls
            this.id = x.id
            this.name = x.name
        }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy