Class: Aws::AccessAnalyzer::Types::AccessPreviewSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::AccessPreviewSummary
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb
Overview
Contains a summary of information about an access preview.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#analyzer_arn ⇒ String
The ARN of the analyzer used to generate the access preview.
-
#created_at ⇒ Time
The time at which the access preview was created.
-
#id ⇒ String
The unique ID for the access preview.
-
#status ⇒ String
The status of the access preview.
-
#status_reason ⇒ Types::AccessPreviewStatusReason
Provides more details about the current status of the access preview.
Instance Attribute Details
#analyzer_arn ⇒ String
The ARN of the analyzer used to generate the access preview.
244 245 246 247 248 249 250 251 252 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 244 class AccessPreviewSummary < Struct.new( :id, :analyzer_arn, :created_at, :status, :status_reason) SENSITIVE = [] include Aws::Structure end |
#created_at ⇒ Time
The time at which the access preview was created.
244 245 246 247 248 249 250 251 252 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 244 class AccessPreviewSummary < Struct.new( :id, :analyzer_arn, :created_at, :status, :status_reason) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The unique ID for the access preview.
244 245 246 247 248 249 250 251 252 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 244 class AccessPreviewSummary < Struct.new( :id, :analyzer_arn, :created_at, :status, :status_reason) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the access preview.
Creating
- The access preview creation is in progress.Completed
- The access preview is complete and previews the findings for external access to the resource.Failed
- The access preview creation has failed.
244 245 246 247 248 249 250 251 252 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 244 class AccessPreviewSummary < Struct.new( :id, :analyzer_arn, :created_at, :status, :status_reason) SENSITIVE = [] include Aws::Structure end |
#status_reason ⇒ Types::AccessPreviewStatusReason
Provides more details about the current status of the access
preview. For example, if the creation of the access preview fails, a
Failed
status is returned. This failure can be due to an internal
issue with the analysis or due to an invalid proposed resource
configuration.
244 245 246 247 248 249 250 251 252 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 244 class AccessPreviewSummary < Struct.new( :id, :analyzer_arn, :created_at, :status, :status_reason) SENSITIVE = [] include Aws::Structure end |