Module Values.ReplicationConfigurationDescriptionSource

Describes the replication configuration for a specific file system.

Sourcetype nonrec t = {
  1. sourceFileSystemId : FileSystemId.t option;
    (*

    The ID of the source Amazon EFS file system that is being replicated.

    *)
  2. sourceFileSystemRegion : RegionName.t option;
    (*

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

    *)
  3. sourceFileSystemArn : FileSystemArn.t option;
    (*

    The Amazon Resource Name (ARN) of the current source file system in the replication configuration.

    *)
  4. originalSourceFileSystemArn : FileSystemArn.t option;
    (*

    The Amazon Resource Name (ARN) of the original source EFS file system in the replication configuration.

    *)
  5. creationTime : Timestamp.t option;
    (*

    Describes when the replication configuration was created.

    *)
  6. destinations : Destinations.t option;
    (*

    An array of destination objects. Only one destination object is supported.

    *)
  7. sourceFileSystemOwnerId : AwsAccountId.t option;
    (*

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

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequest of BadRequest.t
  2. | `ConflictException of ConflictException.t
  3. | `FileSystemLimitExceeded of FileSystemLimitExceeded.t
  4. | `FileSystemNotFound of FileSystemNotFound.t
  5. | `IncorrectFileSystemLifeCycleState of IncorrectFileSystemLifeCycleState.t
  6. | `InsufficientThroughputCapacity of InsufficientThroughputCapacity.t
  7. | `InternalServerError of InternalServerError.t
  8. | `ReplicationNotFound of ReplicationNotFound.t
  9. | `ThroughputLimitExceeded of ThroughputLimitExceeded.t
  10. | `UnsupportedAvailabilityZone of UnsupportedAvailabilityZone.t
  11. | `ValidationException of ValidationException.t
  12. | `Unknown_operation_error of string * string option
]
Sourceval make : ?sourceFileSystemId:??? -> ?sourceFileSystemRegion:??? -> ?sourceFileSystemArn:??? -> ?originalSourceFileSystemArn:??? -> ?creationTime:??? -> ?destinations:??? -> ?sourceFileSystemOwnerId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequest of BadRequest.t | `ConflictException of ConflictException.t | `FileSystemLimitExceeded of FileSystemLimitExceeded.t | `FileSystemNotFound of FileSystemNotFound.t | `IncorrectFileSystemLifeCycleState of IncorrectFileSystemLifeCycleState.t | `InsufficientThroughputCapacity of InsufficientThroughputCapacity.t | `InternalServerError of InternalServerError.t | `ReplicationNotFound of ReplicationNotFound.t | `ThroughputLimitExceeded of ThroughputLimitExceeded.t | `Unknown_operation_error of string * string option | `UnsupportedAvailabilityZone of UnsupportedAvailabilityZone.t | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequest of BadRequest.t | `ConflictException of ConflictException.t | `FileSystemLimitExceeded of FileSystemLimitExceeded.t | `FileSystemNotFound of FileSystemNotFound.t | `IncorrectFileSystemLifeCycleState of IncorrectFileSystemLifeCycleState.t | `InsufficientThroughputCapacity of InsufficientThroughputCapacity.t | `InternalServerError of InternalServerError.t | `ReplicationNotFound of ReplicationNotFound.t | `ThroughputLimitExceeded of ThroughputLimitExceeded.t | `Unknown_operation_error of string * string option | `UnsupportedAvailabilityZone of UnsupportedAvailabilityZone.t | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of FileSystemId.t | `Timestamp of Timestamp.t ]) list ] list | `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