interface ProcessingOutputConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnProcessingJob.ProcessingOutputConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnProcessingJob_ProcessingOutputConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnProcessingJob.ProcessingOutputConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnProcessingJob.ProcessingOutputConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnProcessingJob » ProcessingOutputConfigProperty |
Configuration for uploading output from the processing container.
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 processingOutputConfigProperty: sagemaker.CfnProcessingJob.ProcessingOutputConfigProperty = {
outputs: [{
outputName: 'outputName',
// the properties below are optional
appManaged: false,
featureStoreOutput: {
featureGroupName: 'featureGroupName',
},
s3Output: {
s3UploadMode: 's3UploadMode',
s3Uri: 's3Uri',
// the properties below are optional
localPath: 'localPath',
},
}],
// the properties below are optional
kmsKeyId: 'kmsKeyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| outputs | IResolvable | (IResolvable | Processing)[] | An array of outputs configuring the data to upload from the processing container. |
| kms | string | The AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt the processing job output. |
outputs
Type:
IResolvable | (IResolvable | Processing)[]
An array of outputs configuring the data to upload from the processing container.
kmsKeyId?
Type:
string
(optional)
The AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt the processing job output.
KmsKeyId can be an ID of a KMS key, ARN of a KMS key, or alias of a KMS key. The KmsKeyId is applied to all outputs.

.NET
Go
Java
Python
TypeScript