Class: Aws::AccessAnalyzer::Types::UnusedAccessConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::UnusedAccessConfiguration
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb
Overview
Contains information about an unused access analyzer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unused_access_age ⇒ Integer
The specified access age in days for which to generate findings for unused access.
Instance Attribute Details
#unused_access_age ⇒ Integer
The specified access age in days for which to generate findings for unused access. For example, if you specify 90 days, the analyzer will generate findings for IAM entities within the accounts of the selected organization for any access that hasn't been used in 90 or more days since the analyzer's last scan. You can choose a value between 1 and 180 days.
4022 4023 4024 4025 4026 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 4022 class UnusedAccessConfiguration < Struct.new( :unused_access_age) SENSITIVE = [] include Aws::Structure end |