Values.DescribeFileSystemAliasesRequestSourceThe request object for DescribeFileSystemAliases operation.
type nonrec t = {clientRequestToken : ClientRequestToken.t option;fileSystemId : FileSystemId.t;The ID of the file system to return the associated DNS aliases for (String).
*)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.
*)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.
*)}val make :
?clientRequestToken:??? ->
?maxResults:??? ->
?nextToken:??? ->
fileSystemId:FileSystemId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of MaxResults.t | `String of ClientRequestToken.t ])
list ]