Class: Aws::IoTSiteWise::Types::CreateEnrichmentJobResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::CreateEnrichmentJobResponse
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_at ⇒ Time
Timestamp when the enrichment job was created in ISO 8601 format.
-
#job_id ⇒ String
Unique identifier for the enrichment job.
-
#status ⇒ String
Initial status of the enrichment job, typically PENDING.
Instance Attribute Details
#created_at ⇒ Time
Timestamp when the enrichment job was created in ISO 8601 format.
4343 4344 4345 4346 4347 4348 4349 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 4343 class CreateEnrichmentJobResponse < Struct.new( :job_id, :status, :created_at) SENSITIVE = [] include Aws::Structure end |
#job_id ⇒ String
Unique identifier for the enrichment job. Use this ID with DescribeEnrichmentJob to monitor progress or with CancelEnrichmentJob to cancel the job.
4343 4344 4345 4346 4347 4348 4349 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 4343 class CreateEnrichmentJobResponse < Struct.new( :job_id, :status, :created_at) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Initial status of the enrichment job, typically PENDING. The job will transition to RUNNING when processing begins, then to a terminal state (COMPLETED, FAILED, TIMED_OUT, or CANCELLED). Use DescribeEnrichmentJob to track status changes.
4343 4344 4345 4346 4347 4348 4349 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 4343 class CreateEnrichmentJobResponse < Struct.new( :job_id, :status, :created_at) SENSITIVE = [] include Aws::Structure end |