public static interface EnvironmentVariable.Builder extends CopyableBuilder<EnvironmentVariable.Builder,EnvironmentVariable>
Modifier and Type | Method and Description |
---|---|
EnvironmentVariable.Builder |
key(String key)
(Required) The environment variable's name, which can consist of up to 64 characters and must be specified.
|
EnvironmentVariable.Builder |
secure(Boolean secure)
(Optional) Whether the variable's value will be returned by the DescribeApps action.
|
EnvironmentVariable.Builder |
value(String value)
(Optional) The environment variable's value, which can be left empty.
|
copy
applyMutation, build
EnvironmentVariable.Builder key(String key)
(Required) The environment variable's name, which can consist of up to 64 characters and must be specified. The name can contain upper- and lowercase letters, numbers, and underscores (_), but it must start with a letter or underscore.
key
- (Required) The environment variable's name, which can consist of up to 64 characters and must be
specified. The name can contain upper- and lowercase letters, numbers, and underscores (_), but it
must start with a letter or underscore.EnvironmentVariable.Builder value(String value)
(Optional) The environment variable's value, which can be left empty. If you specify a value, it can contain up to 256 characters, which must all be printable.
value
- (Optional) The environment variable's value, which can be left empty. If you specify a value, it can
contain up to 256 characters, which must all be printable.EnvironmentVariable.Builder secure(Boolean secure)
(Optional) Whether the variable's value will be returned by the DescribeApps action. To conceal an
environment variable's value, set Secure
to true
. DescribeApps
then
returns *****FILTERED*****
instead of the actual value. The default value for
Secure
is false
.
secure
- (Optional) Whether the variable's value will be returned by the DescribeApps action. To conceal
an environment variable's value, set Secure
to true
.
DescribeApps
then returns *****FILTERED*****
instead of the actual value.
The default value for Secure
is false
.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.