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¶
lookoutequipment_list_data_ingestion_jobs(DatasetName, NextToken,
MaxResults, Status)
Arguments¶
DatasetName |
The name of the dataset being used for the data ingestion job. |
NextToken |
An opaque pagination token indicating where to continue the listing of data ingestion jobs. |
MaxResults |
Specifies the maximum number of data ingestion jobs to list. |
Status |
Indicates 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"
)
)
)
Request syntax¶
svc$list_data_ingestion_jobs(
DatasetName = "string",
NextToken = "string",
MaxResults = 123,
Status = "IN_PROGRESS"|"SUCCESS"|"FAILED"|"IMPORT_IN_PROGRESS"
)