Class: Aws::SageMaker::Types::CollectionConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/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

Unknown, VectorConfig

Defined Under Namespace

Classes: Unknown, VectorConfig

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4658
4659
4660
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 4658

def unknown
  @unknown
end

#vector_configTypes::VectorConfig

Configuration for your vector collection type.

  • Dimension: The number of elements in your vector.

^

Returns:



4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 4658

class CollectionConfig < Struct.new(
  :vector_config,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class VectorConfig < CollectionConfig; end
  class Unknown < CollectionConfig; end
end