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

.NET
Go
Java
Python
TypeScript