interface TextDocumentStatisticsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QBusiness.CfnIndexPropsMixin.TextDocumentStatisticsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsqbusiness#CfnIndexPropsMixin_TextDocumentStatisticsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.qbusiness.CfnIndexPropsMixin.TextDocumentStatisticsProperty |
Python | aws_cdk.cfn_property_mixins.aws_qbusiness.CfnIndexPropsMixin.TextDocumentStatisticsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_qbusiness » 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 { aws_qbusiness as qbusiness } from '@aws-cdk/cfn-property-mixins';
const textDocumentStatisticsProperty: qbusiness.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