Class: Aws::DirectoryService::Types::IpRoute
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::IpRoute
- Defined in:
- gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb
Overview
Contains the IP address block. This is often the address block of the DNS server used for your self-managed domain.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cidr_ip ⇒ String
IP address block in CIDR format, such as 10.0.0.0/24.
-
#cidr_ipv_6 ⇒ String
IPv6 address block in CIDR format, such as 2001:db8::/32.
-
#description ⇒ String
Description of the address block.
Instance Attribute Details
#cidr_ip ⇒ String
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.
3885 3886 3887 3888 3889 3890 3891 |
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 3885 class IpRoute < Struct.new( :cidr_ip, :cidr_ipv_6, :description) SENSITIVE = [] include Aws::Structure end |
#cidr_ipv_6 ⇒ String
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.
3885 3886 3887 3888 3889 3890 3891 |
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 3885 class IpRoute < Struct.new( :cidr_ip, :cidr_ipv_6, :description) SENSITIVE = [] include Aws::Structure end |