Interface ScanCondition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScanCondition.Builder,ScanCondition>,SdkBuilder<ScanCondition.Builder,ScanCondition>,SdkPojo
- Enclosing class:
- ScanCondition
public static interface ScanCondition.Builder extends SdkPojo, CopyableBuilder<ScanCondition.Builder,ScanCondition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScanCondition.BuildermapEquals(Collection<ScanConditionPair> mapEquals)Represents an mapEqual condition to be applied to a single field when triggering for malware scan.ScanCondition.BuildermapEquals(Consumer<ScanConditionPair.Builder>... mapEquals)Represents an mapEqual condition to be applied to a single field when triggering for malware scan.ScanCondition.BuildermapEquals(ScanConditionPair... mapEquals)Represents an mapEqual condition to be applied to a single field when triggering for malware scan.-
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
-
mapEquals
ScanCondition.Builder mapEquals(Collection<ScanConditionPair> mapEquals)
Represents an mapEqual condition to be applied to a single field when triggering for malware scan.
- Parameters:
mapEquals- Represents an mapEqual condition to be applied to a single field when triggering for malware scan.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mapEquals
ScanCondition.Builder mapEquals(ScanConditionPair... mapEquals)
Represents an mapEqual condition to be applied to a single field when triggering for malware scan.
- Parameters:
mapEquals- Represents an mapEqual condition to be applied to a single field when triggering for malware scan.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mapEquals
ScanCondition.Builder mapEquals(Consumer<ScanConditionPair.Builder>... mapEquals)
Represents an mapEqual condition to be applied to a single field when triggering for malware scan.
This is a convenience method that creates an instance of theScanConditionPair.Builderavoiding the need to create one manually viaScanConditionPair.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#mapEquals(List.) - Parameters:
mapEquals- a consumer that will call methods onScanConditionPair.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#mapEquals(java.util.Collection)
-
-