Interface UpdateParameterGroupRequest.Builder

    • 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 the ParameterNameValue.Builder avoiding the need to create one manually via ParameterNameValue.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #parameterNameValues(List).

        Parameters:
        parameterNameValues - a consumer that will call methods on ParameterNameValue.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #parameterNameValues(java.util.Collection)