Module Values.ExecutionEngineConfigSource

Specifies the execution engine (cluster) to run the notebook and perform the notebook execution, for example, an Amazon EMR cluster.

Sourcetype nonrec t = {
  1. id : XmlStringMaxLen256.t;
    (*

    The unique identifier of the execution engine. For an Amazon EMR cluster, this is the cluster ID.

    *)
  2. type_ : ExecutionEngineType.t option;
    (*

    The type of execution engine. A value of EMR specifies an Amazon EMR cluster.

    *)
  3. masterInstanceSecurityGroupId : XmlStringMaxLen256.t option;
    (*

    An optional unique ID of an Amazon EC2 security group to associate with the master instance of the Amazon EMR cluster for this notebook execution. For more information see Specifying Amazon EC2 Security Groups for Amazon EMR Notebooks in the EMR Management Guide.

    *)
  4. executionRoleArn : IAMRoleArn.t option;
    (*

    The execution role ARN required for the notebook execution.

    *)
}
Sourceval context_ : string
Sourceval make : ?type_:??? -> ?masterInstanceSecurityGroupId:??? -> ?executionRoleArn:??? -> id:XmlStringMaxLen256.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of XmlStringMaxLen256.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