commonMain.aws.sdk.kotlin.services.configservice.model.ResourceCountGroupKey.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of configservice-jvm Show documentation
Show all versions of configservice-jvm Show documentation
The AWS SDK for Kotlin client for Config Service
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.configservice.model
import kotlin.collections.List
public sealed class ResourceCountGroupKey {
public abstract val value: kotlin.String
public object AccountId : aws.sdk.kotlin.services.configservice.model.ResourceCountGroupKey() {
override val value: kotlin.String = "ACCOUNT_ID"
override fun toString(): kotlin.String = "AccountId"
}
public object AwsRegion : aws.sdk.kotlin.services.configservice.model.ResourceCountGroupKey() {
override val value: kotlin.String = "AWS_REGION"
override fun toString(): kotlin.String = "AwsRegion"
}
public object ResourceType : aws.sdk.kotlin.services.configservice.model.ResourceCountGroupKey() {
override val value: kotlin.String = "RESOURCE_TYPE"
override fun toString(): kotlin.String = "ResourceType"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.configservice.model.ResourceCountGroupKey() {
override fun toString(): kotlin.String = "SdkUnknown($value)"
}
public companion object {
/**
* Convert a raw value to one of the sealed variants or [SdkUnknown]
*/
public fun fromValue(value: kotlin.String): aws.sdk.kotlin.services.configservice.model.ResourceCountGroupKey = when (value) {
"ACCOUNT_ID" -> AccountId
"AWS_REGION" -> AwsRegion
"RESOURCE_TYPE" -> ResourceType
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
AccountId,
AwsRegion,
ResourceType,
)
}
}