package awsapprunner // 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 "github.com/aws/aws-cdk-go/awscdk" // // codeRepositoryProperty := &CodeRepositoryProperty{ // RepositoryUrl: jsii.String("repositoryUrl"), // SourceCodeVersion: &SourceCodeVersionProperty{ // Type: jsii.String("type"), // Value: jsii.String("value"), // }, // // // the properties below are optional // CodeConfiguration: &CodeConfigurationProperty{ // ConfigurationSource: jsii.String("configurationSource"), // // // the properties below are optional // CodeConfigurationValues: &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-coderepository.html // type CfnService_CodeRepositoryProperty struct { // The location of the repository that contains the source code. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-coderepository.html#cfn-apprunner-service-coderepository-repositoryurl // RepositoryUrl *string `field:"required" json:"repositoryUrl" yaml:"repositoryUrl"` // The version that should be used within the source code repository. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-coderepository.html#cfn-apprunner-service-coderepository-sourcecodeversion // SourceCodeVersion interface{} `field:"required" json:"sourceCodeVersion" yaml:"sourceCodeVersion"` // Configuration for building and running the service from a source code repository. // // > `CodeConfiguration` is required only for `CreateService` request. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-coderepository.html#cfn-apprunner-service-coderepository-codeconfiguration // CodeConfiguration interface{} `field:"optional" json:"codeConfiguration" yaml:"codeConfiguration"` }