Class: Aws::DirectoryService::Types::ConditionalForwarder
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::ConditionalForwarder
- Defined in:
- gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb
Overview
Points to a remote domain with which you are setting up a trust relationship. Conditional forwarders are required in order to set up a trust relationship with another domain.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dns_ip_addrs ⇒ Array<String>
The IP addresses of the remote DNS server associated with RemoteDomainName.
-
#remote_domain_name ⇒ String
The fully qualified domain name (FQDN) of the remote domains pointed to by the conditional forwarder.
-
#replication_scope ⇒ String
The replication scope of the conditional forwarder.
Instance Attribute Details
#dns_ip_addrs ⇒ Array<String>
The IP addresses of the remote DNS server associated with RemoteDomainName. This is the IP address of the DNS server that your conditional forwarder points to.
840 841 842 843 844 845 846 |
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 840 class ConditionalForwarder < Struct.new( :remote_domain_name, :dns_ip_addrs, :replication_scope) SENSITIVE = [] include Aws::Structure end |
#remote_domain_name ⇒ String
The fully qualified domain name (FQDN) of the remote domains pointed to by the conditional forwarder.
840 841 842 843 844 845 846 |
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 840 class ConditionalForwarder < Struct.new( :remote_domain_name, :dns_ip_addrs, :replication_scope) SENSITIVE = [] include Aws::Structure end |
#replication_scope ⇒ String
The replication scope of the conditional forwarder. The only allowed
value is Domain
, which will replicate the conditional forwarder to
all of the domain controllers for your Amazon Web Services
directory.
840 841 842 843 844 845 846 |
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 840 class ConditionalForwarder < Struct.new( :remote_domain_name, :dns_ip_addrs, :replication_scope) SENSITIVE = [] include Aws::Structure end |