Struct aws_sdk_apprunner::model::CodeConfigurationValues
source · #[non_exhaustive]pub struct CodeConfigurationValues { /* private fields */ }
Expand description
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.
Implementations§
source§impl CodeConfigurationValues
impl CodeConfigurationValues
sourcepub fn runtime(&self) -> Option<&Runtime>
pub fn runtime(&self) -> Option<&Runtime>
A runtime environment type for building and running an App Runner service. It represents a programming language runtime.
sourcepub fn build_command(&self) -> Option<&str>
pub fn build_command(&self) -> Option<&str>
The command App Runner runs to build your application.
sourcepub fn start_command(&self) -> Option<&str>
pub fn start_command(&self) -> Option<&str>
The command App Runner runs to start your application.
sourcepub fn port(&self) -> Option<&str>
pub fn port(&self) -> Option<&str>
The port that your application listens to in the container.
Default: 8080
sourcepub fn runtime_environment_variables(&self) -> Option<&HashMap<String, String>>
pub fn runtime_environment_variables(&self) -> Option<&HashMap<String, String>>
The environment variables that are available to your running App Runner service. An array of key-value pairs.
sourcepub fn runtime_environment_secrets(&self) -> Option<&HashMap<String, String>>
pub fn runtime_environment_secrets(&self) -> Option<&HashMap<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.
-
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.
source§impl CodeConfigurationValues
impl CodeConfigurationValues
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CodeConfigurationValues
.
Trait Implementations§
source§impl Clone for CodeConfigurationValues
impl Clone for CodeConfigurationValues
source§fn clone(&self) -> CodeConfigurationValues
fn clone(&self) -> CodeConfigurationValues
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CodeConfigurationValues
impl Debug for CodeConfigurationValues
source§impl PartialEq<CodeConfigurationValues> for CodeConfigurationValues
impl PartialEq<CodeConfigurationValues> for CodeConfigurationValues
source§fn eq(&self, other: &CodeConfigurationValues) -> bool
fn eq(&self, other: &CodeConfigurationValues) -> bool
self
and other
values to be equal, and is used
by ==
.