Class: Aws::ConfigService::Types::RetentionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::RetentionConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-configservice/types.rb
Overview
An object with the name of the retention configuration and the retention period in days. The object stores the configuration for data retention in Config.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the retention configuration object.
-
#retention_period_in_days ⇒ Integer
Number of days Config stores your historical information.
Instance Attribute Details
#name ⇒ String
The name of the retention configuration object.
8175 8176 8177 8178 8179 8180 |
# File 'lib/aws-sdk-configservice/types.rb', line 8175 class RetentionConfiguration < Struct.new( :name, :retention_period_in_days) SENSITIVE = [] include Aws::Structure end |
#retention_period_in_days ⇒ Integer
Number of days Config stores your historical information.
<note markdown=“1”> Currently, only applicable to the configuration item history.
</note>
8175 8176 8177 8178 8179 8180 |
# File 'lib/aws-sdk-configservice/types.rb', line 8175 class RetentionConfiguration < Struct.new( :name, :retention_period_in_days) SENSITIVE = [] include Aws::Structure end |