Enum Class CfnResourceIndex.Mutability

java.lang.Object
java.lang.Enum<CfnResourceIndex.Mutability>
software.amazon.smithy.aws.cloudformation.traits.CfnResourceIndex.Mutability
All Implemented Interfaces:
Serializable, Comparable<CfnResourceIndex.Mutability>, Constable
Enclosing class:
CfnResourceIndex

public static enum CfnResourceIndex.Mutability extends Enum<CfnResourceIndex.Mutability>
Mutability options derived through lifecycle operations or traits. These mutability options are used to derive the CloudFormation mutabilities of the properties they are associated with.
See Also:
  • Enum Constant Details

    • CREATE

      public static final CfnResourceIndex.Mutability CREATE
      Applied when a property was derived from a lifecycle operation that creates a resource or the CfnMutabilityTrait specifying full, create, or create-and-read mutability.
    • READ

      public static final CfnResourceIndex.Mutability READ
      Applied when a property was derived from a lifecycle operation that retrieves a resource or the CfnMutabilityTrait specifying full, read, or create-and-read mutability.
    • WRITE

      public static final CfnResourceIndex.Mutability WRITE
      Applied when a property was derived from a lifecycle operation that updates a resource or the CfnMutabilityTrait specifying full or write mutability.
  • Method Details

    • values

      public static CfnResourceIndex.Mutability[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CfnResourceIndex.Mutability valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null