package awsapprunner // Describes the basic configuration needed for building and running an AWS 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. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // codeConfigurationValuesProperty := &CodeConfigurationValuesProperty{ // Runtime: jsii.String("runtime"), // // // the properties below are optional // BuildCommand: jsii.String("buildCommand"), // Port: jsii.String("port"), // RuntimeEnvironmentSecrets: []interface{}{ // &KeyValuePairProperty{ // Name: jsii.String("name"), // Value: jsii.String("value"), // }, // }, // RuntimeEnvironmentVariables: []interface{}{ // &KeyValuePairProperty{ // Name: jsii.String("name"), // Value: jsii.String("value"), // }, // }, // StartCommand: jsii.String("startCommand"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-codeconfigurationvalues.html // type CfnService_CodeConfigurationValuesProperty struct { // A runtime environment type for building and running an App Runner service. // // It represents a programming language runtime. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-codeconfigurationvalues.html#cfn-apprunner-service-codeconfigurationvalues-runtime // Runtime *string `field:"required" json:"runtime" yaml:"runtime"` // The command App Runner runs to build your application. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-codeconfigurationvalues.html#cfn-apprunner-service-codeconfigurationvalues-buildcommand // BuildCommand *string `field:"optional" json:"buildCommand" yaml:"buildCommand"` // The port that your application listens to in the container. // // Default: `8080`. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-codeconfigurationvalues.html#cfn-apprunner-service-codeconfigurationvalues-port // Port *string `field:"optional" json:"port" yaml:"port"` // 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 AWS Secrets Manager secret or the full ARN of the parameter in the AWS Systems Manager Parameter Store. // // > - If the AWS Systems Manager Parameter Store parameter exists in the same AWS 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 AWS Systems Manager Parameter Store parameter is not supported. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-codeconfigurationvalues.html#cfn-apprunner-service-codeconfigurationvalues-runtimeenvironmentsecrets // RuntimeEnvironmentSecrets interface{} `field:"optional" json:"runtimeEnvironmentSecrets" yaml:"runtimeEnvironmentSecrets"` // The environment variables that are available to your running AWS App Runner service. // // An array of key-value pairs. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-codeconfigurationvalues.html#cfn-apprunner-service-codeconfigurationvalues-runtimeenvironmentvariables // RuntimeEnvironmentVariables interface{} `field:"optional" json:"runtimeEnvironmentVariables" yaml:"runtimeEnvironmentVariables"` // The command App Runner runs to start your application. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-codeconfigurationvalues.html#cfn-apprunner-service-codeconfigurationvalues-startcommand // StartCommand *string `field:"optional" json:"startCommand" yaml:"startCommand"` }