interface DataCaptureConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnTransformJob.DataCaptureConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnTransformJob_DataCaptureConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnTransformJob.DataCaptureConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnTransformJob.DataCaptureConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnTransformJob » DataCaptureConfigProperty |
Configuration to control how SageMaker captures inference data.
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 dataCaptureConfigProperty: sagemaker.CfnTransformJob.DataCaptureConfigProperty = {
destinationS3Uri: 'destinationS3Uri',
// the properties below are optional
generateInferenceId: false,
kmsKeyId: 'kmsKeyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The Amazon S3 location being used to capture the data. |
| generate | boolean | IResolvable | Flag that indicates whether to append inference id to the output. |
| kms | string | The ARN of a KMS key that SageMaker uses to encrypt data on the storage volume. |
destinationS3Uri
Type:
string
The Amazon S3 location being used to capture the data.
generateInferenceId?
Type:
boolean | IResolvable
(optional)
Flag that indicates whether to append inference id to the output.
kmsKeyId?
Type:
string
(optional)
The ARN of a KMS key that SageMaker uses to encrypt data on the storage volume.

.NET
Go
Java
Python
TypeScript