Module Values.DestinationSource

Describes the destination file system in the replication configuration.

Sourcetype nonrec t = {
  1. status : ReplicationStatus.t option;
    (*

    Describes the status of the replication configuration. For more information about replication status, see Viewing replication details in the Amazon EFS User Guide.

    *)
  2. fileSystemId : FileSystemId.t option;
    (*

    The ID of the destination Amazon EFS file system.

    *)
  3. region : RegionName.t option;
    (*

    The Amazon Web Services Region in which the destination file system is located.

    *)
  4. lastReplicatedTimestamp : Timestamp.t option;
    (*

    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.

    *)
  5. ownerId : AwsAccountId.t option;
    (*

    ID of the Amazon Web Services account in which the destination file system resides.

    *)
  6. statusMessage : StatusMessage.t option;
    (*

    Message that provides details about the PAUSED or ERRROR state of the replication destination configuration. For more information about replication status messages, see Viewing replication details in the Amazon EFS User Guide.

    *)
  7. roleArn : RoleArn.t option;
    (*

    Amazon Resource Name (ARN) of the IAM role in the source account that allows Amazon EFS to perform replication on its behalf. This is optional for same-account replication and required for cross-account replication.

    *)
}
Sourceval make : ?status:??? -> ?fileSystemId:??? -> ?region:??? -> ?lastReplicatedTimestamp:??? -> ?ownerId:??? -> ?statusMessage:??? -> ?roleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FileSystemId.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t