Interface NetworkFirewallBlackHoleRouteDetectedViolation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NetworkFirewallBlackHoleRouteDetectedViolation.Builder,NetworkFirewallBlackHoleRouteDetectedViolation>,SdkBuilder<NetworkFirewallBlackHoleRouteDetectedViolation.Builder,NetworkFirewallBlackHoleRouteDetectedViolation>,SdkPojo
- Enclosing class:
- NetworkFirewallBlackHoleRouteDetectedViolation
public static interface NetworkFirewallBlackHoleRouteDetectedViolation.Builder extends SdkPojo, CopyableBuilder<NetworkFirewallBlackHoleRouteDetectedViolation.Builder,NetworkFirewallBlackHoleRouteDetectedViolation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetworkFirewallBlackHoleRouteDetectedViolation.BuilderrouteTableId(String routeTableId)Information about the route table ID.NetworkFirewallBlackHoleRouteDetectedViolation.BuilderviolatingRoutes(Collection<Route> violatingRoutes)Information about the route or routes that are in violation.NetworkFirewallBlackHoleRouteDetectedViolation.BuilderviolatingRoutes(Consumer<Route.Builder>... violatingRoutes)Information about the route or routes that are in violation.NetworkFirewallBlackHoleRouteDetectedViolation.BuilderviolatingRoutes(Route... violatingRoutes)Information about the route or routes that are in violation.NetworkFirewallBlackHoleRouteDetectedViolation.BuilderviolationTarget(String violationTarget)The subnet that has an inactive state.NetworkFirewallBlackHoleRouteDetectedViolation.BuildervpcId(String vpcId)Information about the VPC ID.-
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
-
violationTarget
NetworkFirewallBlackHoleRouteDetectedViolation.Builder violationTarget(String violationTarget)
The subnet that has an inactive state.
- Parameters:
violationTarget- The subnet that has an inactive state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
routeTableId
NetworkFirewallBlackHoleRouteDetectedViolation.Builder routeTableId(String routeTableId)
Information about the route table ID.
- Parameters:
routeTableId- Information about the route table ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcId
NetworkFirewallBlackHoleRouteDetectedViolation.Builder vpcId(String vpcId)
Information about the VPC ID.
- Parameters:
vpcId- Information about the VPC ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
violatingRoutes
NetworkFirewallBlackHoleRouteDetectedViolation.Builder violatingRoutes(Collection<Route> violatingRoutes)
Information about the route or routes that are in violation.
- Parameters:
violatingRoutes- Information about the route or routes that are in violation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
violatingRoutes
NetworkFirewallBlackHoleRouteDetectedViolation.Builder violatingRoutes(Route... violatingRoutes)
Information about the route or routes that are in violation.
- Parameters:
violatingRoutes- Information about the route or routes that are in violation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
violatingRoutes
NetworkFirewallBlackHoleRouteDetectedViolation.Builder violatingRoutes(Consumer<Route.Builder>... violatingRoutes)
Information about the route or routes that are in violation.
This is a convenience method that creates an instance of theRoute.Builderavoiding the need to create one manually viaRoute.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#violatingRoutes(List.) - Parameters:
violatingRoutes- a consumer that will call methods onRoute.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#violatingRoutes(java.util.Collection)
-
-