interface CfnDataDeletionJobProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Personalize.CfnDataDeletionJobProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspersonalize#CfnDataDeletionJobProps |
Java | software.amazon.awscdk.services.personalize.CfnDataDeletionJobProps |
Python | aws_cdk.aws_personalize.CfnDataDeletionJobProps |
TypeScript | aws-cdk-lib » aws_personalize » CfnDataDeletionJobProps |
Properties for defining a CfnDataDeletionJob.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_personalize as personalize } from 'aws-cdk-lib';
const cfnDataDeletionJobProps: personalize.CfnDataDeletionJobProps = {
datasetGroupArn: 'datasetGroupArn',
dataSource: {
dataLocation: 'dataLocation',
},
jobName: 'jobName',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | IResolvable | Data | The Amazon S3 bucket that contains the list of userIds to delete. |
| dataset | string | The Amazon Resource Name (ARN) of the dataset group that has the datasets you want to delete records from. |
| job | string | The name for the data deletion job. |
| role | string | The Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3 data source. |
dataSource?
Type:
IResolvable | Data
(optional)
The Amazon S3 bucket that contains the list of userIds to delete.
datasetGroupArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the dataset group that has the datasets you want to delete records from.
jobName?
Type:
string
(optional)
The name for the data deletion job.
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3 data source.

.NET
Go
Java
Python
TypeScript