Module Values.SendProjectSessionActionRequestSource

Performs a recipe step within an interactive DataBrew session that's currently open.

Sourcetype nonrec t = {
  1. preview : Preview.t option;
    (*

    If true, the result of the recipe step will be returned, but not applied.

    *)
  2. name : ProjectName.t;
    (*

    The name of the project to apply the action to.

    *)
  3. recipeStep : RecipeStep.t option;
  4. stepIndex : StepIndex.t option;
    (*

    The index from which to preview a step. This index is used to preview the result of steps that have already been applied, so that the resulting view frame is from earlier in the view frame stack.

    *)
  5. clientSessionId : ClientSessionId.t option;
    (*

    A unique identifier for an interactive session that's currently open and ready for work. The action will be performed on this session.

    *)
  6. viewFrame : ViewFrame.t option;
}
Sourceval context_ : string
Sourceval make : ?preview:??? -> ?recipeStep:??? -> ?stepIndex:??? -> ?clientSessionId:??? -> ?viewFrame:??? -> name:ProjectName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Preview.t | `Integer of StepIndex.t | `String of ProjectName.t | `Structure of (string * [> `Enum of string | `Integer of StartColumnIndex.t | `List of [> `String of ColumnName.t | `Structure of (string * [> `String of Condition.t ]) list ] list | `Structure of (string * [> `Map of ([> `String of ParameterName.t ] * [> `String of ParameterValue.t ]) list | `String of Operation.t ]) list ]) list ]) 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