@Stability(value=Stable)
public static interface CfnApp.EnvironmentVariableProperty
extends software.amazon.jsii.JsiiSerializable
Set environment variables for all branches in your app.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.amplify.*;
EnvironmentVariableProperty environmentVariableProperty = EnvironmentVariableProperty.builder()
.name("name")
.value("value")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApp.EnvironmentVariableProperty.Builder
A builder for
CfnApp.EnvironmentVariableProperty |
static class |
CfnApp.EnvironmentVariableProperty.Jsii$Proxy
An implementation for
CfnApp.EnvironmentVariableProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApp.EnvironmentVariableProperty.Builder |
builder() |
String |
getName()
The environment variable name.
|
String |
getValue()
The environment variable value.
|
@Stability(value=Stable) @NotNull String getName()
Length Constraints: Maximum length of 255.
Pattern: (?s).*
@Stability(value=Stable) @NotNull String getValue()
Length Constraints: Maximum length of 5500.
Pattern: (?s).*
@Stability(value=Stable) static CfnApp.EnvironmentVariableProperty.Builder builder()
Copyright © 2022. All rights reserved.