Class: Aws::CodeArtifact::Types::DomainSummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeArtifact::Types::DomainSummary
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codeartifact/types.rb
 
Overview
Information about a domain, including its name, Amazon Resource Name (ARN), and status. The [ListDomains] operation returns a list of ‘DomainSummary` objects.
[1]: docs.aws.amazon.com/codeartifact/latest/APIReference/API_ListDomains.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the domain.
 - 
  
    
      #created_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A timestamp that contains the date and time the domain was created.
 - 
  
    
      #encryption_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The key used to encrypt the domain.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the domain.
 - 
  
    
      #owner  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The 12-digit account number of the Amazon Web Services account that owns the domain.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A string that contains the status of the domain.
 
Instance Attribute Details
#arn ⇒ String
The ARN of the domain.
      1161 1162 1163 1164 1165 1166 1167 1168 1169 1170  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 1161 class DomainSummary < Struct.new( :name, :owner, :arn, :status, :created_time, :encryption_key) SENSITIVE = [] include Aws::Structure end  | 
  
#created_time ⇒ Time
A timestamp that contains the date and time the domain was created.
      1161 1162 1163 1164 1165 1166 1167 1168 1169 1170  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 1161 class DomainSummary < Struct.new( :name, :owner, :arn, :status, :created_time, :encryption_key) SENSITIVE = [] include Aws::Structure end  | 
  
#encryption_key ⇒ String
The key used to encrypt the domain.
      1161 1162 1163 1164 1165 1166 1167 1168 1169 1170  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 1161 class DomainSummary < Struct.new( :name, :owner, :arn, :status, :created_time, :encryption_key) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of the domain.
      1161 1162 1163 1164 1165 1166 1167 1168 1169 1170  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 1161 class DomainSummary < Struct.new( :name, :owner, :arn, :status, :created_time, :encryption_key) SENSITIVE = [] include Aws::Structure end  | 
  
#owner ⇒ String
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
      1161 1162 1163 1164 1165 1166 1167 1168 1169 1170  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 1161 class DomainSummary < Struct.new( :name, :owner, :arn, :status, :created_time, :encryption_key) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
A string that contains the status of the domain.
      1161 1162 1163 1164 1165 1166 1167 1168 1169 1170  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 1161 class DomainSummary < Struct.new( :name, :owner, :arn, :status, :created_time, :encryption_key) SENSITIVE = [] include Aws::Structure end  |