interface ProcessingOutputConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnProcessingJobPropsMixin.ProcessingOutputConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnProcessingJobPropsMixin_ProcessingOutputConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnProcessingJobPropsMixin.ProcessingOutputConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnProcessingJobPropsMixin.ProcessingOutputConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnProcessingJobPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const processingOutputConfigProperty: sagemaker_mixins.CfnProcessingJobPropsMixin.ProcessingOutputConfigProperty = {
kmsKeyId: 'kmsKeyId',
outputs: [{
appManaged: false,
featureStoreOutput: {
featureGroupName: 'featureGroupName',
},
outputName: 'outputName',
s3Output: {
localPath: 'localPath',
s3UploadMode: 's3UploadMode',
s3Uri: 's3Uri',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt the processing job output. |
| outputs? | 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.
outputs?
Type:
IResolvable | (IResolvable | Processing)[]
(optional)
An array of outputs configuring the data to upload from the processing container.

.NET
Go
Java
Python
TypeScript