Class: Aws::DirectoryService::Types::IpRoute

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#cidr_ipString

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:

  • (String)


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

#descriptionString

Description of the address block.

Returns:

  • (String)


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