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

commonMain.aws.sdk.kotlin.services.codegurusecurity.model.ScanNameWithFindingNum.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.codegurusecurity.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Information about the number of findings generated by a scan.
 */
public class ScanNameWithFindingNum private constructor(builder: Builder) {
    /**
     * The number of findings generated by a scan.
     */
    public val findingNumber: kotlin.Int? = builder.findingNumber
    /**
     * The name of the scan.
     */
    public val scanName: kotlin.String? = builder.scanName

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

    override fun toString(): kotlin.String = buildString {
        append("ScanNameWithFindingNum(")
        append("findingNumber=$findingNumber,")
        append("scanName=$scanName")
        append(")")
    }

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

        if (findingNumber != other.findingNumber) return false
        if (scanName != other.scanName) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The number of findings generated by a scan.
         */
        public var findingNumber: kotlin.Int? = null
        /**
         * The name of the scan.
         */
        public var scanName: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.codegurusecurity.model.ScanNameWithFindingNum) : this() {
            this.findingNumber = x.findingNumber
            this.scanName = x.scanName
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy