Interface CfnIndex.TextDocumentStatisticsProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnIndex.TextDocumentStatisticsProperty.Jsii$Proxy
- Enclosing class:
 CfnIndex
@Stability(Stable)
public static interface CfnIndex.TextDocumentStatisticsProperty
extends software.amazon.jsii.JsiiSerializable
Provides information about text 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.*;
 TextDocumentStatisticsProperty textDocumentStatisticsProperty = TextDocumentStatisticsProperty.builder()
         .indexedTextBytes(123)
         .indexedTextDocumentCount(123)
         .build();
 
 - See Also:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIndex.TextDocumentStatisticsPropertystatic final classAn implementation forCfnIndex.TextDocumentStatisticsProperty - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getIndexedTextBytes
The total size, in bytes, of the indexed documents.- See Also:
 
 - 
getIndexedTextDocumentCount
The number of text documents indexed.- See Also:
 
 - 
builder
 
 -