ServiceSourceConfigurationImageRepositoryImageConfiguration

data class ServiceSourceConfigurationImageRepositoryImageConfiguration(val port: String? = null, val runtimeEnvironmentSecrets: Map<String, String>? = null, val runtimeEnvironmentVariables: Map<String, String>? = null, val startCommand: String? = null)

Constructors

fun ServiceSourceConfigurationImageRepositoryImageConfiguration(port: String? = null, runtimeEnvironmentSecrets: Map<String, String>? = null, runtimeEnvironmentVariables: Map<String, String>? = null, startCommand: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val port: String? = null

Port that your application listens to in the container. Defaults to "8080".

Link copied to clipboard

Secrets and parameters available to your service as environment variables. A map of key/value pairs.

Link copied to clipboard

Environment variables available to your running App Runner service. A map of key/value pairs. Keys with a prefix of AWSAPPRUNNER are reserved for system use and aren't valid.

Link copied to clipboard
val startCommand: String? = null

Command App Runner runs to start the application in the source image. If specified, this command overrides the Docker image’s default start command.