Interface CfnServicePropsMixin.CodeRepositoryProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnServicePropsMixin.CodeRepositoryProperty.Jsii$Proxy
Enclosing class:
CfnServicePropsMixin

@Stability(Stable) public static interface CfnServicePropsMixin.CodeRepositoryProperty extends software.amazon.jsii.JsiiSerializable
Describes a source code repository.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.apprunner.*;
 CodeRepositoryProperty codeRepositoryProperty = CodeRepositoryProperty.builder()
         .codeConfiguration(CodeConfigurationProperty.builder()
                 .codeConfigurationValues(CodeConfigurationValuesProperty.builder()
                         .buildCommand("buildCommand")
                         .port("port")
                         .runtime("runtime")
                         .runtimeEnvironmentSecrets(List.of(KeyValuePairProperty.builder()
                                 .name("name")
                                 .value("value")
                                 .build()))
                         .runtimeEnvironmentVariables(List.of(KeyValuePairProperty.builder()
                                 .name("name")
                                 .value("value")
                                 .build()))
                         .startCommand("startCommand")
                         .build())
                 .configurationSource("configurationSource")
                 .build())
         .repositoryUrl("repositoryUrl")
         .sourceCodeVersion(SourceCodeVersionProperty.builder()
                 .type("type")
                 .value("value")
                 .build())
         .sourceDirectory("sourceDirectory")
         .build();
 

See Also: