DataDeletionJobReference
- class aws_cdk.interfaces.aws_personalize.DataDeletionJobReference(*, data_deletion_job_arn, data_deletion_job_id)
Bases:
objectA reference to a DataDeletionJob resource.
- Parameters:
data_deletion_job_arn (
str) – The ARN of the DataDeletionJob resource.data_deletion_job_id (
str) – The Id of the DataDeletionJob resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_personalize as interfaces_personalize data_deletion_job_reference = interfaces_personalize.DataDeletionJobReference( data_deletion_job_arn="dataDeletionJobArn", data_deletion_job_id="dataDeletionJobId" )
Attributes
- data_deletion_job_arn
The ARN of the DataDeletionJob resource.
- data_deletion_job_id
The Id of the DataDeletionJob resource.