Interface DeleteNetworkAclEntriesAction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DeleteNetworkAclEntriesAction.Builder,DeleteNetworkAclEntriesAction>,SdkBuilder<DeleteNetworkAclEntriesAction.Builder,DeleteNetworkAclEntriesAction>,SdkPojo
- Enclosing class:
- DeleteNetworkAclEntriesAction
public static interface DeleteNetworkAclEntriesAction.Builder extends SdkPojo, CopyableBuilder<DeleteNetworkAclEntriesAction.Builder,DeleteNetworkAclEntriesAction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DeleteNetworkAclEntriesAction.Builderdescription(String description)Brief description of this remediation action.DeleteNetworkAclEntriesAction.BuilderfmsCanRemediate(Boolean fmsCanRemediate)Indicates whether it is possible for Firewall Manager to perform this remediation action.DeleteNetworkAclEntriesAction.BuildernetworkAclEntriesToBeDeleted(Collection<EntryDescription> networkAclEntriesToBeDeleted)Lists the entries that the remediation action would delete.DeleteNetworkAclEntriesAction.BuildernetworkAclEntriesToBeDeleted(Consumer<EntryDescription.Builder>... networkAclEntriesToBeDeleted)Lists the entries that the remediation action would delete.DeleteNetworkAclEntriesAction.BuildernetworkAclEntriesToBeDeleted(EntryDescription... networkAclEntriesToBeDeleted)Lists the entries that the remediation action would delete.default DeleteNetworkAclEntriesAction.BuildernetworkAclId(Consumer<ActionTarget.Builder> networkAclId)The network ACL that's associated with the remediation action.DeleteNetworkAclEntriesAction.BuildernetworkAclId(ActionTarget networkAclId)The network ACL that's associated with the remediation action.-
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
-
description
DeleteNetworkAclEntriesAction.Builder description(String description)
Brief description of this remediation action.
- Parameters:
description- Brief description of this remediation action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkAclId
DeleteNetworkAclEntriesAction.Builder networkAclId(ActionTarget networkAclId)
The network ACL that's associated with the remediation action.
- Parameters:
networkAclId- The network ACL that's associated with the remediation action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkAclId
default DeleteNetworkAclEntriesAction.Builder networkAclId(Consumer<ActionTarget.Builder> networkAclId)
The network ACL that's associated with the remediation action.
This is a convenience method that creates an instance of theActionTarget.Builderavoiding the need to create one manually viaActionTarget.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tonetworkAclId(ActionTarget).- Parameters:
networkAclId- a consumer that will call methods onActionTarget.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
networkAclId(ActionTarget)
-
networkAclEntriesToBeDeleted
DeleteNetworkAclEntriesAction.Builder networkAclEntriesToBeDeleted(Collection<EntryDescription> networkAclEntriesToBeDeleted)
Lists the entries that the remediation action would delete.
- Parameters:
networkAclEntriesToBeDeleted- Lists the entries that the remediation action would delete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkAclEntriesToBeDeleted
DeleteNetworkAclEntriesAction.Builder networkAclEntriesToBeDeleted(EntryDescription... networkAclEntriesToBeDeleted)
Lists the entries that the remediation action would delete.
- Parameters:
networkAclEntriesToBeDeleted- Lists the entries that the remediation action would delete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkAclEntriesToBeDeleted
DeleteNetworkAclEntriesAction.Builder networkAclEntriesToBeDeleted(Consumer<EntryDescription.Builder>... networkAclEntriesToBeDeleted)
Lists the entries that the remediation action would delete.
This is a convenience method that creates an instance of theEntryDescription.Builderavoiding the need to create one manually viaEntryDescription.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#networkAclEntriesToBeDeleted(List.) - Parameters:
networkAclEntriesToBeDeleted- a consumer that will call methods onEntryDescription.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#networkAclEntriesToBeDeleted(java.util.Collection)
-
fmsCanRemediate
DeleteNetworkAclEntriesAction.Builder fmsCanRemediate(Boolean fmsCanRemediate)
Indicates whether it is possible for Firewall Manager to perform this remediation action. A false value indicates that auto remediation is disabled or Firewall Manager is unable to perform the action due to a conflict of some kind.
- Parameters:
fmsCanRemediate- Indicates whether it is possible for Firewall Manager to perform this remediation action. A false value indicates that auto remediation is disabled or Firewall Manager is unable to perform the action due to a conflict of some kind.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-