Class: Aws::AccessAnalyzer::Types::JobDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::JobDetails
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb
Overview
Contains details about the policy generation request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#completed_on ⇒ Time
A timestamp of when the job was completed.
-
#job_error ⇒ Types::JobError
The job error for the policy generation request.
-
#job_id ⇒ String
The
JobId
that is returned by theStartPolicyGeneration
operation. -
#started_on ⇒ Time
A timestamp of when the job was started.
-
#status ⇒ String
The status of the job request.
Instance Attribute Details
#completed_on ⇒ Time
A timestamp of when the job was completed.
2453 2454 2455 2456 2457 2458 2459 2460 2461 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2453 class JobDetails < Struct.new( :job_id, :status, :started_on, :completed_on, :job_error) SENSITIVE = [] include Aws::Structure end |
#job_error ⇒ Types::JobError
The job error for the policy generation request.
2453 2454 2455 2456 2457 2458 2459 2460 2461 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2453 class JobDetails < Struct.new( :job_id, :status, :started_on, :completed_on, :job_error) SENSITIVE = [] include Aws::Structure end |
#job_id ⇒ String
The JobId
that is returned by the StartPolicyGeneration
operation. The JobId
can be used with GetGeneratedPolicy
to
retrieve the generated policies or used with
CancelPolicyGeneration
to cancel the policy generation request.
2453 2454 2455 2456 2457 2458 2459 2460 2461 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2453 class JobDetails < Struct.new( :job_id, :status, :started_on, :completed_on, :job_error) SENSITIVE = [] include Aws::Structure end |
#started_on ⇒ Time
A timestamp of when the job was started.
2453 2454 2455 2456 2457 2458 2459 2460 2461 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2453 class JobDetails < Struct.new( :job_id, :status, :started_on, :completed_on, :job_error) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the job request.
2453 2454 2455 2456 2457 2458 2459 2460 2461 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2453 class JobDetails < Struct.new( :job_id, :status, :started_on, :completed_on, :job_error) SENSITIVE = [] include Aws::Structure end |