Module Values.DescribeMountTargetsResponseSource

Sourcetype nonrec t = {
  1. marker : Marker.t option;
    (*

    If the request included the Marker, the response returns that value in this field.

    *)
  2. mountTargets : MountTargetDescriptions.t option;
    (*

    Returns the file system's mount targets as an array of MountTargetDescription objects.

    *)
  3. nextMarker : Marker.t option;
    (*

    If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessPointNotFound of AccessPointNotFound.t
  2. | `BadRequest of BadRequest.t
  3. | `FileSystemNotFound of FileSystemNotFound.t
  4. | `InternalServerError of InternalServerError.t
  5. | `MountTargetNotFound of MountTargetNotFound.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?marker:??? -> ?mountTargets:??? -> ?nextMarker:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessPointNotFound of AccessPointNotFound.t | `BadRequest of BadRequest.t | `FileSystemNotFound of FileSystemNotFound.t | `InternalServerError of InternalServerError.t | `MountTargetNotFound of MountTargetNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessPointNotFound of AccessPointNotFound.t | `BadRequest of BadRequest.t | `FileSystemNotFound of FileSystemNotFound.t | `InternalServerError of InternalServerError.t | `MountTargetNotFound of MountTargetNotFound.t | `Unknown_operation_error of string * string option ]
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 AwsAccountId.t ]) list ] list | `String of Marker.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