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
Modifier and TypeMethodDescriptionenvironmentConfigurationName(String environmentConfigurationName) The environment configuration name.environmentId(String environmentId) The ID of the environment.environmentParameters(Collection<EnvironmentParameter> environmentParameters) The environment parameters.environmentParameters(Consumer<EnvironmentParameter.Builder>... environmentParameters) The environment parameters.environmentParameters(EnvironmentParameter... environmentParameters) The environment parameters.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields 
- 
Method Details
- 
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.
 
 - 
environmentId
The ID of the environment.
- Parameters:
 environmentId- The ID of the environment.- 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 toenvironmentParameters(List<EnvironmentParameter>).- 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:
 
 
 -