You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::IoT::Types::CreateDynamicThingGroupRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateDynamicThingGroupRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  thing_group_name: "ThingGroupName", # required
  thing_group_properties: {
    thing_group_description: "ThingGroupDescription",
    attribute_payload: {
      attributes: {
        "AttributeName" => "AttributeValue",
      },
      merge: false,
    },
  },
  index_name: "IndexName",
  query_string: "QueryString", # required
  query_version: "QueryVersion",
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#index_nameString

The dynamic thing group index name.

Currently one index is supported: \"AWS_Things\".

Returns:

  • (String)

    The dynamic thing group index name.

#query_stringString

The dynamic thing group search query string.

See Query Syntax for information about query string syntax.

Returns:

  • (String)

    The dynamic thing group search query string.

#query_versionString

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.

Returns:

  • (String)

    The dynamic thing group query version.

#tagsArray<Types::Tag>

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

Returns:

  • (Array<Types::Tag>)

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

#thing_group_nameString

The dynamic thing group name to create.

Returns:

  • (String)

    The dynamic thing group name to create.

#thing_group_propertiesTypes::ThingGroupProperties

The dynamic thing group properties.

Returns: