Class: Aws::SageMaker::Types::SourceAlgorithmSpecification

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

When making an API call, you may pass SourceAlgorithmSpecification data as a hash:

{
  source_algorithms: [ # required
    {
      model_data_url: "Url",
      algorithm_name: "ArnOrName", # required
    },
  ],
}

A list of algorithms that were used to create a model package.

Instance Attribute Summary collapse

Instance Attribute Details

#source_algorithmsArray<Types::SourceAlgorithm>

A list of the algorithms that were used to create a model package.

Returns:



9882
9883
9884
9885
# File 'lib/aws-sdk-sagemaker/types.rb', line 9882

class SourceAlgorithmSpecification < Struct.new(
  :source_algorithms)
  include Aws::Structure
end