Interface IntegerListConfigurationOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IntegerListConfigurationOptions.Builder,IntegerListConfigurationOptions>,SdkBuilder<IntegerListConfigurationOptions.Builder,IntegerListConfigurationOptions>,SdkPojo
- Enclosing class:
- IntegerListConfigurationOptions
public static interface IntegerListConfigurationOptions.Builder extends SdkPojo, CopyableBuilder<IntegerListConfigurationOptions.Builder,IntegerListConfigurationOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegerListConfigurationOptions.BuilderdefaultValue(Integer... defaultValue)The Security Hub default value for a control parameter that is a list of integers.IntegerListConfigurationOptions.BuilderdefaultValue(Collection<Integer> defaultValue)The Security Hub default value for a control parameter that is a list of integers.IntegerListConfigurationOptions.Buildermax(Integer max)The maximum valid value for a control parameter that is a list of integers.IntegerListConfigurationOptions.BuildermaxItems(Integer maxItems)The maximum number of list items that an interger list control parameter can accept.IntegerListConfigurationOptions.Buildermin(Integer min)The minimum valid value for a control parameter that is a list of integers.-
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 Detail
-
defaultValue
IntegerListConfigurationOptions.Builder defaultValue(Collection<Integer> defaultValue)
The Security Hub default value for a control parameter that is a list of integers.
- Parameters:
defaultValue- The Security Hub default value for a control parameter that is a list of integers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultValue
IntegerListConfigurationOptions.Builder defaultValue(Integer... defaultValue)
The Security Hub default value for a control parameter that is a list of integers.
- Parameters:
defaultValue- The Security Hub default value for a control parameter that is a list of integers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
min
IntegerListConfigurationOptions.Builder min(Integer min)
The minimum valid value for a control parameter that is a list of integers.
- Parameters:
min- The minimum valid value for a control parameter that is a list of integers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
max
IntegerListConfigurationOptions.Builder max(Integer max)
The maximum valid value for a control parameter that is a list of integers.
- Parameters:
max- The maximum valid value for a control parameter that is a list of integers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxItems
IntegerListConfigurationOptions.Builder maxItems(Integer maxItems)
The maximum number of list items that an interger list control parameter can accept.
- Parameters:
maxItems- The maximum number of list items that an interger list control parameter can accept.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-