Class: Aws::RDS::Types::DomainMembership
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::DomainMembership
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
An Active Directory Domain membership record associated with the DB instance or cluster.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #auth_secret_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ARN for the Secrets Manager secret with the credentials for the user that’s a member of the domain. 
- 
  
    
      #dns_ips  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The IPv4 DNS IP addresses of the primary and secondary Active Directory domain controllers. 
- 
  
    
      #domain  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The identifier of the Active Directory Domain. 
- 
  
    
      #fqdn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The fully qualified domain name (FQDN) of the Active Directory Domain. 
- 
  
    
      #iam_role_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the IAM role used when making API calls to the Directory Service. 
- 
  
    
      #ou  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Active Directory organizational unit for the DB instance or cluster. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of the Active Directory Domain membership for the DB instance or cluster. 
Instance Attribute Details
#auth_secret_arn ⇒ String
The ARN for the Secrets Manager secret with the credentials for the user that’s a member of the domain.
| 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 | # File 'lib/aws-sdk-rds/types.rb', line 15065 class DomainMembership < Struct.new( :domain, :status, :fqdn, :iam_role_name, :ou, :auth_secret_arn, :dns_ips) SENSITIVE = [] include Aws::Structure end | 
#dns_ips ⇒ Array<String>
The IPv4 DNS IP addresses of the primary and secondary Active Directory domain controllers.
| 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 | # File 'lib/aws-sdk-rds/types.rb', line 15065 class DomainMembership < Struct.new( :domain, :status, :fqdn, :iam_role_name, :ou, :auth_secret_arn, :dns_ips) SENSITIVE = [] include Aws::Structure end | 
#domain ⇒ String
The identifier of the Active Directory Domain.
| 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 | # File 'lib/aws-sdk-rds/types.rb', line 15065 class DomainMembership < Struct.new( :domain, :status, :fqdn, :iam_role_name, :ou, :auth_secret_arn, :dns_ips) SENSITIVE = [] include Aws::Structure end | 
#fqdn ⇒ String
The fully qualified domain name (FQDN) of the Active Directory Domain.
| 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 | # File 'lib/aws-sdk-rds/types.rb', line 15065 class DomainMembership < Struct.new( :domain, :status, :fqdn, :iam_role_name, :ou, :auth_secret_arn, :dns_ips) SENSITIVE = [] include Aws::Structure end | 
#iam_role_name ⇒ String
The name of the IAM role used when making API calls to the Directory Service.
| 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 | # File 'lib/aws-sdk-rds/types.rb', line 15065 class DomainMembership < Struct.new( :domain, :status, :fqdn, :iam_role_name, :ou, :auth_secret_arn, :dns_ips) SENSITIVE = [] include Aws::Structure end | 
#ou ⇒ String
The Active Directory organizational unit for the DB instance or cluster.
| 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 | # File 'lib/aws-sdk-rds/types.rb', line 15065 class DomainMembership < Struct.new( :domain, :status, :fqdn, :iam_role_name, :ou, :auth_secret_arn, :dns_ips) SENSITIVE = [] include Aws::Structure end | 
#status ⇒ String
The status of the Active Directory Domain membership for the DB instance or cluster. Values include ‘joined`, `pending-join`, `failed`, and so on.
| 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 | # File 'lib/aws-sdk-rds/types.rb', line 15065 class DomainMembership < Struct.new( :domain, :status, :fqdn, :iam_role_name, :ou, :auth_secret_arn, :dns_ips) SENSITIVE = [] include Aws::Structure end |