Interface ScanResourceCriteria.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScanResourceCriteria.Builder,ScanResourceCriteria>,SdkBuilder<ScanResourceCriteria.Builder,ScanResourceCriteria>,SdkPojo
- Enclosing class:
- ScanResourceCriteria
public static interface ScanResourceCriteria.Builder extends SdkPojo, CopyableBuilder<ScanResourceCriteria.Builder,ScanResourceCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScanResourceCriteria.Builderexclude(Map<ScanCriterionKey,ScanCondition> exclude)Represents condition that when matched will prevent a malware scan for a certain resource.ScanResourceCriteria.BuilderexcludeWithStrings(Map<String,ScanCondition> exclude)Represents condition that when matched will prevent a malware scan for a certain resource.ScanResourceCriteria.Builderinclude(Map<ScanCriterionKey,ScanCondition> include)Represents condition that when matched will allow a malware scan for a certain resource.ScanResourceCriteria.BuilderincludeWithStrings(Map<String,ScanCondition> include)Represents condition that when matched will allow a malware scan for a certain resource.-
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
-
includeWithStrings
ScanResourceCriteria.Builder includeWithStrings(Map<String,ScanCondition> include)
Represents condition that when matched will allow a malware scan for a certain resource.
- Parameters:
include- Represents condition that when matched will allow a malware scan for a certain resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
include
ScanResourceCriteria.Builder include(Map<ScanCriterionKey,ScanCondition> include)
Represents condition that when matched will allow a malware scan for a certain resource.
- Parameters:
include- Represents condition that when matched will allow a malware scan for a certain resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
excludeWithStrings
ScanResourceCriteria.Builder excludeWithStrings(Map<String,ScanCondition> exclude)
Represents condition that when matched will prevent a malware scan for a certain resource.
- Parameters:
exclude- Represents condition that when matched will prevent a malware scan for a certain resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exclude
ScanResourceCriteria.Builder exclude(Map<ScanCriterionKey,ScanCondition> exclude)
Represents condition that when matched will prevent a malware scan for a certain resource.
- Parameters:
exclude- Represents condition that when matched will prevent a malware scan for a certain resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-