Class: Aws::SageMaker::Types::SourceAlgorithmSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::SourceAlgorithmSpecification
- Defined in:
- gems/aws-sdk-sagemaker/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.
Constant Summary collapse
- SENSITIVE =
[]
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.
30496 30497 30498 30499 30500 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 30496 class SourceAlgorithmSpecification < Struct.new( :source_algorithms) SENSITIVE = [] include Aws::Structure end |