Enum Class ConfigurationType
- All Implemented Interfaces:
Serializable,Comparable<ConfigurationType>,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.110.0 (build 336b265)",
date="2025-04-22T23:08:06.695Z")
@Stability(Stable)
public enum ConfigurationType
extends Enum<ConfigurationType>
The configuration type.
Example:
Application application;
HostedConfiguration.Builder.create(this, "MyHostedConfiguration")
.application(application)
.content(ConfigurationContent.fromInlineText("This is my configuration content."))
.type(ConfigurationType.FEATURE_FLAGS)
.build();
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFeature flag configuration profile.Freeform configuration profile. -
Method Summary
Modifier and TypeMethodDescriptionstatic ConfigurationTypeReturns the enum constant of this class with the specified name.static ConfigurationType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FREEFORM
Freeform configuration profile.Allows you to store your data in the AWS AppConfig hosted configuration store or another Systems Manager capability or AWS service that integrates with AWS AppConfig.
- See Also:
-
FEATURE_FLAGS
Feature flag configuration profile.This configuration stores its data in the AWS AppConfig hosted configuration store and the URI is simply hosted.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-