Class: Aws::SageMaker::Types::ProcessingOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ProcessingOutput
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
When making an API call, you may pass ProcessingOutput data as a hash:
{
output_name: "String", # required
s3_output: {
s3_uri: "S3Uri", # required
local_path: "ProcessingLocalPath", # required
s3_upload_mode: "Continuous", # required, accepts Continuous, EndOfJob
},
feature_store_output: {
feature_group_name: "FeatureGroupName", # required
},
app_managed: false,
}
Describes the results of a processing job. The processing output must
specify exactly one of either S3Output
or FeatureStoreOutput
types.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_managed ⇒ Boolean
When
True
, output operations such as data upload are managed natively by the processing job application. -
#feature_store_output ⇒ Types::ProcessingFeatureStoreOutput
Configuration for processing job outputs in Amazon SageMaker Feature Store.
-
#output_name ⇒ String
The name for the processing job output.
-
#s3_output ⇒ Types::ProcessingS3Output
Configuration for processing job outputs in Amazon S3.
Instance Attribute Details
#app_managed ⇒ Boolean
When True
, output operations such as data upload are managed
natively by the processing job application. When False
(default),
output operations are managed by Amazon SageMaker.
33393 33394 33395 33396 33397 33398 33399 33400 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 33393 class ProcessingOutput < Struct.new( :output_name, :s3_output, :feature_store_output, :app_managed) SENSITIVE = [] include Aws::Structure end |
#feature_store_output ⇒ Types::ProcessingFeatureStoreOutput
Configuration for processing job outputs in Amazon SageMaker Feature
Store. This processing output type is only supported when
AppManaged
is specified.
33393 33394 33395 33396 33397 33398 33399 33400 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 33393 class ProcessingOutput < Struct.new( :output_name, :s3_output, :feature_store_output, :app_managed) SENSITIVE = [] include Aws::Structure end |
#output_name ⇒ String
The name for the processing job output.
33393 33394 33395 33396 33397 33398 33399 33400 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 33393 class ProcessingOutput < Struct.new( :output_name, :s3_output, :feature_store_output, :app_managed) SENSITIVE = [] include Aws::Structure end |
#s3_output ⇒ Types::ProcessingS3Output
Configuration for processing job outputs in Amazon S3.
33393 33394 33395 33396 33397 33398 33399 33400 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 33393 class ProcessingOutput < Struct.new( :output_name, :s3_output, :feature_store_output, :app_managed) SENSITIVE = [] include Aws::Structure end |