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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-directoryservice/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)


2954
2955
2956
2957
2958
2959
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 2954

class IpRoute < Struct.new(
  :cidr_ip,
  :description)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

Description of the address block.

Returns:

  • (String)


2954
2955
2956
2957
2958
2959
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 2954

class IpRoute < Struct.new(
  :cidr_ip,
  :description)
  SENSITIVE = []
  include Aws::Structure
end