Class: Aws::SageMaker::Types::OutputConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::OutputConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass OutputConfig data as a hash:
{
s3_output_location: "S3Uri", # required
target_device: "lambda", # required, accepts lambda, ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, ml_inf1, jetson_tx1, jetson_tx2, jetson_nano, rasp3b, deeplens, rk3399, rk3288, aisage, sbe_c, qcs605, qcs603
}
Contains information about the output location for the compiled model and the device (target) that the model runs on.
Instance Attribute Summary collapse
-
#s3_output_location ⇒ String
Identifies the S3 path where you want Amazon SageMaker to store the model artifacts.
-
#target_device ⇒ String
Identifies the device that you want to run your model on after it has been compiled.
Instance Attribute Details
#s3_output_location ⇒ String
Identifies the S3 path where you want Amazon SageMaker to store the model artifacts. For example, s3://bucket-name/key-name-prefix.
15615 15616 15617 15618 15619 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 15615 class OutputConfig < Struct.new( :s3_output_location, :target_device) include Aws::Structure end |
#target_device ⇒ String
Identifies the device that you want to run your model on after it has been compiled. For example: ml_c5.
15615 15616 15617 15618 15619 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 15615 class OutputConfig < Struct.new( :s3_output_location, :target_device) include Aws::Structure end |