Struct aws_sdk_apprunner::types::CodeConfigurationValues
source · #[non_exhaustive]pub struct CodeConfigurationValues {
pub runtime: Runtime,
pub build_command: Option<String>,
pub start_command: Option<String>,
pub port: Option<String>,
pub runtime_environment_variables: Option<HashMap<String, String>>,
pub runtime_environment_secrets: Option<HashMap<String, String>>,
}
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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.runtime: Runtime
A runtime environment type for building and running an App Runner service. It represents a programming language runtime.
build_command: Option<String>
The command App Runner runs to build your application.
start_command: Option<String>
The command App Runner runs to start your application.
port: Option<String>
The port that your application listens to in the container.
Default: 8080
runtime_environment_variables: Option<HashMap<String, String>>
The environment variables that are available to your running App Runner service. An array of key-value pairs.
runtime_environment_secrets: 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.
Implementations§
source§impl CodeConfigurationValues
impl CodeConfigurationValues
sourcepub fn runtime(&self) -> &Runtime
pub fn runtime(&self) -> &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() -> CodeConfigurationValuesBuilder
pub fn builder() -> CodeConfigurationValuesBuilder
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 for CodeConfigurationValues
impl PartialEq for CodeConfigurationValues
impl StructuralPartialEq for CodeConfigurationValues
Auto Trait Implementations§
impl Freeze for CodeConfigurationValues
impl RefUnwindSafe for CodeConfigurationValues
impl Send for CodeConfigurationValues
impl Sync for CodeConfigurationValues
impl Unpin for CodeConfigurationValues
impl UnwindSafe for CodeConfigurationValues
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more