Module Values_0.LastActiveDefinitionSource

When there are multiple versions of a blueprint and the latest version has some errors, this attribute indicates the last successful blueprint definition that is available with the service.

Sourcetype nonrec t = {
  1. description : Generic512CharString.t option;
    (*

    The description of the blueprint.

    *)
  2. lastModifiedOn : TimestampValue.t option;
    (*

    The date and time the blueprint was last modified.

    *)
  3. parameterSpec : BlueprintParameterSpec.t option;
    (*

    A JSON string specifying the parameters for the blueprint.

    *)
  4. blueprintLocation : GenericString.t option;
    (*

    Specifies a path in Amazon S3 where the blueprint is published by the Glue developer.

    *)
  5. blueprintServiceLocation : GenericString.t option;
    (*

    Specifies a path in Amazon S3 where the blueprint is copied when you create or update the blueprint.

    *)
}
Sourceval make : ?description:??? -> ?lastModifiedOn:??? -> ?parameterSpec:??? -> ?blueprintLocation:??? -> ?blueprintServiceLocation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Generic512CharString.t | `Timestamp of TimestampValue.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