interface CapacityUnitsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KendraRanking.Mixins.CfnExecutionPlanPropsMixin.CapacityUnitsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskendraranking/mixins#CfnExecutionPlanPropsMixin_CapacityUnitsConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kendraranking.mixins.CfnExecutionPlanPropsMixin.CapacityUnitsConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kendraranking.mixins.CfnExecutionPlanPropsMixin.CapacityUnitsConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kendraranking » mixins » CfnExecutionPlanPropsMixin » CapacityUnitsConfigurationProperty |
Sets additional capacity units configured for your rescore execution plan.
A rescore execution plan is an Amazon Kendra Intelligent Ranking resource used for provisioning the Rescore API. You can add and remove capacity units to fit your usage requirements.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kendraranking_mixins } from '@aws-cdk/mixins-preview/aws-kendraranking';
const capacityUnitsConfigurationProperty: kendraranking_mixins.CfnExecutionPlanPropsMixin.CapacityUnitsConfigurationProperty = {
rescoreCapacityUnits: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| rescore | number | The amount of extra capacity for your rescore execution plan. |
rescoreCapacityUnits?
Type:
number
(optional)
The amount of extra capacity for your rescore execution plan.
A single extra capacity unit for a rescore execution plan provides 0.01 rescore requests per second. You can add up to 1000 extra capacity units.

.NET
Go
Java
Python
TypeScript