Class: Aws::CodeArtifact::Types::PackageVersionOrigin
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CodeArtifact::Types::PackageVersionOrigin
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeartifact/types.rb
Overview
Information about how a package version was added to a repository.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #domain_entry_point  ⇒ Types::DomainEntryPoint 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A [DomainEntryPoint] object that contains information about from which repository or external connection the package version was added to the domain. 
- 
  
    
      #origin_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Describes how the package version was originally added to the domain. 
Instance Attribute Details
#domain_entry_point ⇒ Types::DomainEntryPoint
A [DomainEntryPoint] object that contains information about from which repository or external connection the package version was added to the domain.
[1]: docs.aws.amazon.com/codeartifact/latest/APIReference/API_DomainEntryPoint.html
| 3429 3430 3431 3432 3433 3434 | # File 'lib/aws-sdk-codeartifact/types.rb', line 3429 class PackageVersionOrigin < Struct.new( :domain_entry_point, :origin_type) SENSITIVE = [] include Aws::Structure end | 
#origin_type ⇒ String
Describes how the package version was originally added to the domain. An ‘INTERNAL` origin type means the package version was published directly to a repository in the domain. An `EXTERNAL` origin type means the package version was ingested from an external connection.
| 3429 3430 3431 3432 3433 3434 | # File 'lib/aws-sdk-codeartifact/types.rb', line 3429 class PackageVersionOrigin < Struct.new( :domain_entry_point, :origin_type) SENSITIVE = [] include Aws::Structure end |