Interface EnvironmentConfigurationParameter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EnvironmentConfigurationParameter.Builder,EnvironmentConfigurationParameter>,SdkBuilder<EnvironmentConfigurationParameter.Builder,EnvironmentConfigurationParameter>,SdkPojo
- Enclosing class:
- EnvironmentConfigurationParameter
public static interface EnvironmentConfigurationParameter.Builder extends SdkPojo, CopyableBuilder<EnvironmentConfigurationParameter.Builder,EnvironmentConfigurationParameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnvironmentConfigurationParameter.BuilderisEditable(Boolean isEditable)Specifies whether the environment parameter is editable.EnvironmentConfigurationParameter.Buildername(String name)The name of the environment configuration parameter.EnvironmentConfigurationParameter.Buildervalue(String value)The value of the environment configuration parameter.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
isEditable
EnvironmentConfigurationParameter.Builder isEditable(Boolean isEditable)
Specifies whether the environment parameter is editable.
- Parameters:
isEditable- Specifies whether the environment parameter is editable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
EnvironmentConfigurationParameter.Builder name(String name)
The name of the environment configuration parameter.
- Parameters:
name- The name of the environment configuration parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
EnvironmentConfigurationParameter.Builder value(String value)
The value of the environment configuration parameter.
- Parameters:
value- The value of the environment configuration parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-