List Data Ingestion Jobs
| lookoutequipment_list_data_ingestion_jobs | R Documentation |
Provides a list of all data ingestion jobs, including dataset name and ARN, S3 location of the input data, status, and so on¶
Description¶
Provides a list of all data ingestion jobs, including dataset name and ARN, S3 location of the input data, status, and so on.
Usage¶
Arguments¶
DatasetNameThe name of the dataset being used for the data ingestion job.
NextTokenAn opaque pagination token indicating where to continue the listing of data ingestion jobs.
MaxResultsSpecifies the maximum number of data ingestion jobs to list.
StatusIndicates the status of the data ingestion job.
Value¶
A list with the following syntax:
list(
NextToken = "string",
DataIngestionJobSummaries = list(
list(
JobId = "string",
DatasetName = "string",
DatasetArn = "string",
IngestionInputConfiguration = list(
S3InputConfiguration = list(
Bucket = "string",
Prefix = "string",
KeyPattern = "string"
)
),
Status = "IN_PROGRESS"|"SUCCESS"|"FAILED"|"IMPORT_IN_PROGRESS"
)
)
)