Module Values.EnvironmentBlueprintSummarySource

The details of an environment blueprint summary.

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

    The identifier of the blueprint.

    *)
  2. name : EnvironmentBlueprintName.t option;
    (*

    The name of the blueprint.

    *)
  3. description : Description.t option;
    (*

    The description of a blueprint.

    *)
  4. provider : String_.t option;
    (*

    The provider of the blueprint.

    *)
  5. provisioningProperties : ProvisioningProperties.t option;
    (*

    The provisioning properties of the blueprint.

    *)
  6. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp of when an environment blueprint was created.

    *)
  7. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp of when the blueprint was enabled.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?description:??? -> ?provider:??? -> ?provisioningProperties:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EnvironmentBlueprintId.t | `Structure of (string * [> `Structure of (string * [> `String of String_.t ]) list ]) list | `Timestamp of SyntheticTimestamp_date_time.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