Class: Aws::LocationService::Types::StartJobResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::StartJobResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-locationservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:created_at]
Instance Attribute Summary collapse
-
#created_at ⇒ Time
Job creation time in [ISO 8601] format: ‘YYYY-MM-DDThh:mm:ss.sss`.
-
#job_arn ⇒ String
The Amazon Resource Name (ARN) for the job resource.
-
#job_id ⇒ String
Unique job identifier.
-
#status ⇒ String
Initial job status (always “Pending” for new jobs).
Instance Attribute Details
#created_at ⇒ Time
Job creation time in [ISO 8601] format: ‘YYYY-MM-DDThh:mm:ss.sss`.
6968 6969 6970 6971 6972 6973 6974 6975 |
# File 'lib/aws-sdk-locationservice/types.rb', line 6968 class StartJobResponse < Struct.new( :created_at, :job_arn, :job_id, :status) SENSITIVE = [:created_at] include Aws::Structure end |
#job_arn ⇒ String
The Amazon Resource Name (ARN) for the job resource. Used when you need to specify a resource across all Amazon Web Services.
Format example: ‘arn:aws:geo:region:account-id:job/ExampleJob`
6968 6969 6970 6971 6972 6973 6974 6975 |
# File 'lib/aws-sdk-locationservice/types.rb', line 6968 class StartJobResponse < Struct.new( :created_at, :job_arn, :job_id, :status) SENSITIVE = [:created_at] include Aws::Structure end |
#job_id ⇒ String
Unique job identifier.
6968 6969 6970 6971 6972 6973 6974 6975 |
# File 'lib/aws-sdk-locationservice/types.rb', line 6968 class StartJobResponse < Struct.new( :created_at, :job_arn, :job_id, :status) SENSITIVE = [:created_at] include Aws::Structure end |
#status ⇒ String
Initial job status (always “Pending” for new jobs).
6968 6969 6970 6971 6972 6973 6974 6975 |
# File 'lib/aws-sdk-locationservice/types.rb', line 6968 class StartJobResponse < Struct.new( :created_at, :job_arn, :job_id, :status) SENSITIVE = [:created_at] include Aws::Structure end |