Class: Aws::StorageGateway::Types::CacheAttributes

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

Instance Attribute Details

#cache_stale_timeout_in_secondsInteger

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)

Returns:

  • (Integer)


678
679
680
681
682
# File 'gems/aws-sdk-storagegateway/lib/aws-sdk-storagegateway/types.rb', line 678

class CacheAttributes < Struct.new(
  :cache_stale_timeout_in_seconds)
  SENSITIVE = []
  include Aws::Structure
end