interface ProcessingOutputsObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnProcessingJob.ProcessingOutputsObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnProcessingJob_ProcessingOutputsObjectProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnProcessingJob.ProcessingOutputsObjectProperty |
Python | aws_cdk.aws_sagemaker.CfnProcessingJob.ProcessingOutputsObjectProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnProcessingJob » ProcessingOutputsObjectProperty |
Describes the results of a processing job.
The processing output must specify exactly one of either S3Output or FeatureStoreOutput types.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const processingOutputsObjectProperty: sagemaker.CfnProcessingJob.ProcessingOutputsObjectProperty = {
outputName: 'outputName',
// the properties below are optional
appManaged: false,
featureStoreOutput: {
featureGroupName: 'featureGroupName',
},
s3Output: {
s3UploadMode: 's3UploadMode',
s3Uri: 's3Uri',
// the properties below are optional
localPath: 'localPath',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| output | string | The name for the processing job output. |
| app | boolean | IResolvable | When True , output operations such as data upload are managed natively by the processing job application. |
| feature | IResolvable | Feature | Configuration for processing job outputs in Amazon SageMaker Feature Store. |
| s3 | IResolvable | S3 | Configuration for uploading output data to Amazon S3 from the processing container. |
outputName
Type:
string
The name for the processing job output.
appManaged?
Type:
boolean | IResolvable
(optional)
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.
featureStoreOutput?
Type:
IResolvable | Feature
(optional)
Configuration for processing job outputs in Amazon SageMaker Feature Store.
s3Output?
Type:
IResolvable | S3
(optional)
Configuration for uploading output data to Amazon S3 from the processing container.

.NET
Go
Java
Python
TypeScript