Show / Hide Table of Contents

Class CfnServicePropsMixin.CodeConfigurationProperty

Describes the configuration that AWS App Runner uses to build and run an App Runner service from a source code repository.

Inheritance
object
CfnServicePropsMixin.CodeConfigurationProperty
Implements
CfnServicePropsMixin.ICodeConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppRunner
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnServicePropsMixin.CodeConfigurationProperty : CfnServicePropsMixin.ICodeConfigurationProperty
Syntax (vb)
Public Class CfnServicePropsMixin.CodeConfigurationProperty Implements CfnServicePropsMixin.ICodeConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-codeconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.AppRunner;

             var codeConfigurationProperty = new CodeConfigurationProperty {
                 CodeConfigurationValues = new CodeConfigurationValuesProperty {
                     BuildCommand = "buildCommand",
                     Port = "port",
                     Runtime = "runtime",
                     RuntimeEnvironmentSecrets = new [] { new KeyValuePairProperty {
                         Name = "name",
                         Value = "value"
                     } },
                     RuntimeEnvironmentVariables = new [] { new KeyValuePairProperty {
                         Name = "name",
                         Value = "value"
                     } },
                     StartCommand = "startCommand"
                 },
                 ConfigurationSource = "configurationSource"
             };

Synopsis

Constructors

CodeConfigurationProperty()

Describes the configuration that AWS App Runner uses to build and run an App Runner service from a source code repository.

Properties

CodeConfigurationValues

The basic configuration for building and running the App Runner service.

ConfigurationSource

The source of the App Runner configuration. Values are interpreted as follows:.

Constructors

CodeConfigurationProperty()

Describes the configuration that AWS App Runner uses to build and run an App Runner service from a source code repository.

public CodeConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-codeconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.AppRunner;

             var codeConfigurationProperty = new CodeConfigurationProperty {
                 CodeConfigurationValues = new CodeConfigurationValuesProperty {
                     BuildCommand = "buildCommand",
                     Port = "port",
                     Runtime = "runtime",
                     RuntimeEnvironmentSecrets = new [] { new KeyValuePairProperty {
                         Name = "name",
                         Value = "value"
                     } },
                     RuntimeEnvironmentVariables = new [] { new KeyValuePairProperty {
                         Name = "name",
                         Value = "value"
                     } },
                     StartCommand = "startCommand"
                 },
                 ConfigurationSource = "configurationSource"
             };

Properties

CodeConfigurationValues

The basic configuration for building and running the App Runner service.

public object? CodeConfigurationValues { get; set; }
Property Value

object

Remarks

Use it to quickly launch an App Runner service without providing a apprunner.yaml file in the source code repository (or ignoring the file if it exists).

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-codeconfiguration.html#cfn-apprunner-service-codeconfiguration-codeconfigurationvalues

Type union: either IResolvable or CfnServicePropsMixin.ICodeConfigurationValuesProperty

ConfigurationSource

The source of the App Runner configuration. Values are interpreted as follows:.

public string? ConfigurationSource { get; set; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-codeconfiguration.html#cfn-apprunner-service-codeconfiguration-configurationsource

    Implements

    CfnServicePropsMixin.ICodeConfigurationProperty
    Back to top Generated by DocFX