Class: Aws::SageMaker::Types::CollectionConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::CollectionConfig
 
 
- Includes:
 - Aws::Structure, Aws::Structure::Union
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
    Note:
    
  
  CollectionConfig is a union - when making an API calls you must set exactly one of the members.
    Note:
    
  
CollectionConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CollectionConfig corresponding to the set member.
Configuration for your collection.
Direct Known Subclasses
Defined Under Namespace
Classes: Unknown, VectorConfig
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 - 
  
    
      #vector_config  ⇒ Types::VectorConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Configuration for your vector collection type.
 
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
      4934 4935 4936  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 4934 def unknown @unknown end  | 
  
#vector_config ⇒ Types::VectorConfig
Configuration for your vector collection type.
- 
‘Dimension`: The number of elements in your vector.
 
^
      4934 4935 4936 4937 4938 4939 4940 4941 4942 4943  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 4934 class CollectionConfig < Struct.new( :vector_config, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class VectorConfig < CollectionConfig; end class Unknown < CollectionConfig; end end  |