Interface ExportedEnvironmentVariable.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExportedEnvironmentVariable.Builder,ExportedEnvironmentVariable>,SdkBuilder<ExportedEnvironmentVariable.Builder,ExportedEnvironmentVariable>,SdkPojo
- Enclosing class:
- ExportedEnvironmentVariable
public static interface ExportedEnvironmentVariable.Builder extends SdkPojo, CopyableBuilder<ExportedEnvironmentVariable.Builder,ExportedEnvironmentVariable>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExportedEnvironmentVariable.Buildername(String name)The name of the exported environment variable.ExportedEnvironmentVariable.Buildervalue(String value)The value assigned to the exported environment variable.-
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
ExportedEnvironmentVariable.Builder name(String name)
The name of the exported environment variable.
- Parameters:
name- The name of the exported environment variable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
ExportedEnvironmentVariable.Builder value(String value)
The value assigned to the exported environment variable.
- Parameters:
value- The value assigned to the exported environment variable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-