Module Values.DescribeFileSystemAliasesRequestSource

The request object for DescribeFileSystemAliases operation.

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

    The ID of the file system to return the associated DNS aliases for (String).

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

    Maximum number of DNS aliases to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon FSx returns is the minimum of the MaxResults parameter specified in the request and the service's internal maximum number of items per page.

    *)
  4. nextToken : NextToken.t option;
    (*

    Opaque pagination token returned from a previous DescribeFileSystemAliases operation (String). If a token is included in the request, the action continues the list from where the previous returning call left off.

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