Class: Aws::IoT::Types::UpdateIndexingConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::UpdateIndexingConfigurationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass UpdateIndexingConfigurationRequest data as a hash:
{
thing_indexing_configuration: {
thing_indexing_mode: "OFF", # required, accepts OFF, REGISTRY, REGISTRY_AND_SHADOW
thing_connectivity_indexing_mode: "OFF", # accepts OFF, STATUS
},
thing_group_indexing_configuration: {
thing_group_indexing_mode: "OFF", # required, accepts OFF, ON
},
}
Instance Attribute Summary collapse
-
#thing_group_indexing_configuration ⇒ Types::ThingGroupIndexingConfiguration
Thing group indexing configuration.
-
#thing_indexing_configuration ⇒ Types::ThingIndexingConfiguration
Thing indexing configuration.
Instance Attribute Details
#thing_group_indexing_configuration ⇒ Types::ThingGroupIndexingConfiguration
Thing group indexing configuration.
11041 11042 11043 11044 11045 |
# File 'lib/aws-sdk-iot/types.rb', line 11041 class UpdateIndexingConfigurationRequest < Struct.new( :thing_indexing_configuration, :thing_group_indexing_configuration) include Aws::Structure end |
#thing_indexing_configuration ⇒ Types::ThingIndexingConfiguration
Thing indexing configuration.
11041 11042 11043 11044 11045 |
# File 'lib/aws-sdk-iot/types.rb', line 11041 class UpdateIndexingConfigurationRequest < Struct.new( :thing_indexing_configuration, :thing_group_indexing_configuration) include Aws::Structure end |