Module Values.DescribeRecipeResponseSource

Returns the definition of a specific DataBrew recipe corresponding to a particular version.

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

    The identifier (user name) 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 identifier (user name) of the user who last modified the recipe.

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

    The date and time that the recipe was last modified.

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

    The name of the project associated with this recipe.

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

    The identifier (user name) of the user who last published the recipe.

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

    The date and time when the recipe was last published.

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

    The description of the recipe.

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

    The name of the recipe.

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

    One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.

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

    Metadata tags associated with this project.

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

    The ARN of the recipe.

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

    The recipe version identifier.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFoundException of ResourceNotFoundException.t
  2. | `ValidationException of ValidationException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?createdBy:??? -> ?createDate:??? -> ?lastModifiedBy:??? -> ?lastModifiedDate:??? -> ?projectName:??? -> ?publishedBy:??? -> ?publishedDate:??? -> ?description:??? -> ?name:??? -> ?steps:??? -> ?tags:??? -> ?resourceArn:??? -> ?recipeVersion:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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