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: