Class: Aws::CodeArtifact::Types::PackageGroupReference
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CodeArtifact::Types::PackageGroupReference
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeartifact/types.rb
Overview
Information about the identifiers of a package group.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ARN of the package group. 
- 
  
    
      #pattern  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The pattern of the package group. 
Instance Attribute Details
#arn ⇒ String
The ARN of the package group.
| 3128 3129 3130 3131 3132 3133 | # File 'lib/aws-sdk-codeartifact/types.rb', line 3128 class PackageGroupReference < Struct.new( :arn, :pattern) SENSITIVE = [] include Aws::Structure end | 
#pattern ⇒ String
The pattern of the package group. The pattern determines which packages are associated with the package group, and is also the identifier of the package group.
| 3128 3129 3130 3131 3132 3133 | # File 'lib/aws-sdk-codeartifact/types.rb', line 3128 class PackageGroupReference < Struct.new( :arn, :pattern) SENSITIVE = [] include Aws::Structure end |