interface ProcessingOutputsObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnProcessingJobPropsMixin.ProcessingOutputsObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnProcessingJobPropsMixin_ProcessingOutputsObjectProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnProcessingJobPropsMixin.ProcessingOutputsObjectProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnProcessingJobPropsMixin.ProcessingOutputsObjectProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnProcessingJobPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const processingOutputsObjectProperty: sagemaker_mixins.CfnProcessingJobPropsMixin.ProcessingOutputsObjectProperty = {
appManaged: false,
featureStoreOutput: {
featureGroupName: 'featureGroupName',
},
outputName: 'outputName',
s3Output: {
localPath: 'localPath',
s3UploadMode: 's3UploadMode',
s3Uri: 's3Uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| output | string | The name for the processing job output. |
| s3 | IResolvable | S3 | Configuration for uploading output data to Amazon S3 from the processing container. |
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.
outputName?
Type:
string
(optional)
The name for the processing job output.
s3Output?
Type:
IResolvable | S3
(optional)
Configuration for uploading output data to Amazon S3 from the processing container.

.NET
Go
Java
Python
TypeScript