@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:02.851Z") @Stability(value=Experimental) public enum ConfigurationSourceType extends Enum<ConfigurationSourceType>
| Enum Constant and Description |
|---|
API
(experimental) App Runner uses configuration values provided in `configurationValues` and ignores the `apprunner.yaml` file in the source code repository.
|
REPOSITORY
(experimental) App Runner reads configuration values from `the apprunner.yaml` file in the source code repository and ignores `configurationValues`.
|
| Modifier and Type | Method and Description |
|---|---|
static ConfigurationSourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final ConfigurationSourceType REPOSITORY
@Stability(value=Experimental) public static final ConfigurationSourceType API
public static ConfigurationSourceType[] values()
for (ConfigurationSourceType c : ConfigurationSourceType.values()) System.out.println(c);
public static ConfigurationSourceType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.