Class: Aws::SageMaker::Types::OutputConfig

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

{
  s3_output_location: "S3Uri", # required
  target_device: "ml_m4", # required, accepts ml_m4, ml_m5, ml_c4, ml_c5, ml_p2, ml_p3, jetson_tx1, jetson_tx2, rasp3b, deeplens, rk3399, rk3288
}

Contains information about the output location for the compiled model and the device (target) that the model runs on.

Instance Attribute Summary collapse

Instance Attribute Details

#s3_output_locationString

Identifies the S3 path where you want Amazon SageMaker to store the model artifacts. For example, s3://bucket-name/key-name-prefix.

Returns:

  • (String)


8703
8704
8705
8706
8707
# File 'lib/aws-sdk-sagemaker/types.rb', line 8703

class OutputConfig < Struct.new(
  :s3_output_location,
  :target_device)
  include Aws::Structure
end

#target_deviceString

Identifies the device that you want to run your model on after it has been compiled. For example: ml_c5.

Returns:

  • (String)


8703
8704
8705
8706
8707
# File 'lib/aws-sdk-sagemaker/types.rb', line 8703

class OutputConfig < Struct.new(
  :s3_output_location,
  :target_device)
  include Aws::Structure
end