Module Values_1.CreateDynamicThingGroupRequestSource

Creates a dynamic thing group. Requires permission to access the CreateDynamicThingGroup action.

Sourcetype nonrec t = {
  1. thingGroupName : Values_0.ThingGroupName.t;
    (*

    The dynamic thing group name to create.

    *)
  2. thingGroupProperties : Values_0.ThingGroupProperties.t option;
    (*

    The dynamic thing group properties.

    *)
  3. indexName : Values_0.IndexName.t option;
    (*

    The dynamic thing group index name. Currently one index is supported: AWS_Things.

    *)
  4. queryString : Values_0.QueryString.t;
    (*

    The dynamic thing group search query string. See Query Syntax for information about query string syntax.

    *)
  5. queryVersion : Values_0.QueryVersion.t option;
    (*

    The dynamic thing group query version. Currently one query version is supported: "2017-09-30". If not specified, the query version defaults to this value.

    *)
  6. tags : Values_0.TagList.t option;
    (*

    Metadata which can be used to manage the dynamic thing group.

    *)
}
Sourceval context_ : string
Sourceval make : ?thingGroupProperties:??? -> ?indexName:??? -> ?queryVersion:??? -> ?tags:??? -> thingGroupName:Values_0.ThingGroupName.t -> queryString:Values_0.QueryString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.ThingGroupName.t | `Structure of (string * [> `String of string | `Structure of (string * [> `Boolean of bool | `Map of ([> `String of string ] * [> `String of string ]) list ]) list ]) list ]) 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