Class: Aws::CodeArtifact::Types::PackageDescription
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeArtifact::Types::PackageDescription
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codeartifact/types.rb
 
Overview
Details about a package.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #format  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A format that specifies the type of the package.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the package.
 - 
  
    
      #namespace  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The namespace of the package.
 - 
  
    
      #origin_configuration  ⇒ Types::PackageOriginConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The package origin configuration for the package.
 
Instance Attribute Details
#format ⇒ String
A format that specifies the type of the package.
      2327 2328 2329 2330 2331 2332 2333 2334  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 2327 class PackageDescription < Struct.new( :format, :namespace, :name, :origin_configuration) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of the package.
      2327 2328 2329 2330 2331 2332 2333 2334  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 2327 class PackageDescription < Struct.new( :format, :namespace, :name, :origin_configuration) SENSITIVE = [] include Aws::Structure end  | 
  
#namespace ⇒ String
The namespace of the package. The package component that specifies its namespace depends on its type. For example:
- 
The namespace of a Maven package is its ‘groupId`.
 - 
The namespace of an npm package is its ‘scope`.
 - 
Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace.
 - 
The namespace of a generic package is its ‘namespace`.
 
      2327 2328 2329 2330 2331 2332 2333 2334  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 2327 class PackageDescription < Struct.new( :format, :namespace, :name, :origin_configuration) SENSITIVE = [] include Aws::Structure end  | 
  
#origin_configuration ⇒ Types::PackageOriginConfiguration
The package origin configuration for the package.
      2327 2328 2329 2330 2331 2332 2333 2334  | 
    
      # File 'lib/aws-sdk-codeartifact/types.rb', line 2327 class PackageDescription < Struct.new( :format, :namespace, :name, :origin_configuration) SENSITIVE = [] include Aws::Structure end  |