Class: Aws::SageMaker::Types::SourceAlgorithmSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::SourceAlgorithmSpecification
- 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
-
#source_algorithms ⇒ Array<Types::SourceAlgorithm>
A list of the algorithms that were used to create a model package.
Instance Attribute Details
#source_algorithms ⇒ Array<Types::SourceAlgorithm>
A list of the algorithms that were used to create a model package.
17549 17550 17551 17552 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 17549 class SourceAlgorithmSpecification < Struct.new( :source_algorithms) include Aws::Structure end |