Class: Aws::ConfigService::Types::RetentionConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

The name of the retention configuration object.

Returns:

  • (String)


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_daysInteger

Number of days Config stores your historical information.

<note markdown=“1”> Currently, only applicable to the configuration item history.

</note>

Returns:

  • (Integer)


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