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

com.pulumi.awsnative.shield.kotlin.enums.ProactiveEngagementStatus.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.shield.kotlin.enums

import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress

/**
 * If `ENABLED`, the Shield Response Team (SRT) will use email and phone to notify contacts about escalations to the SRT and to initiate proactive customer support.
 * If `DISABLED`, the SRT will not proactively notify contacts about escalations or to initiate proactive customer support.
 */
public enum class ProactiveEngagementStatus(
    public val javaValue: com.pulumi.awsnative.shield.enums.ProactiveEngagementStatus,
) : ConvertibleToJava {
    Enabled(com.pulumi.awsnative.shield.enums.ProactiveEngagementStatus.Enabled),
    Disabled(com.pulumi.awsnative.shield.enums.ProactiveEngagementStatus.Disabled),
    ;

    override fun toJava(): com.pulumi.awsnative.shield.enums.ProactiveEngagementStatus = javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.shield.enums.ProactiveEngagementStatus): ProactiveEngagementStatus =
            ProactiveEngagementStatus.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy