Module Values_2.ThemeSummarySource

The theme summary.

Sourcetype nonrec t = {
  1. arn : Values_0.Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the resource.

    *)
  2. name : Values_1.ThemeName.t option;
    (*

    the display name for the theme.

    *)
  3. themeId : Values_0.ShortRestrictiveResourceId.t option;
    (*

    The ID of the theme. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.

    *)
  4. latestVersionNumber : Values_1.VersionNumber.t option;
    (*

    The latest version number for the theme.

    *)
  5. createdTime : Values_0.Timestamp.t option;
    (*

    The date and time that this theme was created.

    *)
  6. lastUpdatedTime : Values_0.Timestamp.t option;
    (*

    The last date and time that this theme was updated.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?themeId:??? -> ?latestVersionNumber:??? -> ?createdTime:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Values_1.VersionNumber.t | `String of Values_0.Arn.t | `Timestamp of Values_0.Timestamp.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