- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
GetExportJobsCommand
Retrieves information about the status and settings of all the export jobs for an application.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { PinpointClient, GetExportJobsCommand } from "@aws-sdk/client-pinpoint"; // ES Modules import
// const { PinpointClient, GetExportJobsCommand } = require("@aws-sdk/client-pinpoint"); // CommonJS import
const client = new PinpointClient(config);
const input = { // GetExportJobsRequest
ApplicationId: "STRING_VALUE", // required
PageSize: "STRING_VALUE",
Token: "STRING_VALUE",
};
const command = new GetExportJobsCommand(input);
const response = await client.send(command);
// { // GetExportJobsResponse
// ExportJobsResponse: { // ExportJobsResponse
// Item: [ // ListOfExportJobResponse // required
// { // ExportJobResponse
// ApplicationId: "STRING_VALUE", // required
// CompletedPieces: Number("int"),
// CompletionDate: "STRING_VALUE",
// CreationDate: "STRING_VALUE", // required
// Definition: { // ExportJobResource
// RoleArn: "STRING_VALUE", // required
// S3UrlPrefix: "STRING_VALUE", // required
// SegmentId: "STRING_VALUE",
// SegmentVersion: Number("int"),
// },
// FailedPieces: Number("int"),
// Failures: [ // ListOf__string
// "STRING_VALUE",
// ],
// Id: "STRING_VALUE", // required
// JobStatus: "CREATED" || "PREPARING_FOR_INITIALIZATION" || "INITIALIZING" || "PROCESSING" || "PENDING_JOB" || "COMPLETING" || "COMPLETED" || "FAILING" || "FAILED", // required
// TotalFailures: Number("int"),
// TotalPieces: Number("int"),
// TotalProcessed: Number("int"),
// Type: "STRING_VALUE", // required
// },
// ],
// NextToken: "STRING_VALUE",
// },
// };
GetExportJobsCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
ApplicationId Required | string | undefined | The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console. |
PageSize | string | undefined | 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 | string | undefined | The NextToken string that specifies which page of results to return in a paginated response. |
GetExportJobsCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
ExportJobsResponse Required | ExportJobsResponse | undefined | Provides information about all the export jobs that are associated with an application or segment. An export job is a job that exports endpoint definitions to a file. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
BadRequestException | client | Provides information about an API request or response. |
ForbiddenException | client | Provides information about an API request or response. |
InternalServerErrorException | server | Provides information about an API request or response. |
MethodNotAllowedException | client | Provides information about an API request or response. |
NotFoundException | client | Provides information about an API request or response. |
PayloadTooLargeException | client | Provides information about an API request or response. |
TooManyRequestsException | client | Provides information about an API request or response. |
PinpointServiceException | Base exception class for all service exceptions from Pinpoint service. |