public static interface ImageConfiguration.Builder extends SdkPojo, CopyableBuilder<ImageConfiguration.Builder,ImageConfiguration>
| Modifier and Type | Method and Description |
|---|---|
ImageConfiguration.Builder |
port(String port)
The port that your application listens to in the container.
|
ImageConfiguration.Builder |
runtimeEnvironmentSecrets(Map<String,String> runtimeEnvironmentSecrets)
An array of key-value pairs representing the secrets and parameters that get referenced to your service as an
environment variable.
|
ImageConfiguration.Builder |
runtimeEnvironmentVariables(Map<String,String> runtimeEnvironmentVariables)
Environment variables that are available to your running App Runner service.
|
ImageConfiguration.Builder |
startCommand(String startCommand)
An optional command that App Runner runs to start the application in the source image.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildImageConfiguration.Builder runtimeEnvironmentVariables(Map<String,String> runtimeEnvironmentVariables)
Environment variables that are available to your running App Runner service. An array of key-value pairs.
runtimeEnvironmentVariables - Environment variables that are available to your running App Runner service. An array of key-value
pairs.ImageConfiguration.Builder startCommand(String startCommand)
An optional command that App Runner runs to start the application in the source image. If specified, this command overrides the Docker image’s default start command.
startCommand - An optional command that App Runner runs to start the application in the source image. If specified,
this command overrides the Docker image’s default start command.ImageConfiguration.Builder port(String port)
The port that your application listens to in the container.
Default: 8080
port - The port that your application listens to in the container.
Default: 8080
ImageConfiguration.Builder runtimeEnvironmentSecrets(Map<String,String> runtimeEnvironmentSecrets)
An array of key-value pairs representing the secrets and parameters that get referenced to your service as an environment variable. The supported values are either the full Amazon Resource Name (ARN) of the Secrets Manager secret or the full ARN of the parameter in the Amazon Web Services Systems Manager Parameter Store.
If the Amazon Web Services Systems Manager Parameter Store parameter exists in the same Amazon Web Services Region as the service that you're launching, you can use either the full ARN or name of the secret. If the parameter exists in a different Region, then the full ARN must be specified.
Currently, cross account referencing of Amazon Web Services Systems Manager Parameter Store parameter is not supported.
runtimeEnvironmentSecrets - An array of key-value pairs representing the secrets and parameters that get referenced to your
service as an environment variable. The supported values are either the full Amazon Resource Name
(ARN) of the Secrets Manager secret or the full ARN of the parameter in the Amazon Web Services
Systems Manager Parameter Store. If the Amazon Web Services Systems Manager Parameter Store parameter exists in the same Amazon Web Services Region as the service that you're launching, you can use either the full ARN or name of the secret. If the parameter exists in a different Region, then the full ARN must be specified.
Currently, cross account referencing of Amazon Web Services Systems Manager Parameter Store parameter is not supported.
Copyright © 2023. All rights reserved.