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

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

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

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

import aws.smithy.kotlin.runtime.SdkDsl

public class GetConformancePackComplianceDetailsRequest private constructor(builder: Builder) {
    /**
     * Name of the conformance pack.
     */
    public val conformancePackName: kotlin.String? = builder.conformancePackName
    /**
     * A `ConformancePackEvaluationFilters` object.
     */
    public val filters: aws.sdk.kotlin.services.configservice.model.ConformancePackEvaluationFilters? = builder.filters
    /**
     * The maximum number of evaluation results returned on each page. If you do no specify a number, Config uses the default. The default is 100.
     */
    public val limit: kotlin.Int? = builder.limit
    /**
     * The `nextToken` string returned in a previous request that you use to request the next page of results in a paginated response.
     */
    public val nextToken: kotlin.String? = builder.nextToken

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

    override fun toString(): kotlin.String = buildString {
        append("GetConformancePackComplianceDetailsRequest(")
        append("conformancePackName=$conformancePackName,")
        append("filters=$filters,")
        append("limit=$limit,")
        append("nextToken=$nextToken")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = conformancePackName?.hashCode() ?: 0
        result = 31 * result + (filters?.hashCode() ?: 0)
        result = 31 * result + (limit ?: 0)
        result = 31 * result + (nextToken?.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 GetConformancePackComplianceDetailsRequest

        if (conformancePackName != other.conformancePackName) return false
        if (filters != other.filters) return false
        if (limit != other.limit) return false
        if (nextToken != other.nextToken) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Name of the conformance pack.
         */
        public var conformancePackName: kotlin.String? = null
        /**
         * A `ConformancePackEvaluationFilters` object.
         */
        public var filters: aws.sdk.kotlin.services.configservice.model.ConformancePackEvaluationFilters? = null
        /**
         * The maximum number of evaluation results returned on each page. If you do no specify a number, Config uses the default. The default is 100.
         */
        public var limit: kotlin.Int? = null
        /**
         * The `nextToken` string returned in a previous request that you use to request the next page of results in a paginated response.
         */
        public var nextToken: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.configservice.model.GetConformancePackComplianceDetailsRequest) : this() {
            this.conformancePackName = x.conformancePackName
            this.filters = x.filters
            this.limit = x.limit
            this.nextToken = x.nextToken
        }

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

        /**
         * construct an [aws.sdk.kotlin.services.configservice.model.ConformancePackEvaluationFilters] inside the given [block]
         */
        public fun filters(block: aws.sdk.kotlin.services.configservice.model.ConformancePackEvaluationFilters.Builder.() -> kotlin.Unit) {
            this.filters = aws.sdk.kotlin.services.configservice.model.ConformancePackEvaluationFilters.invoke(block)
        }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy