Module Values_0.UpdateDynamicThingGroupRequestSource

Updates a dynamic thing group. Requires permission to access the UpdateDynamicThingGroup action.

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

    The name of the dynamic thing group to update.

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

    The dynamic thing group properties to update.

    *)
  3. expectedVersion : OptionalVersion.t option;
    (*

    The expected version of the dynamic thing group to update.

    *)
  4. indexName : IndexName.t option;
    (*

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

    *)
  5. queryString : QueryString.t option;
    (*

    The dynamic thing group search query string to update.

    *)
  6. queryVersion : QueryVersion.t option;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : ?expectedVersion:??? -> ?indexName:??? -> ?queryString:??? -> ?queryVersion:??? -> thingGroupName:ThingGroupName.t -> thingGroupProperties:ThingGroupProperties.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of OptionalVersion.t | `String of ThingGroupName.t | `Structure of (string * [> `String of ThingGroupDescription.t | `Structure of (string * [> `Boolean of Flag.t | `Map of ([> `String of AttributeName.t ] * [> `String of AttributeValue.t ]) 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