/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.iot.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* The thing indexing configuration. For more information, see Managing Thing Indexing. *

*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ThingIndexingConfiguration implements Serializable, Cloneable, StructuredPojo { /** *

* Thing indexing mode. Valid values are: *

* */ private String thingIndexingMode; /** *

* Thing connectivity indexing mode. Valid values are: *

* */ private String thingConnectivityIndexingMode; /** *

* Device Defender indexing mode. Valid values are: *

* *

* For more information about Device Defender violations, see Device Defender * Detect. *

*/ private String deviceDefenderIndexingMode; /** *

* Named shadow indexing mode. Valid values are: *

* *

* For more information about Shadows, see IoT Device Shadow * service. *

*/ private String namedShadowIndexingMode; /** *

* Contains fields that are indexed and whose types are already known by the Fleet Indexing service. *

*/ private java.util.List managedFields; /** *

* Contains custom field names and their data type. *

*/ private java.util.List customFields; /** *

* Provides additional filters for specific data sources. Named shadow is the only data source that currently * supports and requires a filter. To add named shadows to your fleet indexing configuration, set * namedShadowIndexingMode to be ON and specify your shadow names in filter. *

*/ private IndexingFilter filter; /** *

* Thing indexing mode. Valid values are: *

* * * @param thingIndexingMode * Thing indexing mode. Valid values are:

*