interface DataDeletionJobReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Personalize.DataDeletionJobReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awspersonalize#DataDeletionJobReference |
Java | software.amazon.awscdk.interfaces.personalize.DataDeletionJobReference |
Python | aws_cdk.interfaces.aws_personalize.DataDeletionJobReference |
TypeScript | aws-cdk-lib » interfaces » aws_personalize » DataDeletionJobReference |
A reference to a DataDeletionJob resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_personalize as interfaces_personalize } from 'aws-cdk-lib/interfaces';
const dataDeletionJobReference: interfaces_personalize.DataDeletionJobReference = {
dataDeletionJobArn: 'dataDeletionJobArn',
dataDeletionJobId: 'dataDeletionJobId',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The ARN of the DataDeletionJob resource. |
| data | string | The Id of the DataDeletionJob resource. |
dataDeletionJobArn
Type:
string
The ARN of the DataDeletionJob resource.
dataDeletionJobId
Type:
string
The Id of the DataDeletionJob resource.

.NET
Go
Java
Python
TypeScript