Class: Aws::StorageGateway::Types::CacheAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::CacheAttributes
- Defined in:
- gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb
Overview
The refresh cache information for the file share or FSx file systems.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cache_stale_timeout_in_seconds ⇒ Integer
Refreshes a file share's cache by using Time To Live (TTL).
Instance Attribute Details
#cache_stale_timeout_in_seconds ⇒ Integer
Refreshes a file share's cache by using Time To Live (TTL). TTL is the length of time since the last refresh after which access to the directory would cause the file gateway to first refresh that directory's contents from the Amazon S3 bucket or Amazon FSx file system. The TTL duration is in seconds.
Valid Values:0, 300 to 2,592,000 seconds (5 minutes to 30 days)
679 680 681 682 683 |
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 679 class CacheAttributes < Struct.new( :cache_stale_timeout_in_seconds) SENSITIVE = [] include Aws::Structure end |