Class: Aws::DirectoryService::Types::IpRoute
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::IpRoute
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directoryservice/types.rb
Overview
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 using CIDR format, for example 10.0.0.0/24.
-
#description ⇒ String
Description of the address block.
Instance Attribute Details
#cidr_ip ⇒ String
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.
3018 3019 3020 3021 3022 3023 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 3018 class IpRoute < Struct.new( :cidr_ip, :description) SENSITIVE = [] include Aws::Structure end |