interface TextDocumentStatisticsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QBusiness.Mixins.CfnIndexPropsMixin.TextDocumentStatisticsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsqbusiness/mixins#CfnIndexPropsMixin_TextDocumentStatisticsProperty |
Java | software.amazon.awscdk.mixins.preview.services.qbusiness.mixins.CfnIndexPropsMixin.TextDocumentStatisticsProperty |
Python | aws_cdk.mixins_preview.aws_qbusiness.mixins.CfnIndexPropsMixin.TextDocumentStatisticsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_qbusiness » mixins » CfnIndexPropsMixin » TextDocumentStatisticsProperty |
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 { mixins as qbusiness_mixins } from '@aws-cdk/mixins-preview/aws-qbusiness';
const textDocumentStatisticsProperty: qbusiness_mixins.CfnIndexPropsMixin.TextDocumentStatisticsProperty = {
indexedTextBytes: 123,
indexedTextDocumentCount: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| indexed | number | The total size, in bytes, of the indexed documents. |
| indexed | number | The number of text documents indexed. |
indexedTextBytes?
Type:
number
(optional)
The total size, in bytes, of the indexed documents.
indexedTextDocumentCount?
Type:
number
(optional)
The number of text documents indexed.

.NET
Go
Java
Python
TypeScript