Skip to content

Get Export Jobs

pinpoint_get_export_jobs R Documentation

Retrieves information about the status and settings of all the export jobs for an application

Description

Retrieves information about the status and settings of all the export jobs for an application.

Usage

pinpoint_get_export_jobs(ApplicationId, PageSize, Token)

Arguments

ApplicationId

[required] The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.

PageSize

The maximum number of items to include in each page of a paginated response. This parameter is not supported for application, campaign, and journey metrics.

Token

The NextToken string that specifies which page of results to return in a paginated response.

Value

A list with the following syntax:

list(
  ExportJobsResponse = list(
    Item = list(
      list(
        ApplicationId = "string",
        CompletedPieces = 123,
        CompletionDate = "string",
        CreationDate = "string",
        Definition = list(
          RoleArn = "string",
          S3UrlPrefix = "string",
          SegmentId = "string",
          SegmentVersion = 123
        ),
        FailedPieces = 123,
        Failures = list(
          "string"
        ),
        Id = "string",
        JobStatus = "CREATED"|"PREPARING_FOR_INITIALIZATION"|"INITIALIZING"|"PROCESSING"|"PENDING_JOB"|"COMPLETING"|"COMPLETED"|"FAILING"|"FAILED",
        TotalFailures = 123,
        TotalPieces = 123,
        TotalProcessed = 123,
        Type = "string"
      )
    ),
    NextToken = "string"
  )
)

Request syntax

svc$get_export_jobs(
  ApplicationId = "string",
  PageSize = "string",
  Token = "string"
)