commonMain.aws.sdk.kotlin.services.computeoptimizer.model.GetEnrollmentStatusesForOrganizationResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of computeoptimizer-jvm Show documentation
Show all versions of computeoptimizer-jvm Show documentation
The AWS SDK for Kotlin client for Compute Optimizer
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.computeoptimizer.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetEnrollmentStatusesForOrganizationResponse private constructor(builder: Builder) {
/**
* An array of objects that describe the enrollment statuses of organization member accounts.
*/
public val accountEnrollmentStatuses: List? = builder.accountEnrollmentStatuses
/**
* The token to use to advance to the next page of account enrollment statuses.
*
* This value is null when there are no more pages of account enrollment statuses to return.
*/
public val nextToken: kotlin.String? = builder.nextToken
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.computeoptimizer.model.GetEnrollmentStatusesForOrganizationResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetEnrollmentStatusesForOrganizationResponse(")
append("accountEnrollmentStatuses=$accountEnrollmentStatuses,")
append("nextToken=$nextToken")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = accountEnrollmentStatuses?.hashCode() ?: 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 GetEnrollmentStatusesForOrganizationResponse
if (accountEnrollmentStatuses != other.accountEnrollmentStatuses) return false
if (nextToken != other.nextToken) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.computeoptimizer.model.GetEnrollmentStatusesForOrganizationResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An array of objects that describe the enrollment statuses of organization member accounts.
*/
public var accountEnrollmentStatuses: List? = null
/**
* The token to use to advance to the next page of account enrollment statuses.
*
* This value is null when there are no more pages of account enrollment statuses to return.
*/
public var nextToken: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.computeoptimizer.model.GetEnrollmentStatusesForOrganizationResponse) : this() {
this.accountEnrollmentStatuses = x.accountEnrollmentStatuses
this.nextToken = x.nextToken
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.computeoptimizer.model.GetEnrollmentStatusesForOrganizationResponse = GetEnrollmentStatusesForOrganizationResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}