Struct aws_sdk_fsx::types::ReleaseConfiguration
source · #[non_exhaustive]pub struct ReleaseConfiguration {
pub duration_since_last_access: Option<DurationSinceLastAccess>,
}Expand description
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.
If a file meets the last accessed time criteria, its file or directory path must also be specified with the Paths parameter of the operation in order for the file to be released.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.duration_since_last_access: Option<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.
Implementations§
source§impl ReleaseConfiguration
impl ReleaseConfiguration
sourcepub fn duration_since_last_access(&self) -> Option<&DurationSinceLastAccess>
pub fn duration_since_last_access(&self) -> Option<&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.
source§impl ReleaseConfiguration
impl ReleaseConfiguration
sourcepub fn builder() -> ReleaseConfigurationBuilder
pub fn builder() -> ReleaseConfigurationBuilder
Creates a new builder-style object to manufacture ReleaseConfiguration.
Trait Implementations§
source§impl Clone for ReleaseConfiguration
impl Clone for ReleaseConfiguration
source§fn clone(&self) -> ReleaseConfiguration
fn clone(&self) -> ReleaseConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ReleaseConfiguration
impl Debug for ReleaseConfiguration
source§impl PartialEq for ReleaseConfiguration
impl PartialEq for ReleaseConfiguration
source§fn eq(&self, other: &ReleaseConfiguration) -> bool
fn eq(&self, other: &ReleaseConfiguration) -> bool
self and other values to be equal, and is used
by ==.