Module Values.DescribeObjectsInputSource

Contains the parameters for DescribeObjects.

Sourcetype nonrec t = {
  1. pipelineId : Id.t;
    (*

    The ID of the pipeline that contains the object definitions.

    *)
  2. objectIds : IdList.t;
    (*

    The IDs of the pipeline objects that contain the definitions to be described. You can pass as many as 25 identifiers in a single call to DescribeObjects.

    *)
  3. evaluateExpressions : Boolean.t option;
    (*

    Indicates whether any expressions in the object should be evaluated when the object descriptions are returned.

    *)
  4. marker : String_.t option;
    (*

    The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call DescribeObjects with the marker value from the previous call to retrieve the next set of results.

    *)
}
Sourceval context_ : string
Sourceval make : ?evaluateExpressions:??? -> ?marker:??? -> pipelineId:Id.t -> objectIds:IdList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of Id.t ] list | `String of Id.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