Module AmplifyUIBuilder.Theme

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-theme.html

type theme_values = {
  1. value : theme_value option;
  2. key : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-theme-themevalues.html

and theme_value = {
  1. value : string option;
  2. children : theme_values list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-theme-themevalue.html

type properties = {
  1. app_id : string option;
  2. environment_name : string option;
  3. values : theme_values list option;
  4. overrides : theme_values list option;
  5. tags : string Stdlib__Map.Make(Stdlib.String).t option;
  6. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplifyuibuilder-theme.html;

val make_properties : ?app_id:string -> ?environment_name:string -> ?values:theme_values list -> ?overrides:theme_values list -> ?tags:string Stdlib__Map.Make(Stdlib.String).t -> ?name:string -> unit -> properties
val make_theme_values : ?value:theme_value -> ?key:string -> unit -> theme_values
val make_theme_value : ?value:string -> ?children:theme_values list -> unit -> theme_value
val yojson_of_theme_values : theme_values -> Yojson.Safe.t
val yojson_of_theme_value : theme_value -> Yojson.Safe.t
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. modified_at : string;
  3. created_at : string;
  4. id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string