Method: Aws::FSx::Types::DataRepositoryConfiguration#lifecycle
- Defined in:
- lib/aws-sdk-fsx/types.rb
#lifecycle ⇒ String
Describes the state of the file system’s S3 durable data repository, if it is configured with an S3 repository. The lifecycle can have the following values:
-
‘CREATING` - The data repository configuration between the FSx file system and the linked S3 data repository is being created. The data repository is unavailable.
-
‘AVAILABLE` - The data repository is available for use.
-
‘MISCONFIGURED` - Amazon FSx cannot automatically import updates from the S3 bucket until the data repository configuration is corrected. For more information, see [Troubleshooting a Misconfigured linked S3 bucket].
-
‘UPDATING` - The data repository is undergoing a customer initiated update and availability may be impacted.
-
‘FAILED` - The data repository is in a terminal state that cannot be recovered.
3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 |
# File 'lib/aws-sdk-fsx/types.rb', line 3855 class DataRepositoryConfiguration < Struct.new( :lifecycle, :import_path, :export_path, :imported_file_chunk_size, :auto_import_policy, :failure_details) SENSITIVE = [] include Aws::Structure end |