Module Values.RecipeSummarySource

Provides a summary of the properties of a recipe. For a complete listing, call the DescribeRecipe API.

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

    The name of the recipe.

    *)
  2. recipeArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the recipe.

    *)
  3. status : Status.t option;
    (*

    The status of the recipe.

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

    The date and time (in Unix time) that the recipe was created.

    *)
  5. lastUpdatedDateTime : Date.t option;
    (*

    The date and time (in Unix time) that the recipe was last updated.

    *)
  6. domain : Domain.t option;
    (*

    The domain of the recipe (if the recipe is a Domain dataset group use case).

    *)
}
Sourceval make : ?name:??? -> ?recipeArn:??? -> ?status:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?domain:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Name.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