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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-configservice/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)


8176
8177
8178
8179
8180
8181
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8176

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.

Currently, only applicable to the configuration item history.

Returns:

  • (Integer)


8176
8177
8178
8179
8180
8181
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 8176

class RetentionConfiguration < Struct.new(
  :name,
  :retention_period_in_days)
  SENSITIVE = []
  include Aws::Structure
end