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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIndex.IndexStatisticsPropertystatic final classAn implementation forCfnIndex.IndexStatisticsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTextDocumentStatistics
The number of documents indexed.Returns union: either
IResolvableorCfnIndex.TextDocumentStatisticsProperty- See Also:
-
builder
-