/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Unique ID of rescore execution plan */ export type Id = string; export type Arn = string; /** * Tags for labeling the execution plan * * @maxItems 200 */ export type Tags = Tag[]; /** * Name of kendra ranking rescore execution plan */ export type Name = string; export type RescoreCapacityUnits = number; /** * A KendraRanking Rescore execution plan */ export interface AwsKendrarankingExecutionplan { Id?: Id; Arn?: Arn; /** * A description for the execution plan */ Description?: string; Tags?: Tags; Name: Name; CapacityUnits?: CapacityUnitsConfiguration; } /** * A label for tagging KendraRanking resources */ export interface Tag { /** * A string used to identify this tag */ Key: string; /** * A string containing the value for the tag */ Value: string; } /** * Capacity units */ export interface CapacityUnitsConfiguration { RescoreCapacityUnits: RescoreCapacityUnits; }