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

commonMain.aws.sdk.kotlin.services.auditmanager.model.CreateAssessmentFrameworkControlSet.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 `controlSet` entity that represents a collection of controls in Audit Manager. This doesn't contain the control set ID.
 */
public class CreateAssessmentFrameworkControlSet private constructor(builder: Builder) {
    /**
     * The list of controls within the control set. This doesn't contain the control set ID.
     */
    public val controls: List? = builder.controls
    /**
     * The name of the control set.
     */
    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.auditmanager.model.CreateAssessmentFrameworkControlSet = Builder().apply(block).build()
    }

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

    override fun hashCode(): kotlin.Int {
        var result = controls?.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 CreateAssessmentFrameworkControlSet

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

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The list of controls within the control set. This doesn't contain the control set ID.
         */
        public var controls: List? = 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.CreateAssessmentFrameworkControlSet) : this() {
            this.controls = x.controls
            this.name = x.name
        }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy