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

com.pulumi.awsnative.cloudformation.kotlin.enums.StackSetCallAs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.11.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.cloudformation.kotlin.enums

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

/**
 * Specifies the AWS account that you are acting from. By default, SELF is specified. For self-managed permissions, specify SELF; for service-managed permissions, if you are signed in to the organization's management account, specify SELF. If you are signed in to a delegated administrator account, specify DELEGATED_ADMIN.
 */
public enum class StackSetCallAs(
    public val javaValue: com.pulumi.awsnative.cloudformation.enums.StackSetCallAs,
) : ConvertibleToJava {
    Self(com.pulumi.awsnative.cloudformation.enums.StackSetCallAs.Self),
    DelegatedAdmin(com.pulumi.awsnative.cloudformation.enums.StackSetCallAs.DelegatedAdmin),
    ;

    override fun toJava(): com.pulumi.awsnative.cloudformation.enums.StackSetCallAs = javaValue

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy