Interface ExpectedRoute.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExpectedRoute.Builder,ExpectedRoute>,SdkBuilder<ExpectedRoute.Builder,ExpectedRoute>,SdkPojo
- Enclosing class:
- ExpectedRoute
public static interface ExpectedRoute.Builder extends SdkPojo, CopyableBuilder<ExpectedRoute.Builder,ExpectedRoute>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpectedRoute.BuilderallowedTargets(String... allowedTargets)Information about the allowed targets.ExpectedRoute.BuilderallowedTargets(Collection<String> allowedTargets)Information about the allowed targets.ExpectedRoute.BuildercontributingSubnets(String... contributingSubnets)Information about the contributing subnets.ExpectedRoute.BuildercontributingSubnets(Collection<String> contributingSubnets)Information about the contributing subnets.ExpectedRoute.BuilderipV4Cidr(String ipV4Cidr)Information about the IPv4 CIDR block.ExpectedRoute.BuilderipV6Cidr(String ipV6Cidr)Information about the IPv6 CIDR block.ExpectedRoute.BuilderprefixListId(String prefixListId)Information about the ID of the prefix list for the route.ExpectedRoute.BuilderrouteTableId(String routeTableId)Information about the route table 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
-
ipV4Cidr
ExpectedRoute.Builder ipV4Cidr(String ipV4Cidr)
Information about the IPv4 CIDR block.
- Parameters:
ipV4Cidr- Information about the IPv4 CIDR block.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
prefixListId
ExpectedRoute.Builder prefixListId(String prefixListId)
Information about the ID of the prefix list for the route.
- Parameters:
prefixListId- Information about the ID of the prefix list for the route.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipV6Cidr
ExpectedRoute.Builder ipV6Cidr(String ipV6Cidr)
Information about the IPv6 CIDR block.
- Parameters:
ipV6Cidr- Information about the IPv6 CIDR block.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contributingSubnets
ExpectedRoute.Builder contributingSubnets(Collection<String> contributingSubnets)
Information about the contributing subnets.
- Parameters:
contributingSubnets- Information about the contributing subnets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contributingSubnets
ExpectedRoute.Builder contributingSubnets(String... contributingSubnets)
Information about the contributing subnets.
- Parameters:
contributingSubnets- Information about the contributing subnets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedTargets
ExpectedRoute.Builder allowedTargets(Collection<String> allowedTargets)
Information about the allowed targets.
- Parameters:
allowedTargets- Information about the allowed targets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedTargets
ExpectedRoute.Builder allowedTargets(String... allowedTargets)
Information about the allowed targets.
- Parameters:
allowedTargets- Information about the allowed targets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
routeTableId
ExpectedRoute.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.
-
-