Interface BlacklistEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BlacklistEntry.Builder,BlacklistEntry>,SdkBuilder<BlacklistEntry.Builder,BlacklistEntry>,SdkPojo
- Enclosing class:
- BlacklistEntry
@Mutable @NotThreadSafe public static interface BlacklistEntry.Builder extends SdkPojo, CopyableBuilder<BlacklistEntry.Builder,BlacklistEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlacklistEntry.Builderdescription(String description)Additional information about the blacklisting event, as provided by the blacklist maintainer.BlacklistEntry.BuilderlistingTime(Instant listingTime)The time when the blacklisting event occurred.BlacklistEntry.BuilderrblName(String rblName)The name of the blacklist that the IP address appears on.-
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
-
rblName
BlacklistEntry.Builder rblName(String rblName)
The name of the blacklist that the IP address appears on.
- Parameters:
rblName- The name of the blacklist that the IP address appears on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
listingTime
BlacklistEntry.Builder listingTime(Instant listingTime)
The time when the blacklisting event occurred.
- Parameters:
listingTime- The time when the blacklisting event occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
BlacklistEntry.Builder description(String description)
Additional information about the blacklisting event, as provided by the blacklist maintainer.
- Parameters:
description- Additional information about the blacklisting event, as provided by the blacklist maintainer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-