Class: Aws::CodeArtifact::Types::GetAssociatedPackageGroupResult
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CodeArtifact::Types::GetAssociatedPackageGroupResult
 
- Defined in:
- gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #association_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Describes the strength of the association between the package and package group. 
- 
  
    
      #package_group  ⇒ Types::PackageGroupDescription 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The package group that is associated with the requested package. 
Instance Attribute Details
#association_type ⇒ String
Describes the strength of the association between the package and package group. A strong match is also known as an exact match, and a weak match is known as a relative match.
| 1495 1496 1497 1498 1499 1500 | # File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 1495 class GetAssociatedPackageGroupResult < Struct.new( :package_group, :association_type) SENSITIVE = [] include Aws::Structure end | 
#package_group ⇒ Types::PackageGroupDescription
The package group that is associated with the requested package.
| 1495 1496 1497 1498 1499 1500 | # File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 1495 class GetAssociatedPackageGroupResult < Struct.new( :package_group, :association_type) SENSITIVE = [] include Aws::Structure end |