Class: Aws::CodeArtifact::Types::RepositorySummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeArtifact::Types::RepositorySummary
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codeartifact/types.rb
 
Overview
Details about a repository, including its Amazon Resource Name (ARN), description, and domain information. The [ListRepositories] operation returns a list of `RepositorySummary` objects.
[1]: docs.aws.amazon.com/codeartifact/latest/APIReference/API_ListRepositories.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #administrator_account  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Web Services account ID that manages the repository.
 - 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the repository.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The description of the repository.
 - 
  
    
      #domain_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the domain that contains the repository.
 - 
  
    
      #domain_owner  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The 12-digit account number of the Amazon Web Services account that owns the domain.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the repository.
 
Instance Attribute Details
#administrator_account ⇒ String
The Amazon Web Services account ID that manages the repository.
      2833 2834 2835 2836 2837 2838 2839 2840 2841 2842  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 2833 class RepositorySummary < Struct.new( :name, :administrator_account, :domain_name, :domain_owner, :arn, :description) SENSITIVE = [] include Aws::Structure end  | 
  
#arn ⇒ String
The ARN of the repository.
      2833 2834 2835 2836 2837 2838 2839 2840 2841 2842  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 2833 class RepositorySummary < Struct.new( :name, :administrator_account, :domain_name, :domain_owner, :arn, :description) SENSITIVE = [] include Aws::Structure end  | 
  
#description ⇒ String
The description of the repository.
      2833 2834 2835 2836 2837 2838 2839 2840 2841 2842  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 2833 class RepositorySummary < Struct.new( :name, :administrator_account, :domain_name, :domain_owner, :arn, :description) SENSITIVE = [] include Aws::Structure end  | 
  
#domain_name ⇒ String
The name of the domain that contains the repository.
      2833 2834 2835 2836 2837 2838 2839 2840 2841 2842  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 2833 class RepositorySummary < Struct.new( :name, :administrator_account, :domain_name, :domain_owner, :arn, :description) SENSITIVE = [] include Aws::Structure end  | 
  
#domain_owner ⇒ String
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
      2833 2834 2835 2836 2837 2838 2839 2840 2841 2842  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 2833 class RepositorySummary < Struct.new( :name, :administrator_account, :domain_name, :domain_owner, :arn, :description) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of the repository.
      2833 2834 2835 2836 2837 2838 2839 2840 2841 2842  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 2833 class RepositorySummary < Struct.new( :name, :administrator_account, :domain_name, :domain_owner, :arn, :description) SENSITIVE = [] include Aws::Structure end  |