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

Inherits:
Struct
  • Object
show all
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

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



4388
4389
4390
# File 'lib/aws-sdk-sagemaker/types.rb', line 4388

def unknown
  @unknown
end

#vector_configTypes::VectorConfig

Configuration for your vector collection type.

  • ‘Dimension`: The number of elements in your vector.

^

Returns:



4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
# File 'lib/aws-sdk-sagemaker/types.rb', line 4388

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

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