Interface CfnIndex.IndexStatisticsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIndex.IndexStatisticsProperty.Jsii$Proxy
- Enclosing class:
CfnIndex
@Stability(Stable)
public static interface CfnIndex.IndexStatisticsProperty
extends software.amazon.jsii.JsiiSerializable
Provides information about the number of documents in an index.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.qbusiness.*; IndexStatisticsProperty indexStatisticsProperty = IndexStatisticsProperty.builder() .textDocumentStatistics(TextDocumentStatisticsProperty.builder() .indexedTextBytes(123) .indexedTextDocumentCount(123) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnIndex.IndexStatisticsProperty
static final class
An implementation forCfnIndex.IndexStatisticsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTextDocumentStatistics
The number of documents indexed.- See Also:
-
builder
-