Interface IpRoute.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<IpRoute.Builder,
,IpRoute> SdkBuilder<IpRoute.Builder,
,IpRoute> SdkPojo
- Enclosing class:
IpRoute
@Mutable
@NotThreadSafe
public static interface IpRoute.Builder
extends SdkPojo, CopyableBuilder<IpRoute.Builder,IpRoute>
-
Method Summary
Modifier and TypeMethodDescriptionIP address block in CIDR format, such as 10.0.0.0/24.IPv6 address block in CIDR format, such as 2001:db8::/32.description
(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, sdkFieldNameToField, sdkFields
-
Method Details
-
cidrIp
IP address block in CIDR format, such as 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 in CIDR format, such as 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.
-
cidrIpv6
IPv6 address block in CIDR format, such as 2001:db8::/32. This is often the address block of the DNS server used for your self-managed domain. For a single IPv6 address, use a CIDR address block with /128. For example, 2001:db8::1/128.
- Parameters:
cidrIpv6
- IPv6 address block in CIDR format, such as 2001:db8::/32. This is often the address block of the DNS server used for your self-managed domain. For a single IPv6 address, use a CIDR address block with /128. For example, 2001:db8::1/128.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
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.
-