Module Values_0.SelectFromCollectionSource

Specifies a transform that chooses one DynamicFrame from a collection of DynamicFrames. The output is the selected DynamicFrame

Sourcetype nonrec t = {
  1. name : NodeName.t;
    (*

    The name of the transform node.

    *)
  2. inputs : OneInput.t;
    (*

    The data inputs identified by their node names.

    *)
  3. index : NonNegativeInt.t;
    (*

    The index for the DynamicFrame to be selected.

    *)
}
Sourceval context_ : string
Sourceval make : name:NodeName.t -> inputs:OneInput.t -> index:NonNegativeInt.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NonNegativeInt.t | `List of [> `String of NodeId.t ] list | `String of NodeName.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