Class: Aws::LocationService::Types::StartJobResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-locationservice/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:created_at]

Instance Attribute Summary collapse

Instance Attribute Details

#created_atTime

Job creation time in [ISO 8601] format: ‘YYYY-MM-DDThh:mm:ss.sss`.

[1]: www.iso.org/iso-8601-date-and-time-format.html

Returns:

  • (Time)


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_arnString

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`

Returns:

  • (String)


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_idString

Unique job identifier.

Returns:

  • (String)


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

#statusString

Initial job status (always “Pending” for new jobs).

Returns:

  • (String)


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