Interface CustomValuesConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomValuesConfiguration.Builder,CustomValuesConfiguration>,SdkBuilder<CustomValuesConfiguration.Builder,CustomValuesConfiguration>,SdkPojo
- Enclosing class:
- CustomValuesConfiguration
@Mutable @NotThreadSafe public static interface CustomValuesConfiguration.Builder extends SdkPojo, CopyableBuilder<CustomValuesConfiguration.Builder,CustomValuesConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CustomValuesConfiguration.BuildercustomValues(Consumer<CustomParameterValues.Builder> customValues)Sets the value of the CustomValues property for this object.CustomValuesConfiguration.BuildercustomValues(CustomParameterValues customValues)Sets the value of the CustomValues property for this object.CustomValuesConfiguration.BuilderincludeNullValue(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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
includeNullValue
CustomValuesConfiguration.Builder includeNullValue(Boolean 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
CustomValuesConfiguration.Builder customValues(CustomParameterValues 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.Builderavoiding the need to create one manually viaCustomParameterValues.builder().When the
Consumercompletes,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:
customValues(CustomParameterValues)
-
-