Class: Aws::SageMaker::Types::SourceAlgorithm

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 SourceAlgorithm data as a hash:

{
  model_data_url: "Url",
  algorithm_name: "ArnOrName", # required
}

Specifies an algorithm that was used to create the model package. The algorithm must be either an algorithm resource in your Amazon SageMaker account or an algorithm in AWS Marketplace that you are subscribed to.

Instance Attribute Summary collapse

Instance Attribute Details

#algorithm_nameString

The name of an algorithm that was used to create the model package. The algorithm must be either an algorithm resource in your Amazon SageMaker account or an algorithm in AWS Marketplace that you are subscribed to.

Returns:

  • (String)


17523
17524
17525
17526
17527
# File 'lib/aws-sdk-sagemaker/types.rb', line 17523

class SourceAlgorithm < Struct.new(
  :model_data_url,
  :algorithm_name)
  include Aws::Structure
end

#model_data_urlString

The Amazon S3 path where the model artifacts, which result from model training, are stored. This path must point to a single ‘gzip` compressed tar archive (`.tar.gz` suffix).

Returns:

  • (String)


17523
17524
17525
17526
17527
# File 'lib/aws-sdk-sagemaker/types.rb', line 17523

class SourceAlgorithm < Struct.new(
  :model_data_url,
  :algorithm_name)
  include Aws::Structure
end