Interface EcsEnvironmentVariable.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EcsEnvironmentVariable.Builder,EcsEnvironmentVariable>,SdkBuilder<EcsEnvironmentVariable.Builder,EcsEnvironmentVariable>,SdkPojo
- Enclosing class:
- EcsEnvironmentVariable
public static interface EcsEnvironmentVariable.Builder extends SdkPojo, CopyableBuilder<EcsEnvironmentVariable.Builder,EcsEnvironmentVariable>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EcsEnvironmentVariable.Buildername(String name)The name of the key-value pair.EcsEnvironmentVariable.Buildervalue(String value)The value of the key-value pair.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
name
EcsEnvironmentVariable.Builder name(String name)
The name of the key-value pair. For environment variables, this is the name of the environment variable.
- Parameters:
name- The name of the key-value pair. For environment variables, this is the name of the environment variable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
EcsEnvironmentVariable.Builder value(String value)
The value of the key-value pair. For environment variables, this is the value of the environment variable.
- Parameters:
value- The value of the key-value pair. For environment variables, this is the value of the environment variable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-