Module Values.ThemeSource

A theme is a collection of style settings that apply globally to the components associated with an Amplify application.

Sourcetype nonrec t = {
  1. appId : String_.t option;
    (*

    The unique ID for the Amplify app associated with the theme.

    *)
  2. environmentName : String_.t option;
    (*

    The name of the backend environment that is a part of the Amplify app.

    *)
  3. id : Uuid.t option;
    (*

    The ID for the theme.

    *)
  4. name : ThemeName.t option;
    (*

    The name of the theme.

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

    The time that the theme was created.

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

    The time that the theme was modified.

    *)
  7. values : ThemeValuesList.t option;
    (*

    A list of key-value pairs that defines the properties of the theme.

    *)
  8. overrides : ThemeValuesList.t option;
    (*

    Describes the properties that can be overriden to customize a theme.

    *)
  9. tags : Tags.t option;
    (*

    One or more key-value pairs to use when tagging the theme.

    *)
}
Sourceval make : ?appId:??? -> ?environmentName:??? -> ?id:??? -> ?name:??? -> ?createdAt:??? -> ?modifiedAt:??? -> ?values:??? -> ?overrides:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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