Module Values.DescribeReplicationConfigurationsRequestSource

Retrieves the replication configuration for a specific file system. If a file system is not specified, all of the replication configurations for the Amazon Web Services account in an Amazon Web Services Region are retrieved.

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

    You can retrieve the replication configuration for a specific file system by providing its file system ID. For cross-account,cross-region replication, an account can only describe the replication configuration for a file system in its own Region.

    *)
  2. nextToken : Token.t option;
    (*

    NextToken is present if the response is paginated. You can use NextToken in a subsequent request to fetch the next page of output.

    *)
  3. maxResults : MaxResults.t option;
    (*

    (Optional) To limit the number of objects returned in a response, you can specify the MaxItems parameter. The default value is 100.

    *)
}
Sourceval make : ?fileSystemId:??? -> ?nextToken:??? -> ?maxResults:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `String of FileSystemId.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