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

aws.sdk.kotlin.services.devopsguru.model.GetResourceCollectionRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.devopsguru.model



class GetResourceCollectionRequest private constructor(builder: Builder) {
    /**
     * The pagination token to use to retrieve
     * the next page of results for this operation. If this value is null, it retrieves the first page.
     */
    val nextToken: kotlin.String? = builder.nextToken
    /**
     * The type of Amazon Web Services resource collections to return. The one valid value is
     * CLOUD_FORMATION for Amazon Web Services CloudFormation stacks.
     */
    val resourceCollectionType: aws.sdk.kotlin.services.devopsguru.model.ResourceCollectionType? = builder.resourceCollectionType

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

    override fun toString(): kotlin.String = buildString {
        append("GetResourceCollectionRequest(")
        append("nextToken=$nextToken,")
        append("resourceCollectionType=$resourceCollectionType)")
    }

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

        if (nextToken != other.nextToken) return false
        if (resourceCollectionType != other.resourceCollectionType) return false

        return true
    }

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

    class Builder {
        /**
         * The pagination token to use to retrieve
         * the next page of results for this operation. If this value is null, it retrieves the first page.
         */
        var nextToken: kotlin.String? = null
        /**
         * The type of Amazon Web Services resource collections to return. The one valid value is
         * CLOUD_FORMATION for Amazon Web Services CloudFormation stacks.
         */
        var resourceCollectionType: aws.sdk.kotlin.services.devopsguru.model.ResourceCollectionType? = null

        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.devopsguru.model.GetResourceCollectionRequest) : this() {
            this.nextToken = x.nextToken
            this.resourceCollectionType = x.resourceCollectionType
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.devopsguru.model.GetResourceCollectionRequest = GetResourceCollectionRequest(this)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy