Class: Aws::IoTSiteWise::Types::JobSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::JobSummary
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Contains the job summary information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of the job.
-
#name ⇒ String
The unique name that helps identify the job request.
-
#status ⇒ String
The status of the bulk import job can be one of following values:.
Instance Attribute Details
#id ⇒ String
The ID of the job.
7629 7630 7631 7632 7633 7634 7635 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 7629 class JobSummary < Struct.new( :id, :name, :status) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The unique name that helps identify the job request.
7629 7630 7631 7632 7633 7634 7635 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 7629 class JobSummary < Struct.new( :id, :name, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the bulk import job can be one of following values:
PENDING
– IoT SiteWise is waiting for the current bulk import job to finish.CANCELLED
– The bulk import job has been canceled.RUNNING
– IoT SiteWise is processing your request to import your data from Amazon S3.COMPLETED
– IoT SiteWise successfully completed your request to import data from Amazon S3.FAILED
– IoT SiteWise couldn't process your request to import data from Amazon S3. You can use logs saved in the specified error report location in Amazon S3 to troubleshoot issues.COMPLETED_WITH_FAILURES
– IoT SiteWise completed your request to import data from Amazon S3 with errors. You can use logs saved in the specified error report location in Amazon S3 to troubleshoot issues.
7629 7630 7631 7632 7633 7634 7635 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 7629 class JobSummary < Struct.new( :id, :name, :status) SENSITIVE = [] include Aws::Structure end |