Class: Aws::EFS::Types::Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::EFS::Types::Destination
- Defined in:
- gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb
Overview
Describes the destination file system in the replication configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_system_id ⇒ String
The ID of the destination Amazon EFS file system.
-
#last_replicated_timestamp ⇒ Time
The time when the most recent sync was successfully completed on the destination file system.
-
#region ⇒ String
The Amazon Web Services Region in which the destination file system is located.
-
#status ⇒ String
Describes the status of the destination Amazon EFS file system.
Instance Attribute Details
#file_system_id ⇒ String
The ID of the destination Amazon EFS file system.
1358 1359 1360 1361 1362 1363 1364 1365 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1358 class Destination < Struct.new( :status, :file_system_id, :region, :last_replicated_timestamp) SENSITIVE = [] include Aws::Structure end |
#last_replicated_timestamp ⇒ Time
The time when the most recent sync was successfully completed on the destination file system. Any changes to data on the source file system that occurred before this time have been successfully replicated to the destination file system. Any changes that occurred after this time might not be fully replicated.
1358 1359 1360 1361 1362 1363 1364 1365 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1358 class Destination < Struct.new( :status, :file_system_id, :region, :last_replicated_timestamp) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
The Amazon Web Services Region in which the destination file system is located.
1358 1359 1360 1361 1362 1363 1364 1365 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1358 class Destination < Struct.new( :status, :file_system_id, :region, :last_replicated_timestamp) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Describes the status of the destination Amazon EFS file system. If
the status is ERROR
, the destination file system in the
replication configuration is in a failed state and is unrecoverable.
To access the file system data, restore a backup of the failed file
system to a new file system.
1358 1359 1360 1361 1362 1363 1364 1365 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1358 class Destination < Struct.new( :status, :file_system_id, :region, :last_replicated_timestamp) SENSITIVE = [] include Aws::Structure end |