Class: Aws::AccessAnalyzer::Types::PolicyPreviewJobDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::PolicyPreviewJobDetails
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb
Overview
Contains details about the execution of a policy preview job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#completed_at ⇒ Time
The time at which the job completed.
-
#job_error ⇒ Types::JobError
Detailed information about the error that caused the job to fail.
-
#job_status ⇒ String
The current status of the job.
-
#started_at ⇒ Time
The time at which the job execution started.
-
#submitted_at ⇒ Time
The time at which the job was submitted.
Instance Attribute Details
#completed_at ⇒ Time
The time at which the job completed. This field is populated only when the job reaches a terminal state (COMPLETED, FAILED, or CANCELED).
3974 3975 3976 3977 3978 3979 3980 3981 3982 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3974 class PolicyPreviewJobDetails < Struct.new( :job_status, :submitted_at, :started_at, :completed_at, :job_error) SENSITIVE = [] include Aws::Structure end |
#job_error ⇒ Types::JobError
Detailed information about the error that caused the job to fail. This field is populated only when the job status is FAILED.
3974 3975 3976 3977 3978 3979 3980 3981 3982 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3974 class PolicyPreviewJobDetails < Struct.new( :job_status, :submitted_at, :started_at, :completed_at, :job_error) SENSITIVE = [] include Aws::Structure end |
#job_status ⇒ String
The current status of the job. Possible values are:
SUBMITTED- The job has been submitted but not yet started.IN_PROGRESS- The job is currently executing.COMPLETED- The job completed successfully.FAILED- The job failed with an error.CANCELED- The job was canceled by the user.
3974 3975 3976 3977 3978 3979 3980 3981 3982 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3974 class PolicyPreviewJobDetails < Struct.new( :job_status, :submitted_at, :started_at, :completed_at, :job_error) SENSITIVE = [] include Aws::Structure end |
#started_at ⇒ Time
The time at which the job execution started. This field is not populated until the job begins processing.
3974 3975 3976 3977 3978 3979 3980 3981 3982 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3974 class PolicyPreviewJobDetails < Struct.new( :job_status, :submitted_at, :started_at, :completed_at, :job_error) SENSITIVE = [] include Aws::Structure end |
#submitted_at ⇒ Time
The time at which the job was submitted.
3974 3975 3976 3977 3978 3979 3980 3981 3982 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3974 class PolicyPreviewJobDetails < Struct.new( :job_status, :submitted_at, :started_at, :completed_at, :job_error) SENSITIVE = [] include Aws::Structure end |