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 AWS Config.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the retention configuration object.

Returns:

  • (String)


7870
7871
7872
7873
7874
7875
# File 'lib/aws-sdk-configservice/types.rb', line 7870

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

#retention_period_in_daysInteger

Number of days AWS Config stores your historical information.

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

</note>

Returns:

  • (Integer)


7870
7871
7872
7873
7874
7875
# File 'lib/aws-sdk-configservice/types.rb', line 7870

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