Interface UpdateParameterGroupRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateParameterGroupRequest.Builder,UpdateParameterGroupRequest>,MemoryDbRequest.Builder,SdkBuilder<UpdateParameterGroupRequest.Builder,UpdateParameterGroupRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateParameterGroupRequest
public static interface UpdateParameterGroupRequest.Builder extends MemoryDbRequest.Builder, SdkPojo, CopyableBuilder<UpdateParameterGroupRequest.Builder,UpdateParameterGroupRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateParameterGroupRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateParameterGroupRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateParameterGroupRequest.BuilderparameterGroupName(String parameterGroupName)The name of the parameter group to update.UpdateParameterGroupRequest.BuilderparameterNameValues(Collection<ParameterNameValue> parameterNameValues)An array of parameter names and values for the parameter update.UpdateParameterGroupRequest.BuilderparameterNameValues(Consumer<ParameterNameValue.Builder>... parameterNameValues)An array of parameter names and values for the parameter update.UpdateParameterGroupRequest.BuilderparameterNameValues(ParameterNameValue... parameterNameValues)An array of parameter names and values for the parameter update.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.memorydb.model.MemoryDbRequest.Builder
build
-
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
-
parameterGroupName
UpdateParameterGroupRequest.Builder parameterGroupName(String parameterGroupName)
The name of the parameter group to update.
- Parameters:
parameterGroupName- The name of the parameter group to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameterNameValues
UpdateParameterGroupRequest.Builder parameterNameValues(Collection<ParameterNameValue> parameterNameValues)
An array of parameter names and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be updated per request.
- Parameters:
parameterNameValues- An array of parameter names and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be updated per request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameterNameValues
UpdateParameterGroupRequest.Builder parameterNameValues(ParameterNameValue... parameterNameValues)
An array of parameter names and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be updated per request.
- Parameters:
parameterNameValues- An array of parameter names and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be updated per request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameterNameValues
UpdateParameterGroupRequest.Builder parameterNameValues(Consumer<ParameterNameValue.Builder>... parameterNameValues)
An array of parameter names and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be updated per request.
This is a convenience method that creates an instance of theParameterNameValue.Builderavoiding the need to create one manually viaParameterNameValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#parameterNameValues(List.) - Parameters:
parameterNameValues- a consumer that will call methods onParameterNameValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#parameterNameValues(java.util.Collection)
-
overrideConfiguration
UpdateParameterGroupRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateParameterGroupRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-