Module Values.RecipeSource

Represents one or more actions to be performed on a DataBrew dataset.

Sourcetype nonrec t = {
  1. createdBy : CreatedBy.t option;
    (*

    The Amazon Resource Name (ARN) of the user who created the recipe.

    *)
  2. createDate : Date.t option;
    (*

    The date and time that the recipe was created.

    *)
  3. lastModifiedBy : LastModifiedBy.t option;
    (*

    The Amazon Resource Name (ARN) of the user who last modified the recipe.

    *)
  4. lastModifiedDate : Date.t option;
    (*

    The last modification date and time of the recipe.

    *)
  5. projectName : ProjectName.t option;
    (*

    The name of the project that the recipe is associated with.

    *)
  6. publishedBy : PublishedBy.t option;
    (*

    The Amazon Resource Name (ARN) of the user who published the recipe.

    *)
  7. publishedDate : Date.t option;
    (*

    The date and time when the recipe was published.

    *)
  8. description : RecipeDescription.t option;
    (*

    The description of the recipe.

    *)
  9. name : RecipeName.t option;
    (*

    The unique name for the recipe.

    *)
  10. resourceArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) for the recipe.

    *)
  11. steps : RecipeStepList.t option;
    (*

    A list of steps that are defined by the recipe.

    *)
  12. tags : TagMap.t option;
    (*

    Metadata tags that have been applied to the recipe.

    *)
  13. recipeVersion : RecipeVersion.t option;
    (*

    The identifier for the version for the recipe. Must be one of the following: Numeric version (X.Y) - X and Y stand for major and minor version numbers. The maximum length of each is 6 digits, and neither can be negative values. Both X and Y are required, and "0.0" isn't a valid version. LATEST_WORKING - the most recent valid version being developed in a DataBrew project. LATEST_PUBLISHED - the most recent published version.

    *)
}
Sourceval make : ?createdBy:??? -> ?createDate:??? -> ?lastModifiedBy:??? -> ?lastModifiedDate:??? -> ?projectName:??? -> ?publishedBy:??? -> ?publishedDate:??? -> ?description:??? -> ?name:??? -> ?resourceArn:??? -> ?steps:??? -> ?tags:??? -> ?recipeVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `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 | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of CreatedBy.t | `Timestamp of Date.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