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

commonMain.aws.sdk.kotlin.services.appsync.model.ResolverLevelMetricsBehavior.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.appsync.model

import kotlin.collections.List

public sealed class ResolverLevelMetricsBehavior {
    public abstract val value: kotlin.String

    public object FullRequestResolverMetrics : aws.sdk.kotlin.services.appsync.model.ResolverLevelMetricsBehavior() {
        override val value: kotlin.String = "FULL_REQUEST_RESOLVER_METRICS"
        override fun toString(): kotlin.String = "FullRequestResolverMetrics"
    }

    public object PerResolverMetrics : aws.sdk.kotlin.services.appsync.model.ResolverLevelMetricsBehavior() {
        override val value: kotlin.String = "PER_RESOLVER_METRICS"
        override fun toString(): kotlin.String = "PerResolverMetrics"
    }

    public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.appsync.model.ResolverLevelMetricsBehavior() {
        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.appsync.model.ResolverLevelMetricsBehavior = when (value) {
            "FULL_REQUEST_RESOLVER_METRICS" -> FullRequestResolverMetrics
            "PER_RESOLVER_METRICS" -> PerResolverMetrics
            else -> SdkUnknown(value)
        }

        /**
         * Get a list of all possible variants
         */
        public fun values(): kotlin.collections.List = values

        private val values: kotlin.collections.List = listOf(
            FullRequestResolverMetrics,
            PerResolverMetrics,
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy