Start Data Ingestion Job
lookoutequipment_start_data_ingestion_job | R Documentation |
Starts a data ingestion job¶
Description¶
Starts a data ingestion job. Amazon Lookout for Equipment returns the job status.
Usage¶
lookoutequipment_start_data_ingestion_job(DatasetName,
IngestionInputConfiguration, RoleArn, ClientToken)
Arguments¶
DatasetName |
[required] The name of the dataset being used by the data ingestion job. |
IngestionInputConfiguration |
[required] Specifies information for the input data for the data ingestion job, including dataset S3 location. |
RoleArn |
[required] The Amazon Resource Name (ARN) of a role with permission to access the data source for the data ingestion job. |
ClientToken |
[required] A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment generates one. |
Value¶
A list with the following syntax:
list(
JobId = "string",
Status = "IN_PROGRESS"|"SUCCESS"|"FAILED"|"IMPORT_IN_PROGRESS"
)
Request syntax¶
svc$start_data_ingestion_job(
DatasetName = "string",
IngestionInputConfiguration = list(
S3InputConfiguration = list(
Bucket = "string",
Prefix = "string",
KeyPattern = "string"
)
),
RoleArn = "string",
ClientToken = "string"
)