Show / Hide Table of Contents

Class CfnBranch.EnvironmentVariableProperty

The EnvironmentVariable property type sets environment variables for a specific branch.

Inheritance
System.Object
CfnBranch.EnvironmentVariableProperty
Implements
CfnBranch.IEnvironmentVariableProperty
Namespace: Amazon.CDK.AWS.Amplify
Assembly: Amazon.CDK.AWS.Amplify.dll
Syntax (csharp)
public class EnvironmentVariableProperty : Object, CfnBranch.IEnvironmentVariableProperty
Syntax (vb)
Public Class EnvironmentVariableProperty
    Inherits Object
    Implements CfnBranch.IEnvironmentVariableProperty
Remarks

Environment variables are key-value pairs that are available at build time.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-environmentvariable.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.AWS.Amplify;

var environmentVariableProperty = new EnvironmentVariableProperty {
    Name = "name",
    Value = "value"
};

Synopsis

Constructors

EnvironmentVariableProperty()

Properties

Name

The environment variable name.

Value

The environment variable value.

Constructors

EnvironmentVariableProperty()

public EnvironmentVariableProperty()

Properties

Name

The environment variable name.

public string Name { get; set; }
Property Value

System.String

Remarks

Length Constraints: Maximum length of 255.

Pattern: (?s).*

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-environmentvariable.html#cfn-amplify-branch-environmentvariable-name

Value

The environment variable value.

public string Value { get; set; }
Property Value

System.String

Remarks

Length Constraints: Maximum length of 5500.

Pattern: (?s).*

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-environmentvariable.html#cfn-amplify-branch-environmentvariable-value

Implements

CfnBranch.IEnvironmentVariableProperty
Back to top Generated by DocFX