Class: Aws::AppRunner::Types::CodeConfigurationValues
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::CodeConfigurationValues
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
Describes the basic configuration needed for building and running an
App Runner service. This type doesn't support the full set of
possible configuration options. Fur full configuration capabilities,
use a apprunner.yaml
file in the source code repository.
Constant Summary collapse
- SENSITIVE =
[:build_command, :start_command, :runtime_environment_variables, :runtime_environment_secrets]
Instance Attribute Summary collapse
-
#build_command ⇒ String
The command App Runner runs to build your application.
-
#port ⇒ String
The port that your application listens to in the container.
-
#runtime ⇒ String
A runtime environment type for building and running an App Runner service.
-
#runtime_environment_secrets ⇒ Hash<String,String>
An array of key-value pairs representing the secrets and parameters that get referenced to your service as an environment variable.
-
#runtime_environment_variables ⇒ Hash<String,String>
The environment variables that are available to your running App Runner service.
-
#start_command ⇒ String
The command App Runner runs to start your application.
Instance Attribute Details
#build_command ⇒ String
The command App Runner runs to build your application.
393 394 395 396 397 398 399 400 401 402 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 393 class CodeConfigurationValues < Struct.new( :runtime, :build_command, :start_command, :port, :runtime_environment_variables, :runtime_environment_secrets) SENSITIVE = [:build_command, :start_command, :runtime_environment_variables, :runtime_environment_secrets] include Aws::Structure end |
#port ⇒ String
The port that your application listens to in the container.
Default: 8080
393 394 395 396 397 398 399 400 401 402 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 393 class CodeConfigurationValues < Struct.new( :runtime, :build_command, :start_command, :port, :runtime_environment_variables, :runtime_environment_secrets) SENSITIVE = [:build_command, :start_command, :runtime_environment_variables, :runtime_environment_secrets] include Aws::Structure end |
#runtime ⇒ String
A runtime environment type for building and running an App Runner service. It represents a programming language runtime.
393 394 395 396 397 398 399 400 401 402 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 393 class CodeConfigurationValues < Struct.new( :runtime, :build_command, :start_command, :port, :runtime_environment_variables, :runtime_environment_secrets) SENSITIVE = [:build_command, :start_command, :runtime_environment_variables, :runtime_environment_secrets] include Aws::Structure end |
#runtime_environment_secrets ⇒ Hash<String,String>
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.
- Currently, cross account referencing of Amazon Web Services Systems Manager Parameter Store parameter is not supported.
393 394 395 396 397 398 399 400 401 402 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 393 class CodeConfigurationValues < Struct.new( :runtime, :build_command, :start_command, :port, :runtime_environment_variables, :runtime_environment_secrets) SENSITIVE = [:build_command, :start_command, :runtime_environment_variables, :runtime_environment_secrets] include Aws::Structure end |
#runtime_environment_variables ⇒ Hash<String,String>
The environment variables that are available to your running App Runner service. An array of key-value pairs.
393 394 395 396 397 398 399 400 401 402 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 393 class CodeConfigurationValues < Struct.new( :runtime, :build_command, :start_command, :port, :runtime_environment_variables, :runtime_environment_secrets) SENSITIVE = [:build_command, :start_command, :runtime_environment_variables, :runtime_environment_secrets] include Aws::Structure end |
#start_command ⇒ String
The command App Runner runs to start your application.
393 394 395 396 397 398 399 400 401 402 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 393 class CodeConfigurationValues < Struct.new( :runtime, :build_command, :start_command, :port, :runtime_environment_variables, :runtime_environment_secrets) SENSITIVE = [:build_command, :start_command, :runtime_environment_variables, :runtime_environment_secrets] include Aws::Structure end |