Interface EnvironmentConfigurationUserParameter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EnvironmentConfigurationUserParameter.Builder,EnvironmentConfigurationUserParameter>,SdkBuilder<EnvironmentConfigurationUserParameter.Builder,EnvironmentConfigurationUserParameter>,SdkPojo
- Enclosing class:
- EnvironmentConfigurationUserParameter
public static interface EnvironmentConfigurationUserParameter.Builder extends SdkPojo, CopyableBuilder<EnvironmentConfigurationUserParameter.Builder,EnvironmentConfigurationUserParameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnvironmentConfigurationUserParameter.BuilderenvironmentConfigurationName(String environmentConfigurationName)The environment configuration name.EnvironmentConfigurationUserParameter.BuilderenvironmentParameters(Collection<EnvironmentParameter> environmentParameters)The environment parameters.EnvironmentConfigurationUserParameter.BuilderenvironmentParameters(Consumer<EnvironmentParameter.Builder>... environmentParameters)The environment parameters.EnvironmentConfigurationUserParameter.BuilderenvironmentParameters(EnvironmentParameter... environmentParameters)The environment parameters.-
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
-
environmentConfigurationName
EnvironmentConfigurationUserParameter.Builder environmentConfigurationName(String environmentConfigurationName)
The environment configuration name.
- Parameters:
environmentConfigurationName- The environment configuration name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environmentParameters
EnvironmentConfigurationUserParameter.Builder environmentParameters(Collection<EnvironmentParameter> environmentParameters)
The environment parameters.
- Parameters:
environmentParameters- The environment parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environmentParameters
EnvironmentConfigurationUserParameter.Builder environmentParameters(EnvironmentParameter... environmentParameters)
The environment parameters.
- Parameters:
environmentParameters- The environment parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environmentParameters
EnvironmentConfigurationUserParameter.Builder environmentParameters(Consumer<EnvironmentParameter.Builder>... environmentParameters)
The environment parameters.
This is a convenience method that creates an instance of theEnvironmentParameter.Builderavoiding the need to create one manually viaEnvironmentParameter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#environmentParameters(List.) - Parameters:
environmentParameters- a consumer that will call methods onEnvironmentParameter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#environmentParameters(java.util.Collection)
-
-