Class: Aws::AccessAnalyzer::Types::AccessPreview
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::AccessPreview
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-accessanalyzer/types.rb
Overview
Contains 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.
-
#configurations ⇒ Hash<String,Types::Configuration>
A map of resource ARNs for the proposed resource configuration.
-
#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.
90 91 92 93 94 95 96 97 98 99 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 90 class AccessPreview < Struct.new( :id, :analyzer_arn, :configurations, :created_at, :status, :status_reason) SENSITIVE = [] include Aws::Structure end |
#configurations ⇒ Hash<String,Types::Configuration>
A map of resource ARNs for the proposed resource configuration.
90 91 92 93 94 95 96 97 98 99 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 90 class AccessPreview < Struct.new( :id, :analyzer_arn, :configurations, :created_at, :status, :status_reason) SENSITIVE = [] include Aws::Structure end |
#created_at ⇒ Time
The time at which the access preview was created.
90 91 92 93 94 95 96 97 98 99 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 90 class AccessPreview < Struct.new( :id, :analyzer_arn, :configurations, :created_at, :status, :status_reason) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The unique ID for the access preview.
90 91 92 93 94 95 96 97 98 99 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 90 class AccessPreview < Struct.new( :id, :analyzer_arn, :configurations, :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. You can preview findings for external access to the resource.
-
‘Failed` - The access preview creation has failed.
90 91 92 93 94 95 96 97 98 99 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 90 class AccessPreview < Struct.new( :id, :analyzer_arn, :configurations, :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 resource configuration.
90 91 92 93 94 95 96 97 98 99 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 90 class AccessPreview < Struct.new( :id, :analyzer_arn, :configurations, :created_at, :status, :status_reason) SENSITIVE = [] include Aws::Structure end |