Class CodeConfiguration

    • Method Detail

      • configurationSource

        public final ConfigurationSource configurationSource()

        The source of the App Runner configuration. Values are interpreted as follows:

        • REPOSITORY – App Runner reads configuration values from the apprunner.yaml file in the source code repository and ignores CodeConfigurationValues.

        • API – App Runner uses configuration values provided in CodeConfigurationValues and ignores the apprunner.yaml file in the source code repository.

        If the service returns an enum value that is not available in the current SDK version, configurationSource will return ConfigurationSource.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from configurationSourceAsString().

        Returns:
        The source of the App Runner configuration. Values are interpreted as follows:

        • REPOSITORY – App Runner reads configuration values from the apprunner.yaml file in the source code repository and ignores CodeConfigurationValues.

        • API – App Runner uses configuration values provided in CodeConfigurationValues and ignores the apprunner.yaml file in the source code repository.

        See Also:
        ConfigurationSource
      • configurationSourceAsString

        public final String configurationSourceAsString()

        The source of the App Runner configuration. Values are interpreted as follows:

        • REPOSITORY – App Runner reads configuration values from the apprunner.yaml file in the source code repository and ignores CodeConfigurationValues.

        • API – App Runner uses configuration values provided in CodeConfigurationValues and ignores the apprunner.yaml file in the source code repository.

        If the service returns an enum value that is not available in the current SDK version, configurationSource will return ConfigurationSource.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from configurationSourceAsString().

        Returns:
        The source of the App Runner configuration. Values are interpreted as follows:

        • REPOSITORY – App Runner reads configuration values from the apprunner.yaml file in the source code repository and ignores CodeConfigurationValues.

        • API – App Runner uses configuration values provided in CodeConfigurationValues and ignores the apprunner.yaml file in the source code repository.

        See Also:
        ConfigurationSource
      • codeConfigurationValues

        public final CodeConfigurationValues codeConfigurationValues()

        The basic configuration for building and running the App Runner service. Use it to quickly launch an App Runner service without providing a apprunner.yaml file in the source code repository (or ignoring the file if it exists).

        Returns:
        The basic configuration for building and running the App Runner service. Use it to quickly launch an App Runner service without providing a apprunner.yaml file in the source code repository (or ignoring the file if it exists).
      • hashCode

        public final int hashCode()
        Overrides:
        hashCode in class Object
      • equals

        public final boolean equals​(Object obj)
        Overrides:
        equals in class Object
      • toString

        public final String toString()
        Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
        Overrides:
        toString in class Object
      • getValueForField

        public final <T> Optional<T> getValueForField​(String fieldName,
                                                      Class<T> clazz)