Module Values_2.UsageProfileDefinitionSource

Describes an Glue usage profile.

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

    The name of the usage profile.

    *)
  2. description : Values_0.DescriptionString.t option;
    (*

    A description of the usage profile.

    *)
  3. createdOn : Values_0.TimestampValue.t option;
    (*

    The date and time when the usage profile was created.

    *)
  4. lastModifiedOn : Values_0.TimestampValue.t option;
    (*

    The date and time when the usage profile was last modified.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?createdOn:??? -> ?lastModifiedOn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.NameString.t | `Timestamp of Values_0.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