Interface CustomValuesConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<CustomValuesConfiguration.Builder,
,CustomValuesConfiguration> SdkBuilder<CustomValuesConfiguration.Builder,
,CustomValuesConfiguration> SdkPojo
- Enclosing class:
CustomValuesConfiguration
public static interface CustomValuesConfiguration.Builder
extends SdkPojo, CopyableBuilder<CustomValuesConfiguration.Builder,CustomValuesConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptioncustomValues
(Consumer<CustomParameterValues.Builder> customValues) Sets the value of the CustomValues property for this object.customValues
(CustomParameterValues customValues) Sets the value of the CustomValues property for this object.includeNullValue
(Boolean includeNullValue) Includes the null value in custom action parameter values.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, sdkFields
-
Method Details
-
includeNullValue
Includes the null value in custom action parameter values.
- Parameters:
includeNullValue
- Includes the null value in custom action parameter values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customValues
Sets the value of the CustomValues property for this object.- Parameters:
customValues
- The new value for the CustomValues property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customValues
default CustomValuesConfiguration.Builder customValues(Consumer<CustomParameterValues.Builder> customValues) Sets the value of the CustomValues property for this object. This is a convenience method that creates an instance of theCustomParameterValues.Builder
avoiding the need to create one manually viaCustomParameterValues.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tocustomValues(CustomParameterValues)
.- Parameters:
customValues
- a consumer that will call methods onCustomParameterValues.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-