package awsamplify // The EnvironmentVariable property type sets environment variables for a specific branch. // // Environment variables are key-value pairs that are available at build time. // // 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" // // environmentVariableProperty := &EnvironmentVariableProperty{ // Name: jsii.String("name"), // Value: jsii.String("value"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-environmentvariable.html // type CfnBranch_EnvironmentVariableProperty struct { // The environment variable name. // // *Length Constraints:* Maximum length of 255. // // *Pattern:* (?s).* // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-environmentvariable.html#cfn-amplify-branch-environmentvariable-name // Name *string `field:"required" json:"name" yaml:"name"` // The environment variable value. // // *Length Constraints:* Maximum length of 5500. // // *Pattern:* (?s).* // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-environmentvariable.html#cfn-amplify-branch-environmentvariable-value // Value *string `field:"required" json:"value" yaml:"value"` }