Interface IpRoute.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IpRoute.Builder,IpRoute>,SdkBuilder<IpRoute.Builder,IpRoute>,SdkPojo
- Enclosing class:
- IpRoute
public static interface IpRoute.Builder extends SdkPojo, CopyableBuilder<IpRoute.Builder,IpRoute>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IpRoute.BuildercidrIp(String cidrIp)IP address block using CIDR format, for example 10.0.0.0/24.IpRoute.Builderdescription(String description)Description of the address block.-
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
-
cidrIp
IpRoute.Builder cidrIp(String cidrIp)
IP address block using CIDR format, for example 10.0.0.0/24. This is often the address block of the DNS server used for your self-managed domain. For a single IP address use a CIDR address block with /32. For example 10.0.0.0/32.
- Parameters:
cidrIp- IP address block using CIDR format, for example 10.0.0.0/24. This is often the address block of the DNS server used for your self-managed domain. For a single IP address use a CIDR address block with /32. For example 10.0.0.0/32.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
IpRoute.Builder description(String description)
Description of the address block.
- Parameters:
description- Description of the address block.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-