Interface IndexingFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IndexingFilter.Builder,IndexingFilter>,SdkBuilder<IndexingFilter.Builder,IndexingFilter>,SdkPojo
- Enclosing class:
- IndexingFilter
public static interface IndexingFilter.Builder extends SdkPojo, CopyableBuilder<IndexingFilter.Builder,IndexingFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IndexingFilter.BuildergeoLocations(Collection<GeoLocationTarget> geoLocations)The list of geolocation targets that you select to index.IndexingFilter.BuildergeoLocations(Consumer<GeoLocationTarget.Builder>... geoLocations)The list of geolocation targets that you select to index.IndexingFilter.BuildergeoLocations(GeoLocationTarget... geoLocations)The list of geolocation targets that you select to index.IndexingFilter.BuildernamedShadowNames(String... namedShadowNames)The shadow names that you select to index.IndexingFilter.BuildernamedShadowNames(Collection<String> namedShadowNames)The shadow names that you select to index.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
namedShadowNames
IndexingFilter.Builder namedShadowNames(Collection<String> namedShadowNames)
The shadow names that you select to index. The default maximum number of shadow names for indexing is 10. To increase the limit, see Amazon Web Services IoT Device Management Quotas in the Amazon Web Services General Reference.
- Parameters:
namedShadowNames- The shadow names that you select to index. The default maximum number of shadow names for indexing is 10. To increase the limit, see Amazon Web Services IoT Device Management Quotas in the Amazon Web Services General Reference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
namedShadowNames
IndexingFilter.Builder namedShadowNames(String... namedShadowNames)
The shadow names that you select to index. The default maximum number of shadow names for indexing is 10. To increase the limit, see Amazon Web Services IoT Device Management Quotas in the Amazon Web Services General Reference.
- Parameters:
namedShadowNames- The shadow names that you select to index. The default maximum number of shadow names for indexing is 10. To increase the limit, see Amazon Web Services IoT Device Management Quotas in the Amazon Web Services General Reference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
geoLocations
IndexingFilter.Builder geoLocations(Collection<GeoLocationTarget> geoLocations)
The list of geolocation targets that you select to index. The default maximum number of geolocation targets for indexing is
1. To increase the limit, see Amazon Web Services IoT Device Management Quotas in the Amazon Web Services General Reference.- Parameters:
geoLocations- The list of geolocation targets that you select to index. The default maximum number of geolocation targets for indexing is1. To increase the limit, see Amazon Web Services IoT Device Management Quotas in the Amazon Web Services General Reference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
geoLocations
IndexingFilter.Builder geoLocations(GeoLocationTarget... geoLocations)
The list of geolocation targets that you select to index. The default maximum number of geolocation targets for indexing is
1. To increase the limit, see Amazon Web Services IoT Device Management Quotas in the Amazon Web Services General Reference.- Parameters:
geoLocations- The list of geolocation targets that you select to index. The default maximum number of geolocation targets for indexing is1. To increase the limit, see Amazon Web Services IoT Device Management Quotas in the Amazon Web Services General Reference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
geoLocations
IndexingFilter.Builder geoLocations(Consumer<GeoLocationTarget.Builder>... geoLocations)
The list of geolocation targets that you select to index. The default maximum number of geolocation targets for indexing is
This is a convenience method that creates an instance of the1. To increase the limit, see Amazon Web Services IoT Device Management Quotas in the Amazon Web Services General Reference.GeoLocationTarget.Builderavoiding the need to create one manually viaGeoLocationTarget.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#geoLocations(List.) - Parameters:
geoLocations- a consumer that will call methods onGeoLocationTarget.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#geoLocations(java.util.Collection)
-
-