Class: Aws::FSx::Types::ReleaseConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::ReleaseConfiguration
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
Overview
The configuration that specifies a minimum amount of time since last access for an exported file to be eligible for release from an Amazon FSx for Lustre file system. Only files that were last accessed before this point-in-time can be released. For example, if you specify a last accessed time criteria of 9 days, only files that were last accessed 9.00001 or more days ago can be released.
Only file data that has been exported to S3 can be released. Files that have not yet been exported to S3, such as new or changed files that have not been exported, are not eligible for release. When files are released, their metadata stays on the file system, so they can still be accessed later. Users and applications can access a released file by reading the file again, which restores data from Amazon S3 to the FSx for Lustre file system.
Paths parameter of the
operation in order for the file to be released.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duration_since_last_access ⇒ Types::DurationSinceLastAccess
Defines the point-in-time since an exported file was last accessed, in order for that file to be eligible for release.
Instance Attribute Details
#duration_since_last_access ⇒ Types::DurationSinceLastAccess
Defines the point-in-time since an exported file was last accessed, in order for that file to be eligible for release. Only files that were last accessed before this point-in-time are eligible to be released from the file system.
8222 8223 8224 8225 8226 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 8222 class ReleaseConfiguration < Struct.new( :duration_since_last_access) SENSITIVE = [] include Aws::Structure end |