Skip to content

Describe Data Deletion Job

personalize_describe_data_deletion_job R Documentation

Describes the data deletion job created by CreateDataDeletionJob, including the job status

Description

Describes the data deletion job created by create_data_deletion_job, including the job status.

Usage

personalize_describe_data_deletion_job(dataDeletionJobArn)

Arguments

dataDeletionJobArn

[required] The Amazon Resource Name (ARN) of the data deletion job.

Value

A list with the following syntax:

list(
  dataDeletionJob = list(
    jobName = "string",
    dataDeletionJobArn = "string",
    datasetGroupArn = "string",
    dataSource = list(
      dataLocation = "string"
    ),
    roleArn = "string",
    status = "string",
    numDeleted = 123,
    creationDateTime = as.POSIXct(
      "2015-01-01"
    ),
    lastUpdatedDateTime = as.POSIXct(
      "2015-01-01"
    ),
    failureReason = "string"
  )
)

Request syntax

svc$describe_data_deletion_job(
  dataDeletionJobArn = "string"
)