Skip to content

Get Import Job

sesv2_get_import_job R Documentation

Provides information about an import job

Description

Provides information about an import job.

Usage

sesv2_get_import_job(JobId)

Arguments

JobId

[required] The ID of the import job.

Value

A list with the following syntax:

list(
  JobId = "string",
  ImportDestination = list(
    SuppressionListDestination = list(
      SuppressionListImportAction = "DELETE"|"PUT"
    ),
    ContactListDestination = list(
      ContactListName = "string",
      ContactListImportAction = "DELETE"|"PUT"
    )
  ),
  ImportDataSource = list(
    S3Url = "string",
    DataFormat = "CSV"|"JSON"
  ),
  FailureInfo = list(
    FailedRecordsS3Url = "string",
    ErrorMessage = "string"
  ),
  JobStatus = "CREATED"|"PROCESSING"|"COMPLETED"|"FAILED"|"CANCELLED",
  CreatedTimestamp = as.POSIXct(
    "2015-01-01"
  ),
  CompletedTimestamp = as.POSIXct(
    "2015-01-01"
  ),
  ProcessedRecordsCount = 123,
  FailedRecordsCount = 123
)

Request syntax

svc$get_import_job(
  JobId = "string"
)