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
device_defender_indexing_mode: "OFF", # accepts OFF, VIOLATIONS
named_shadow_indexing_mode: "OFF", # accepts OFF, ON
managed_fields: [
{
name: "FieldName",
type: "Number", # accepts Number, String, Boolean
},
],
custom_fields: [
{
name: "FieldName",
type: "Number", # accepts Number, String, Boolean
},
],
},
thing_group_indexing_configuration: {
thing_group_indexing_mode: "OFF", # required, accepts OFF, ON
managed_fields: [
{
name: "FieldName",
type: "Number", # accepts Number, String, Boolean
},
],
custom_fields: [
{
name: "FieldName",
type: "Number", # accepts Number, String, Boolean
},
],
},
}
Constant Summary collapse
- SENSITIVE =
[]
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.
19499 19500 19501 19502 19503 19504 |
# File 'lib/aws-sdk-iot/types.rb', line 19499 class UpdateIndexingConfigurationRequest < Struct.new( :thing_indexing_configuration, :thing_group_indexing_configuration) SENSITIVE = [] include Aws::Structure end |
#thing_indexing_configuration ⇒ Types::ThingIndexingConfiguration
Thing indexing configuration.
19499 19500 19501 19502 19503 19504 |
# File 'lib/aws-sdk-iot/types.rb', line 19499 class UpdateIndexingConfigurationRequest < Struct.new( :thing_indexing_configuration, :thing_group_indexing_configuration) SENSITIVE = [] include Aws::Structure end |