Class: Aws::S3Files::Types::ExpirationDataRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Files::Types::ExpirationDataRule
- Defined in:
- gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb
Overview
Specifies a rule that controls when cached data expires from the file system based on last access time.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#days_after_last_access ⇒ Integer
The number of days after last access before cached data expires from the file system.
Instance Attribute Details
#days_after_last_access ⇒ Integer
The number of days after last access before cached data expires from the file system.
520 521 522 523 524 |
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 520 class ExpirationDataRule < Struct.new( :days_after_last_access) SENSITIVE = [] include Aws::Structure end |