Class: Aws::CleanRooms::Types::AnalysisSourceMetadata
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CleanRooms::Types::AnalysisSourceMetadata
 
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
    Note:
    
  
AnalysisSourceMetadata is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AnalysisSourceMetadata corresponding to the set member.
The analysis source metadata.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #artifacts  ⇒ Types::AnalysisTemplateArtifactMetadata 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The artifacts of the analysis source metadata. 
- 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute unknown. 
Instance Attribute Details
#artifacts ⇒ Types::AnalysisTemplateArtifactMetadata
The artifacts of the analysis source metadata.
| 600 601 602 603 604 605 606 607 608 609 | # File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 600 class AnalysisSourceMetadata < Struct.new( :artifacts, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Artifacts < AnalysisSourceMetadata; end class Unknown < AnalysisSourceMetadata; end end | 
#unknown ⇒ Object
Returns the value of attribute unknown
| 600 601 602 | # File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 600 def unknown @unknown end |