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 EFS file system.
Instance Attribute Details
#file_system_id ⇒ String
The ID of the destination Amazon EFS file system.
1173 1174 1175 1176 1177 1178 1179 1180 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1173 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.
1173 1174 1175 1176 1177 1178 1179 1180 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1173 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.
1173 1174 1175 1176 1177 1178 1179 1180 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1173 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 EFS file system.
The
Paused
state occurs as a result of opting out of the source or destination Region after the replication configuration was created. To resume replication for the file system, you need to again opt in to the Amazon Web Services Region. For more information, see Managing Amazon Web Services Regions in the Amazon Web Services General Reference Guide.The
Error
state occurs when either the source or the destination file system (or both) is in a failed state and is unrecoverable. For more information, see Monitoring replication status in the Amazon EFS User Guide. You must delete the replication configuration, and then restore the most recent backup of the failed file system (either the source or the destination) to a new file system.
1173 1174 1175 1176 1177 1178 1179 1180 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 1173 class Destination < Struct.new( :status, :file_system_id, :region, :last_replicated_timestamp) SENSITIVE = [] include Aws::Structure end |