1{
2    "smithy": "1.0",
3    "metadata": {
4        "suppressions": [
5            {
6                "id": "HttpMethodSemantics",
7                "namespace": "*"
8            },
9            {
10                "id": "HttpResponseCodeSemantics",
11                "namespace": "*"
12            },
13            {
14                "id": "PaginatedTrait",
15                "namespace": "*"
16            },
17            {
18                "id": "HttpHeaderTrait",
19                "namespace": "*"
20            },
21            {
22                "id": "HttpUriConflict",
23                "namespace": "*"
24            },
25            {
26                "id": "Service",
27                "namespace": "*"
28            }
29        ]
30    },
31    "shapes": {
32        "com.amazonaws.lexmodelsv2#AmazonResourceName": {
33            "type": "string",
34            "traits": {
35                "smithy.api#length": {
36                    "min": 1,
37                    "max": 1011
38                }
39            }
40        },
41        "com.amazonaws.lexmodelsv2#AttachmentTitle": {
42            "type": "string",
43            "traits": {
44                "smithy.api#length": {
45                    "min": 1,
46                    "max": 250
47                }
48            }
49        },
50        "com.amazonaws.lexmodelsv2#AttachmentUrl": {
51            "type": "string",
52            "traits": {
53                "smithy.api#length": {
54                    "min": 1,
55                    "max": 250
56                }
57            }
58        },
59        "com.amazonaws.lexmodelsv2#AudioLogDestination": {
60            "type": "structure",
61            "members": {
62                "s3Bucket": {
63                    "target": "com.amazonaws.lexmodelsv2#S3BucketLogDestination",
64                    "traits": {
65                        "smithy.api#documentation": "<p>The Amazon S3 bucket where the audio log files are stored. The IAM\n         role specified in the <code>roleArn</code> parameter of the <a>CreateBot</a> operation must have permission to write to\n         this bucket.</p>",
66                        "smithy.api#required": {}
67                    }
68                }
69            },
70            "traits": {
71                "smithy.api#documentation": "<p>The location of audio log files collected when conversation logging\n         is enabled for a bot.</p>"
72            }
73        },
74        "com.amazonaws.lexmodelsv2#AudioLogSetting": {
75            "type": "structure",
76            "members": {
77                "enabled": {
78                    "target": "com.amazonaws.lexmodelsv2#Boolean",
79                    "traits": {
80                        "smithy.api#documentation": "<p>Determines whether audio logging in enabled for the bot.</p>",
81                        "smithy.api#required": {}
82                    }
83                },
84                "destination": {
85                    "target": "com.amazonaws.lexmodelsv2#AudioLogDestination",
86                    "traits": {
87                        "smithy.api#required": {}
88                    }
89                }
90            },
91            "traits": {
92                "smithy.api#documentation": "<p>Settings for logging audio of conversations between Amazon Lex and a\n         user. You specify whether to log audio and the Amazon S3 bucket where\n         the audio file is stored.</p>"
93            }
94        },
95        "com.amazonaws.lexmodelsv2#AudioLogSettingsList": {
96            "type": "list",
97            "member": {
98                "target": "com.amazonaws.lexmodelsv2#AudioLogSetting"
99            },
100            "traits": {
101                "smithy.api#length": {
102                    "min": 1,
103                    "max": 1
104                }
105            }
106        },
107        "com.amazonaws.lexmodelsv2#Boolean": {
108            "type": "boolean"
109        },
110        "com.amazonaws.lexmodelsv2#BotAliasHistoryEvent": {
111            "type": "structure",
112            "members": {
113                "botVersion": {
114                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
115                    "traits": {
116                        "smithy.api#documentation": "<p>The version of the bot that was used in the event. </p>"
117                    }
118                },
119                "startDate": {
120                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
121                    "traits": {
122                        "smithy.api#documentation": "<p>The date and time that the event started.</p>"
123                    }
124                },
125                "endDate": {
126                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
127                    "traits": {
128                        "smithy.api#documentation": "<p>The date and time that the event ended.</p>"
129                    }
130                }
131            },
132            "traits": {
133                "smithy.api#documentation": "<p>Provides a record of an event that affects a bot alias. For example,\n         when the version of a bot that the alias points to changes.</p>"
134            }
135        },
136        "com.amazonaws.lexmodelsv2#BotAliasHistoryEventsList": {
137            "type": "list",
138            "member": {
139                "target": "com.amazonaws.lexmodelsv2#BotAliasHistoryEvent"
140            }
141        },
142        "com.amazonaws.lexmodelsv2#BotAliasId": {
143            "type": "string",
144            "traits": {
145                "smithy.api#length": {
146                    "min": 10,
147                    "max": 10
148                },
149                "smithy.api#pattern": "^(\\bTSTALIASID\\b|[0-9a-zA-Z]+)$"
150            }
151        },
152        "com.amazonaws.lexmodelsv2#BotAliasLocaleSettings": {
153            "type": "structure",
154            "members": {
155                "enabled": {
156                    "target": "com.amazonaws.lexmodelsv2#Boolean",
157                    "traits": {
158                        "smithy.api#documentation": "<p>Determines whether the locale is enabled for the bot. If the value\n         is <code>false</code>, the locale isn't available for use.</p>",
159                        "smithy.api#required": {}
160                    }
161                },
162                "codeHookSpecification": {
163                    "target": "com.amazonaws.lexmodelsv2#CodeHookSpecification",
164                    "traits": {
165                        "smithy.api#documentation": "<p>Specifies the Lambda function that should be used in the\n         locale.</p>"
166                    }
167                }
168            },
169            "traits": {
170                "smithy.api#documentation": "<p>Specifies settings that are unique to a locale. For example, you can\n         use different Lambda function depending on the bot's locale.</p>"
171            }
172        },
173        "com.amazonaws.lexmodelsv2#BotAliasLocaleSettingsMap": {
174            "type": "map",
175            "key": {
176                "target": "com.amazonaws.lexmodelsv2#LocaleId"
177            },
178            "value": {
179                "target": "com.amazonaws.lexmodelsv2#BotAliasLocaleSettings"
180            },
181            "traits": {
182                "smithy.api#length": {
183                    "min": 1
184                }
185            }
186        },
187        "com.amazonaws.lexmodelsv2#BotAliasStatus": {
188            "type": "string",
189            "traits": {
190                "smithy.api#enum": [
191                    {
192                        "value": "Creating",
193                        "name": "Creating"
194                    },
195                    {
196                        "value": "Available",
197                        "name": "Available"
198                    },
199                    {
200                        "value": "Deleting",
201                        "name": "Deleting"
202                    },
203                    {
204                        "value": "Failed",
205                        "name": "Failed"
206                    }
207                ]
208            }
209        },
210        "com.amazonaws.lexmodelsv2#BotAliasSummary": {
211            "type": "structure",
212            "members": {
213                "botAliasId": {
214                    "target": "com.amazonaws.lexmodelsv2#BotAliasId",
215                    "traits": {
216                        "smithy.api#documentation": "<p>The unique identifier assigned to the bot alias. You can use this ID\n         to get detailed information about the alias using the <a>DescribeBotAlias</a> operation.</p>"
217                    }
218                },
219                "botAliasName": {
220                    "target": "com.amazonaws.lexmodelsv2#Name",
221                    "traits": {
222                        "smithy.api#documentation": "<p>The name of the bot alias.</p>"
223                    }
224                },
225                "description": {
226                    "target": "com.amazonaws.lexmodelsv2#Description",
227                    "traits": {
228                        "smithy.api#documentation": "<p>The description of the bot alias.</p>"
229                    }
230                },
231                "botVersion": {
232                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
233                    "traits": {
234                        "smithy.api#documentation": "<p>The version of the bot that the bot alias references.</p>"
235                    }
236                },
237                "botAliasStatus": {
238                    "target": "com.amazonaws.lexmodelsv2#BotAliasStatus",
239                    "traits": {
240                        "smithy.api#documentation": "<p>The current state of the bot alias. If the status is\n            <code>Available</code>, the alias is ready for use.</p>"
241                    }
242                },
243                "creationDateTime": {
244                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
245                    "traits": {
246                        "smithy.api#documentation": "<p>A timestamp of the date and time that the bot alias was\n         created.</p>"
247                    }
248                },
249                "lastUpdatedDateTime": {
250                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
251                    "traits": {
252                        "smithy.api#documentation": "<p>A timestamp of the date and time that the bot alias was last\n         updated.</p>"
253                    }
254                }
255            },
256            "traits": {
257                "smithy.api#documentation": "<p>Summary information about bot aliases returned from the <a>ListBotAliases</a> operation.</p>"
258            }
259        },
260        "com.amazonaws.lexmodelsv2#BotAliasSummaryList": {
261            "type": "list",
262            "member": {
263                "target": "com.amazonaws.lexmodelsv2#BotAliasSummary"
264            }
265        },
266        "com.amazonaws.lexmodelsv2#BotFilter": {
267            "type": "structure",
268            "members": {
269                "name": {
270                    "target": "com.amazonaws.lexmodelsv2#BotFilterName",
271                    "traits": {
272                        "smithy.api#documentation": "<p>The name of the field to filter the list of bots.</p>",
273                        "smithy.api#required": {}
274                    }
275                },
276                "values": {
277                    "target": "com.amazonaws.lexmodelsv2#FilterValues",
278                    "traits": {
279                        "smithy.api#documentation": "<p>The value to use for filtering the list of bots.</p>",
280                        "smithy.api#required": {}
281                    }
282                },
283                "operator": {
284                    "target": "com.amazonaws.lexmodelsv2#BotFilterOperator",
285                    "traits": {
286                        "smithy.api#documentation": "<p>The operator to use for the filter. Specify <code>EQ</code> when the\n            <code>ListBots</code> operation should return only aliases that\n         equal the specified value. Specify <code>CO</code> when the\n            <code>ListBots</code> operation should return aliases that contain\n         the specified value.</p>",
287                        "smithy.api#required": {}
288                    }
289                }
290            },
291            "traits": {
292                "smithy.api#documentation": "<p>Filters the responses returned by the <code>ListBots</code>\n         operation.</p>"
293            }
294        },
295        "com.amazonaws.lexmodelsv2#BotFilterName": {
296            "type": "string",
297            "traits": {
298                "smithy.api#enum": [
299                    {
300                        "value": "BotName",
301                        "name": "BotName"
302                    }
303                ]
304            }
305        },
306        "com.amazonaws.lexmodelsv2#BotFilterOperator": {
307            "type": "string",
308            "traits": {
309                "smithy.api#enum": [
310                    {
311                        "value": "CO",
312                        "name": "Contains"
313                    },
314                    {
315                        "value": "EQ",
316                        "name": "Equals"
317                    }
318                ]
319            }
320        },
321        "com.amazonaws.lexmodelsv2#BotFilters": {
322            "type": "list",
323            "member": {
324                "target": "com.amazonaws.lexmodelsv2#BotFilter"
325            },
326            "traits": {
327                "smithy.api#length": {
328                    "min": 1,
329                    "max": 1
330                }
331            }
332        },
333        "com.amazonaws.lexmodelsv2#BotLocaleFilter": {
334            "type": "structure",
335            "members": {
336                "name": {
337                    "target": "com.amazonaws.lexmodelsv2#BotLocaleFilterName",
338                    "traits": {
339                        "smithy.api#documentation": "<p>The name of the field to filter the list of bots.</p>",
340                        "smithy.api#required": {}
341                    }
342                },
343                "values": {
344                    "target": "com.amazonaws.lexmodelsv2#FilterValues",
345                    "traits": {
346                        "smithy.api#documentation": "<p>The value to use for filtering the list of bots.</p>",
347                        "smithy.api#required": {}
348                    }
349                },
350                "operator": {
351                    "target": "com.amazonaws.lexmodelsv2#BotLocaleFilterOperator",
352                    "traits": {
353                        "smithy.api#documentation": "<p>The operator to use for the filter. Specify <code>EQ</code> when the\n            <code>ListBotLocales</code> operation should return only aliases\n         that equal the specified value. Specify <code>CO</code> when the\n            <code>ListBotLocales</code> operation should return aliases that\n         contain the specified value.</p>",
354                        "smithy.api#required": {}
355                    }
356                }
357            },
358            "traits": {
359                "smithy.api#documentation": "<p>Filters responses returned by the <code>ListBotLocales</code>\n         operation.</p>"
360            }
361        },
362        "com.amazonaws.lexmodelsv2#BotLocaleFilterName": {
363            "type": "string",
364            "traits": {
365                "smithy.api#enum": [
366                    {
367                        "value": "BotLocaleName",
368                        "name": "BotLocaleName"
369                    }
370                ]
371            }
372        },
373        "com.amazonaws.lexmodelsv2#BotLocaleFilterOperator": {
374            "type": "string",
375            "traits": {
376                "smithy.api#enum": [
377                    {
378                        "value": "CO",
379                        "name": "Contains"
380                    },
381                    {
382                        "value": "EQ",
383                        "name": "Equals"
384                    }
385                ]
386            }
387        },
388        "com.amazonaws.lexmodelsv2#BotLocaleFilters": {
389            "type": "list",
390            "member": {
391                "target": "com.amazonaws.lexmodelsv2#BotLocaleFilter"
392            },
393            "traits": {
394                "smithy.api#length": {
395                    "min": 1,
396                    "max": 1
397                }
398            }
399        },
400        "com.amazonaws.lexmodelsv2#BotLocaleHistoryEvent": {
401            "type": "structure",
402            "members": {
403                "event": {
404                    "target": "com.amazonaws.lexmodelsv2#BotLocaleHistoryEventDescription",
405                    "traits": {
406                        "smithy.api#documentation": "<p>A description of the event that occurred.</p>",
407                        "smithy.api#required": {}
408                    }
409                },
410                "eventDate": {
411                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
412                    "traits": {
413                        "smithy.api#documentation": "<p>A timestamp of the date and time that the event occurred.</p>",
414                        "smithy.api#required": {}
415                    }
416                }
417            },
418            "traits": {
419                "smithy.api#documentation": "<p>Provides information about an event that occurred affecting the bot\n         locale.</p>"
420            }
421        },
422        "com.amazonaws.lexmodelsv2#BotLocaleHistoryEventDescription": {
423            "type": "string"
424        },
425        "com.amazonaws.lexmodelsv2#BotLocaleHistoryEventsList": {
426            "type": "list",
427            "member": {
428                "target": "com.amazonaws.lexmodelsv2#BotLocaleHistoryEvent"
429            }
430        },
431        "com.amazonaws.lexmodelsv2#BotLocaleSortAttribute": {
432            "type": "string",
433            "traits": {
434                "smithy.api#enum": [
435                    {
436                        "value": "BotLocaleName",
437                        "name": "BotLocaleName"
438                    }
439                ]
440            }
441        },
442        "com.amazonaws.lexmodelsv2#BotLocaleSortBy": {
443            "type": "structure",
444            "members": {
445                "attribute": {
446                    "target": "com.amazonaws.lexmodelsv2#BotLocaleSortAttribute",
447                    "traits": {
448                        "smithy.api#documentation": "<p>The bot locale attribute to sort by.</p>",
449                        "smithy.api#required": {}
450                    }
451                },
452                "order": {
453                    "target": "com.amazonaws.lexmodelsv2#SortOrder",
454                    "traits": {
455                        "smithy.api#documentation": "<p>Specifies whether to sort the bot locales in ascending or descending\n         order.</p>",
456                        "smithy.api#required": {}
457                    }
458                }
459            },
460            "traits": {
461                "smithy.api#documentation": "<p>Specifies attributes for sorting a list of bot locales.</p>"
462            }
463        },
464        "com.amazonaws.lexmodelsv2#BotLocaleStatus": {
465            "type": "string",
466            "traits": {
467                "smithy.api#enum": [
468                    {
469                        "value": "Creating",
470                        "name": "Creating"
471                    },
472                    {
473                        "value": "Building",
474                        "name": "Building"
475                    },
476                    {
477                        "value": "Built",
478                        "name": "Built"
479                    },
480                    {
481                        "value": "ReadyExpressTesting",
482                        "name": "ReadyExpressTesting"
483                    },
484                    {
485                        "value": "Failed",
486                        "name": "Failed"
487                    },
488                    {
489                        "value": "Deleting",
490                        "name": "Deleting"
491                    },
492                    {
493                        "value": "NotBuilt",
494                        "name": "NotBuilt"
495                    }
496                ]
497            }
498        },
499        "com.amazonaws.lexmodelsv2#BotLocaleSummary": {
500            "type": "structure",
501            "members": {
502                "localeId": {
503                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
504                    "traits": {
505                        "smithy.api#documentation": "<p>The language and locale of the bot locale.</p>"
506                    }
507                },
508                "localeName": {
509                    "target": "com.amazonaws.lexmodelsv2#LocaleName",
510                    "traits": {
511                        "smithy.api#documentation": "<p>The name of the bot locale.</p>"
512                    }
513                },
514                "description": {
515                    "target": "com.amazonaws.lexmodelsv2#Description",
516                    "traits": {
517                        "smithy.api#documentation": "<p>The description of the bot locale.</p>"
518                    }
519                },
520                "botLocaleStatus": {
521                    "target": "com.amazonaws.lexmodelsv2#BotLocaleStatus",
522                    "traits": {
523                        "smithy.api#documentation": "<p>The current status of the bot locale. When the status is\n            <code>Built</code> the locale is ready for use.</p>"
524                    }
525                },
526                "lastUpdatedDateTime": {
527                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
528                    "traits": {
529                        "smithy.api#documentation": "<p>A timestamp of the date and time that the bot locale was last\n         updated.</p>"
530                    }
531                },
532                "lastBuildSubmittedDateTime": {
533                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
534                    "traits": {
535                        "smithy.api#documentation": "<p>A timestamp of the date and time that the bot locale was last\n         built.</p>"
536                    }
537                }
538            },
539            "traits": {
540                "smithy.api#documentation": "<p>Summary information about bot locales returned by the <a>ListBotLocales</a> operation.</p>"
541            }
542        },
543        "com.amazonaws.lexmodelsv2#BotLocaleSummaryList": {
544            "type": "list",
545            "member": {
546                "target": "com.amazonaws.lexmodelsv2#BotLocaleSummary"
547            }
548        },
549        "com.amazonaws.lexmodelsv2#BotSortAttribute": {
550            "type": "string",
551            "traits": {
552                "smithy.api#enum": [
553                    {
554                        "value": "BotName",
555                        "name": "BotName"
556                    }
557                ]
558            }
559        },
560        "com.amazonaws.lexmodelsv2#BotSortBy": {
561            "type": "structure",
562            "members": {
563                "attribute": {
564                    "target": "com.amazonaws.lexmodelsv2#BotSortAttribute",
565                    "traits": {
566                        "smithy.api#documentation": "<p>The attribute to use to sort the list of bots.</p>",
567                        "smithy.api#required": {}
568                    }
569                },
570                "order": {
571                    "target": "com.amazonaws.lexmodelsv2#SortOrder",
572                    "traits": {
573                        "smithy.api#documentation": "<p>The order to sort the list. You can choose ascending or\n         descending.</p>",
574                        "smithy.api#required": {}
575                    }
576                }
577            },
578            "traits": {
579                "smithy.api#documentation": "<p>Specifies attributes for sorting a list of bots.</p>"
580            }
581        },
582        "com.amazonaws.lexmodelsv2#BotStatus": {
583            "type": "string",
584            "traits": {
585                "smithy.api#enum": [
586                    {
587                        "value": "Creating",
588                        "name": "Creating"
589                    },
590                    {
591                        "value": "Available",
592                        "name": "Available"
593                    },
594                    {
595                        "value": "Inactive",
596                        "name": "Inactive"
597                    },
598                    {
599                        "value": "Deleting",
600                        "name": "Deleting"
601                    },
602                    {
603                        "value": "Failed",
604                        "name": "Failed"
605                    },
606                    {
607                        "value": "Versioning",
608                        "name": "Versioning"
609                    }
610                ]
611            }
612        },
613        "com.amazonaws.lexmodelsv2#BotSummary": {
614            "type": "structure",
615            "members": {
616                "botId": {
617                    "target": "com.amazonaws.lexmodelsv2#Id",
618                    "traits": {
619                        "smithy.api#documentation": "<p>The unique identifier assigned to the bot. Use this ID to get\n         detailed information about the bot with the <a>DescribeBot</a> operation.</p>"
620                    }
621                },
622                "botName": {
623                    "target": "com.amazonaws.lexmodelsv2#Name",
624                    "traits": {
625                        "smithy.api#documentation": "<p>The name of the bot.</p>"
626                    }
627                },
628                "description": {
629                    "target": "com.amazonaws.lexmodelsv2#Description",
630                    "traits": {
631                        "smithy.api#documentation": "<p>The description of the bot.</p>"
632                    }
633                },
634                "botStatus": {
635                    "target": "com.amazonaws.lexmodelsv2#BotStatus",
636                    "traits": {
637                        "smithy.api#documentation": "<p>The current status of the bot. When the status is\n            <code>Available</code> the bot is ready for use.</p>"
638                    }
639                },
640                "latestBotVersion": {
641                    "target": "com.amazonaws.lexmodelsv2#NumericalBotVersion",
642                    "traits": {
643                        "smithy.api#documentation": "<p>The latest numerical version in use for the bot.</p>"
644                    }
645                },
646                "lastUpdatedDateTime": {
647                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
648                    "traits": {
649                        "smithy.api#documentation": "<p>The date and time that the bot was last updated.</p>"
650                    }
651                }
652            },
653            "traits": {
654                "smithy.api#documentation": "<p>Summary information about a bot returned by the <a>ListBots</a> operation.</p>"
655            }
656        },
657        "com.amazonaws.lexmodelsv2#BotSummaryList": {
658            "type": "list",
659            "member": {
660                "target": "com.amazonaws.lexmodelsv2#BotSummary"
661            }
662        },
663        "com.amazonaws.lexmodelsv2#BotVersion": {
664            "type": "string",
665            "traits": {
666                "smithy.api#length": {
667                    "min": 1,
668                    "max": 5
669                },
670                "smithy.api#pattern": "^(DRAFT|[0-9]+)$"
671            }
672        },
673        "com.amazonaws.lexmodelsv2#BotVersionLocaleDetails": {
674            "type": "structure",
675            "members": {
676                "sourceBotVersion": {
677                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
678                    "traits": {
679                        "smithy.api#documentation": "<p>The version of a bot used for a bot locale.</p>",
680                        "smithy.api#required": {}
681                    }
682                }
683            },
684            "traits": {
685                "smithy.api#documentation": "<p>The version of a bot used for a bot locale.</p>"
686            }
687        },
688        "com.amazonaws.lexmodelsv2#BotVersionLocaleSpecification": {
689            "type": "map",
690            "key": {
691                "target": "com.amazonaws.lexmodelsv2#LocaleId"
692            },
693            "value": {
694                "target": "com.amazonaws.lexmodelsv2#BotVersionLocaleDetails"
695            },
696            "traits": {
697                "smithy.api#length": {
698                    "min": 1
699                }
700            }
701        },
702        "com.amazonaws.lexmodelsv2#BotVersionSortAttribute": {
703            "type": "string",
704            "traits": {
705                "smithy.api#enum": [
706                    {
707                        "value": "BotVersion",
708                        "name": "BotVersion"
709                    }
710                ]
711            }
712        },
713        "com.amazonaws.lexmodelsv2#BotVersionSortBy": {
714            "type": "structure",
715            "members": {
716                "attribute": {
717                    "target": "com.amazonaws.lexmodelsv2#BotVersionSortAttribute",
718                    "traits": {
719                        "smithy.api#documentation": "<p>The attribute to use to sort the list of versions.</p>",
720                        "smithy.api#required": {}
721                    }
722                },
723                "order": {
724                    "target": "com.amazonaws.lexmodelsv2#SortOrder",
725                    "traits": {
726                        "smithy.api#documentation": "<p>The order to sort the list. You can specify ascending or descending\n         order.</p>",
727                        "smithy.api#required": {}
728                    }
729                }
730            },
731            "traits": {
732                "smithy.api#documentation": "<p>Specifies attributes for sorting a list of bot versions.</p>"
733            }
734        },
735        "com.amazonaws.lexmodelsv2#BotVersionSummary": {
736            "type": "structure",
737            "members": {
738                "botName": {
739                    "target": "com.amazonaws.lexmodelsv2#Name",
740                    "traits": {
741                        "smithy.api#documentation": "<p>The name of the bot associated with the version.</p>"
742                    }
743                },
744                "botVersion": {
745                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
746                    "traits": {
747                        "smithy.api#documentation": "<p>The numeric version of the bot, or <code>DRAFT</code> to indicate\n         that this is the version of the bot that can be updated..</p>"
748                    }
749                },
750                "description": {
751                    "target": "com.amazonaws.lexmodelsv2#Description",
752                    "traits": {
753                        "smithy.api#documentation": "<p>The description of the version.</p>"
754                    }
755                },
756                "botStatus": {
757                    "target": "com.amazonaws.lexmodelsv2#BotStatus",
758                    "traits": {
759                        "smithy.api#documentation": "<p>The status of the bot. When the status is available, the version of\n         the bot is ready for use.</p>"
760                    }
761                },
762                "creationDateTime": {
763                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
764                    "traits": {
765                        "smithy.api#documentation": "<p>A timestamp of the date and time that the version was\n         created.</p>"
766                    }
767                }
768            },
769            "traits": {
770                "smithy.api#documentation": "<p>Summary information about a bot version returned by the <a>ListBotVersions</a> operation.</p>"
771            }
772        },
773        "com.amazonaws.lexmodelsv2#BotVersionSummaryList": {
774            "type": "list",
775            "member": {
776                "target": "com.amazonaws.lexmodelsv2#BotVersionSummary"
777            }
778        },
779        "com.amazonaws.lexmodelsv2#BoxedBoolean": {
780            "type": "boolean",
781            "traits": {
782                "smithy.api#box": {}
783            }
784        },
785        "com.amazonaws.lexmodelsv2#BuildBotLocale": {
786            "type": "operation",
787            "input": {
788                "target": "com.amazonaws.lexmodelsv2#BuildBotLocaleRequest"
789            },
790            "output": {
791                "target": "com.amazonaws.lexmodelsv2#BuildBotLocaleResponse"
792            },
793            "errors": [
794                {
795                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
796                },
797                {
798                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
799                },
800                {
801                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
802                },
803                {
804                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
805                },
806                {
807                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
808                },
809                {
810                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
811                }
812            ],
813            "traits": {
814                "smithy.api#documentation": "<p>Builds a bot, its intents, and its slot types into a specific\n         locale. A bot can be built into multiple locales. At runtime the locale\n         is used to choose a specific build of the bot.</p>",
815                "smithy.api#http": {
816                    "method": "POST",
817                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}",
818                    "code": 202
819                }
820            }
821        },
822        "com.amazonaws.lexmodelsv2#BuildBotLocaleRequest": {
823            "type": "structure",
824            "members": {
825                "botId": {
826                    "target": "com.amazonaws.lexmodelsv2#Id",
827                    "traits": {
828                        "smithy.api#documentation": "<p>The identifier of the bot to build. The identifier is returned in\n         the response from the  operation.</p>",
829                        "smithy.api#httpLabel": {},
830                        "smithy.api#required": {}
831                    }
832                },
833                "botVersion": {
834                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
835                    "traits": {
836                        "smithy.api#documentation": "<p>The version of the bot to build. This can only be the draft version\n         of the bot.</p>",
837                        "smithy.api#httpLabel": {},
838                        "smithy.api#required": {}
839                    }
840                },
841                "localeId": {
842                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
843                    "traits": {
844                        "smithy.api#documentation": "<p>The identifier of the language and locale that the bot will be used\n         in. The string must match one of the supported locales. All of the\n         intents, slot types, and slots used in the bot must have the same\n         locale. For more information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
845                        "smithy.api#httpLabel": {},
846                        "smithy.api#required": {}
847                    }
848                }
849            }
850        },
851        "com.amazonaws.lexmodelsv2#BuildBotLocaleResponse": {
852            "type": "structure",
853            "members": {
854                "botId": {
855                    "target": "com.amazonaws.lexmodelsv2#Id",
856                    "traits": {
857                        "smithy.api#documentation": "<p>The identifier of the specified bot.</p>"
858                    }
859                },
860                "botVersion": {
861                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
862                    "traits": {
863                        "smithy.api#documentation": "<p>The version of the bot that was built. This is only the draft\n         version of the bot.</p>"
864                    }
865                },
866                "localeId": {
867                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
868                    "traits": {
869                        "smithy.api#documentation": "<p>The language and locale specified of where the bot can be\n         used.</p>"
870                    }
871                },
872                "botLocaleStatus": {
873                    "target": "com.amazonaws.lexmodelsv2#BotLocaleStatus",
874                    "traits": {
875                        "smithy.api#documentation": "<p>The bot's build status. When the status is\n            <code>ReadyExpressTesting</code> you can test the bot using the\n         utterances defined for the intents and slot types. When the status is\n            <code>Built</code>, the bot is ready for use and can be tested using\n         any utterance.</p>"
876                    }
877                },
878                "lastBuildSubmittedDateTime": {
879                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
880                    "traits": {
881                        "smithy.api#documentation": "<p>A timestamp indicating the date and time that the bot was last built\n         for this locale.</p>"
882                    }
883                }
884            }
885        },
886        "com.amazonaws.lexmodelsv2#BuiltInIntentSortAttribute": {
887            "type": "string",
888            "traits": {
889                "smithy.api#enum": [
890                    {
891                        "value": "IntentSignature",
892                        "name": "IntentSignature"
893                    }
894                ]
895            }
896        },
897        "com.amazonaws.lexmodelsv2#BuiltInIntentSortBy": {
898            "type": "structure",
899            "members": {
900                "attribute": {
901                    "target": "com.amazonaws.lexmodelsv2#BuiltInIntentSortAttribute",
902                    "traits": {
903                        "smithy.api#documentation": "<p>The attribute to use to sort the list of built-in intents.</p>",
904                        "smithy.api#required": {}
905                    }
906                },
907                "order": {
908                    "target": "com.amazonaws.lexmodelsv2#SortOrder",
909                    "traits": {
910                        "smithy.api#documentation": "<p>The order to sort the list. You can specify ascending or descending\n         order.</p>",
911                        "smithy.api#required": {}
912                    }
913                }
914            },
915            "traits": {
916                "smithy.api#documentation": "<p>Specifies attributes for sorting a list of built-in intents.</p>"
917            }
918        },
919        "com.amazonaws.lexmodelsv2#BuiltInIntentSummary": {
920            "type": "structure",
921            "members": {
922                "intentSignature": {
923                    "target": "com.amazonaws.lexmodelsv2#IntentSignature",
924                    "traits": {
925                        "smithy.api#documentation": "<p>The signature of the built-in intent. Use this to specify the parent\n         intent of a derived intent.</p>"
926                    }
927                },
928                "description": {
929                    "target": "com.amazonaws.lexmodelsv2#Description",
930                    "traits": {
931                        "smithy.api#documentation": "<p>The description of the intent.</p>"
932                    }
933                }
934            },
935            "traits": {
936                "smithy.api#documentation": "<p>Provides summary information about a built-in intent for the <a>ListBuiltInIntents</a> operation.</p>"
937            }
938        },
939        "com.amazonaws.lexmodelsv2#BuiltInIntentSummaryList": {
940            "type": "list",
941            "member": {
942                "target": "com.amazonaws.lexmodelsv2#BuiltInIntentSummary"
943            }
944        },
945        "com.amazonaws.lexmodelsv2#BuiltInOrCustomSlotTypeId": {
946            "type": "string",
947            "traits": {
948                "smithy.api#length": {
949                    "min": 1,
950                    "max": 25
951                },
952                "smithy.api#pattern": "^((AMAZON\\.)[a-zA-Z_]+?|[0-9a-zA-Z]+)$"
953            }
954        },
955        "com.amazonaws.lexmodelsv2#BuiltInSlotTypeSortAttribute": {
956            "type": "string",
957            "traits": {
958                "smithy.api#enum": [
959                    {
960                        "value": "SlotTypeSignature",
961                        "name": "SlotTypeSignature"
962                    }
963                ]
964            }
965        },
966        "com.amazonaws.lexmodelsv2#BuiltInSlotTypeSortBy": {
967            "type": "structure",
968            "members": {
969                "attribute": {
970                    "target": "com.amazonaws.lexmodelsv2#BuiltInSlotTypeSortAttribute",
971                    "traits": {
972                        "smithy.api#documentation": "<p>The attribute to use to sort the list of built-in intents.</p>",
973                        "smithy.api#required": {}
974                    }
975                },
976                "order": {
977                    "target": "com.amazonaws.lexmodelsv2#SortOrder",
978                    "traits": {
979                        "smithy.api#documentation": "<p>The order to sort the list. You can choose ascending or\n         descending.</p>",
980                        "smithy.api#required": {}
981                    }
982                }
983            },
984            "traits": {
985                "smithy.api#documentation": "<p>Specifies attributes for sorting a list of built-in slot\n         types.</p>"
986            }
987        },
988        "com.amazonaws.lexmodelsv2#BuiltInSlotTypeSummary": {
989            "type": "structure",
990            "members": {
991                "slotTypeSignature": {
992                    "target": "com.amazonaws.lexmodelsv2#SlotTypeSignature",
993                    "traits": {
994                        "smithy.api#documentation": "<p>The signature of the built-in slot type. Use this to specify the\n         parent slot type of a derived slot type.</p>"
995                    }
996                },
997                "description": {
998                    "target": "com.amazonaws.lexmodelsv2#Description",
999                    "traits": {
1000                        "smithy.api#documentation": "<p>The description of the built-in slot type.</p>"
1001                    }
1002                }
1003            },
1004            "traits": {
1005                "smithy.api#documentation": "<p>Provides summary information about a built-in slot type for the\n            <a>ListBuiltInSlotTypes</a> operation.</p>"
1006            }
1007        },
1008        "com.amazonaws.lexmodelsv2#BuiltInSlotTypeSummaryList": {
1009            "type": "list",
1010            "member": {
1011                "target": "com.amazonaws.lexmodelsv2#BuiltInSlotTypeSummary"
1012            }
1013        },
1014        "com.amazonaws.lexmodelsv2#BuiltInsMaxResults": {
1015            "type": "integer",
1016            "traits": {
1017                "smithy.api#box": {},
1018                "smithy.api#range": {
1019                    "min": 20,
1020                    "max": 20
1021                }
1022            }
1023        },
1024        "com.amazonaws.lexmodelsv2#Button": {
1025            "type": "structure",
1026            "members": {
1027                "text": {
1028                    "target": "com.amazonaws.lexmodelsv2#ButtonText",
1029                    "traits": {
1030                        "smithy.api#documentation": "<p>The text that appears on the button. Use this to tell the user what\n         value is returned when they choose this button.</p>",
1031                        "smithy.api#required": {}
1032                    }
1033                },
1034                "value": {
1035                    "target": "com.amazonaws.lexmodelsv2#ButtonValue",
1036                    "traits": {
1037                        "smithy.api#documentation": "<p>The value returned to Amazon Lex when the user chooses this button. This\n         must be one of the slot values configured for the slot.</p>",
1038                        "smithy.api#required": {}
1039                    }
1040                }
1041            },
1042            "traits": {
1043                "smithy.api#documentation": "<p>Describes a button to use on a response card used to gather slot\n         values from a user.</p>"
1044            }
1045        },
1046        "com.amazonaws.lexmodelsv2#ButtonText": {
1047            "type": "string",
1048            "traits": {
1049                "smithy.api#length": {
1050                    "min": 1,
1051                    "max": 50
1052                }
1053            }
1054        },
1055        "com.amazonaws.lexmodelsv2#ButtonValue": {
1056            "type": "string",
1057            "traits": {
1058                "smithy.api#length": {
1059                    "min": 1,
1060                    "max": 50
1061                }
1062            }
1063        },
1064        "com.amazonaws.lexmodelsv2#ButtonsList": {
1065            "type": "list",
1066            "member": {
1067                "target": "com.amazonaws.lexmodelsv2#Button"
1068            },
1069            "traits": {
1070                "smithy.api#length": {
1071                    "min": 0,
1072                    "max": 5
1073                }
1074            }
1075        },
1076        "com.amazonaws.lexmodelsv2#ChildDirected": {
1077            "type": "boolean"
1078        },
1079        "com.amazonaws.lexmodelsv2#CloudWatchLogGroupArn": {
1080            "type": "string",
1081            "traits": {
1082                "smithy.api#length": {
1083                    "min": 1,
1084                    "max": 2048
1085                },
1086                "smithy.api#pattern": "^arn:[\\w\\-]+:logs:[\\w\\-]+:[\\d]{12}:log-group:[\\.\\-_/#A-Za-z0-9]{1,512}(?::\\*)?$"
1087            }
1088        },
1089        "com.amazonaws.lexmodelsv2#CloudWatchLogGroupLogDestination": {
1090            "type": "structure",
1091            "members": {
1092                "cloudWatchLogGroupArn": {
1093                    "target": "com.amazonaws.lexmodelsv2#CloudWatchLogGroupArn",
1094                    "traits": {
1095                        "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the log group where text and\n         metadata logs are delivered.</p>",
1096                        "smithy.api#required": {}
1097                    }
1098                },
1099                "logPrefix": {
1100                    "target": "com.amazonaws.lexmodelsv2#LogPrefix",
1101                    "traits": {
1102                        "smithy.api#documentation": "<p>The prefix of the log stream name within the log group that you\n         specified </p>",
1103                        "smithy.api#required": {}
1104                    }
1105                }
1106            },
1107            "traits": {
1108                "smithy.api#documentation": "<p>The Amazon CloudWatch Logs log group where the text and metadata logs are\n         delivered. The log group must exist before you enable logging.</p>"
1109            }
1110        },
1111        "com.amazonaws.lexmodelsv2#CodeHookInterfaceVersion": {
1112            "type": "string",
1113            "traits": {
1114                "smithy.api#length": {
1115                    "min": 1,
1116                    "max": 5
1117                }
1118            }
1119        },
1120        "com.amazonaws.lexmodelsv2#CodeHookSpecification": {
1121            "type": "structure",
1122            "members": {
1123                "lambdaCodeHook": {
1124                    "target": "com.amazonaws.lexmodelsv2#LambdaCodeHook",
1125                    "traits": {
1126                        "smithy.api#required": {}
1127                    }
1128                }
1129            },
1130            "traits": {
1131                "smithy.api#documentation": "<p>Contains information about code hooks that Amazon Lex calls during a\n         conversation.</p>"
1132            }
1133        },
1134        "com.amazonaws.lexmodelsv2#ConfidenceThreshold": {
1135            "type": "double",
1136            "traits": {
1137                "smithy.api#box": {},
1138                "smithy.api#range": {
1139                    "min": 0,
1140                    "max": 1
1141                }
1142            }
1143        },
1144        "com.amazonaws.lexmodelsv2#ConflictException": {
1145            "type": "structure",
1146            "members": {
1147                "message": {
1148                    "target": "com.amazonaws.lexmodelsv2#ExceptionMessage"
1149                }
1150            },
1151            "traits": {
1152                "smithy.api#documentation": "<p></p>",
1153                "smithy.api#error": "client",
1154                "smithy.api#httpError": 409
1155            }
1156        },
1157        "com.amazonaws.lexmodelsv2#ContextTimeToLiveInSeconds": {
1158            "type": "integer",
1159            "traits": {
1160                "smithy.api#box": {},
1161                "smithy.api#range": {
1162                    "min": 5,
1163                    "max": 86400
1164                }
1165            }
1166        },
1167        "com.amazonaws.lexmodelsv2#ContextTurnsToLive": {
1168            "type": "integer",
1169            "traits": {
1170                "smithy.api#box": {},
1171                "smithy.api#range": {
1172                    "min": 1,
1173                    "max": 20
1174                }
1175            }
1176        },
1177        "com.amazonaws.lexmodelsv2#ConversationLogSettings": {
1178            "type": "structure",
1179            "members": {
1180                "textLogSettings": {
1181                    "target": "com.amazonaws.lexmodelsv2#TextLogSettingsList",
1182                    "traits": {
1183                        "smithy.api#documentation": "<p>The Amazon CloudWatch Logs settings for logging text and metadata.</p>"
1184                    }
1185                },
1186                "audioLogSettings": {
1187                    "target": "com.amazonaws.lexmodelsv2#AudioLogSettingsList",
1188                    "traits": {
1189                        "smithy.api#documentation": "<p>The Amazon S3 settings for logging audio to an S3 bucket.</p>"
1190                    }
1191                }
1192            },
1193            "traits": {
1194                "smithy.api#documentation": "<p>Configures conversation logging that saves audio, text, and metadata\n         for the conversations with your users.</p>"
1195            }
1196        },
1197        "com.amazonaws.lexmodelsv2#CreateBot": {
1198            "type": "operation",
1199            "input": {
1200                "target": "com.amazonaws.lexmodelsv2#CreateBotRequest"
1201            },
1202            "output": {
1203                "target": "com.amazonaws.lexmodelsv2#CreateBotResponse"
1204            },
1205            "errors": [
1206                {
1207                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
1208                },
1209                {
1210                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
1211                },
1212                {
1213                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
1214                },
1215                {
1216                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
1217                },
1218                {
1219                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
1220                },
1221                {
1222                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
1223                }
1224            ],
1225            "traits": {
1226                "smithy.api#documentation": "<p>Creates an Amazon Lex conversational bot. </p>",
1227                "smithy.api#http": {
1228                    "method": "PUT",
1229                    "uri": "/bots",
1230                    "code": 202
1231                }
1232            }
1233        },
1234        "com.amazonaws.lexmodelsv2#CreateBotAlias": {
1235            "type": "operation",
1236            "input": {
1237                "target": "com.amazonaws.lexmodelsv2#CreateBotAliasRequest"
1238            },
1239            "output": {
1240                "target": "com.amazonaws.lexmodelsv2#CreateBotAliasResponse"
1241            },
1242            "errors": [
1243                {
1244                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
1245                },
1246                {
1247                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
1248                },
1249                {
1250                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
1251                },
1252                {
1253                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
1254                },
1255                {
1256                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
1257                },
1258                {
1259                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
1260                }
1261            ],
1262            "traits": {
1263                "smithy.api#documentation": "<p>Creates an alias for the specified version of a bot. Use an alias to\n         enable you to change the version of a bot without updating applications\n         that use the bot.</p>\n         <p>For example, you can create an alias called \"PROD\" that your\n         applications use to call the Amazon Lex bot. </p>",
1264                "smithy.api#http": {
1265                    "method": "PUT",
1266                    "uri": "/bots/{botId}/botaliases",
1267                    "code": 202
1268                }
1269            }
1270        },
1271        "com.amazonaws.lexmodelsv2#CreateBotAliasRequest": {
1272            "type": "structure",
1273            "members": {
1274                "botAliasName": {
1275                    "target": "com.amazonaws.lexmodelsv2#Name",
1276                    "traits": {
1277                        "smithy.api#documentation": "<p>The alias to create. The name must be unique for the bot.</p>",
1278                        "smithy.api#required": {}
1279                    }
1280                },
1281                "description": {
1282                    "target": "com.amazonaws.lexmodelsv2#Description",
1283                    "traits": {
1284                        "smithy.api#documentation": "<p>A description of the alias. Use this description to help identify\n         the alias.</p>"
1285                    }
1286                },
1287                "botVersion": {
1288                    "target": "com.amazonaws.lexmodelsv2#NumericalBotVersion",
1289                    "traits": {
1290                        "smithy.api#documentation": "<p>The version of the bot that this alias points to. You can use the\n             operation to change the bot\n         version associated with the alias.</p>"
1291                    }
1292                },
1293                "botAliasLocaleSettings": {
1294                    "target": "com.amazonaws.lexmodelsv2#BotAliasLocaleSettingsMap",
1295                    "traits": {
1296                        "smithy.api#documentation": "<p>Maps configuration information to a specific locale. You can use\n         this parameter to specify a specific Lambda function to run different\n         functions in different locales.</p>"
1297                    }
1298                },
1299                "conversationLogSettings": {
1300                    "target": "com.amazonaws.lexmodelsv2#ConversationLogSettings",
1301                    "traits": {
1302                        "smithy.api#documentation": "<p>Specifies whether Amazon Lex logs text and audio for a conversation with\n         the bot. When you enable conversation logs, text logs store text input,\n         transcripts of audio input, and associated metadata in Amazon CloudWatch Logs. Audio\n         logs store audio input in Amazon S3.</p>"
1303                    }
1304                },
1305                "sentimentAnalysisSettings": {
1306                    "target": "com.amazonaws.lexmodelsv2#SentimentAnalysisSettings"
1307                },
1308                "botId": {
1309                    "target": "com.amazonaws.lexmodelsv2#Id",
1310                    "traits": {
1311                        "smithy.api#documentation": "<p>The unique identifier of the bot that the alias applies to.</p>",
1312                        "smithy.api#httpLabel": {},
1313                        "smithy.api#required": {}
1314                    }
1315                },
1316                "tags": {
1317                    "target": "com.amazonaws.lexmodelsv2#TagMap",
1318                    "traits": {
1319                        "smithy.api#documentation": "<p>A list of tags to add to the bot alias. You can only add tags when\n         you create an alias, you can't use the <code>UpdateBotAlias</code>\n         operation to update the tags on a bot alias. To update tags, use the\n            <code>TagResource</code> operation.</p>"
1320                    }
1321                }
1322            }
1323        },
1324        "com.amazonaws.lexmodelsv2#CreateBotAliasResponse": {
1325            "type": "structure",
1326            "members": {
1327                "botAliasId": {
1328                    "target": "com.amazonaws.lexmodelsv2#BotAliasId",
1329                    "traits": {
1330                        "smithy.api#documentation": "<p>The unique identifier of the bot alias.</p>"
1331                    }
1332                },
1333                "botAliasName": {
1334                    "target": "com.amazonaws.lexmodelsv2#Name",
1335                    "traits": {
1336                        "smithy.api#documentation": "<p>The name specified for the bot alias.</p>"
1337                    }
1338                },
1339                "description": {
1340                    "target": "com.amazonaws.lexmodelsv2#Description",
1341                    "traits": {
1342                        "smithy.api#documentation": "<p>The description specified for the bot alias.</p>"
1343                    }
1344                },
1345                "botVersion": {
1346                    "target": "com.amazonaws.lexmodelsv2#NumericalBotVersion",
1347                    "traits": {
1348                        "smithy.api#documentation": "<p>The version of the bot associated with this alias.</p>"
1349                    }
1350                },
1351                "botAliasLocaleSettings": {
1352                    "target": "com.amazonaws.lexmodelsv2#BotAliasLocaleSettingsMap",
1353                    "traits": {
1354                        "smithy.api#documentation": "<p>Configuration information for a specific locale.</p>"
1355                    }
1356                },
1357                "conversationLogSettings": {
1358                    "target": "com.amazonaws.lexmodelsv2#ConversationLogSettings",
1359                    "traits": {
1360                        "smithy.api#documentation": "<p>The conversation log settings specified for the alias.</p>"
1361                    }
1362                },
1363                "sentimentAnalysisSettings": {
1364                    "target": "com.amazonaws.lexmodelsv2#SentimentAnalysisSettings"
1365                },
1366                "botAliasStatus": {
1367                    "target": "com.amazonaws.lexmodelsv2#BotAliasStatus",
1368                    "traits": {
1369                        "smithy.api#documentation": "<p>The current status of the alias. The alias is first put into the\n            <code>Creating</code> state. When the alias is ready to be used, it\n         is put into the <code>Available</code> state. You can use the\n            <code>DescribeBotAlias</code> operation to get the current state of\n         an alias.</p>"
1370                    }
1371                },
1372                "botId": {
1373                    "target": "com.amazonaws.lexmodelsv2#Id",
1374                    "traits": {
1375                        "smithy.api#documentation": "<p>The unique identifier of the bot that this alias applies to.</p>"
1376                    }
1377                },
1378                "creationDateTime": {
1379                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
1380                    "traits": {
1381                        "smithy.api#documentation": "<p>A Unix timestamp indicating the date and time that the bot alias was\n         created.</p>"
1382                    }
1383                },
1384                "tags": {
1385                    "target": "com.amazonaws.lexmodelsv2#TagMap",
1386                    "traits": {
1387                        "smithy.api#documentation": "<p>A list of tags associated with the bot alias.</p>"
1388                    }
1389                }
1390            }
1391        },
1392        "com.amazonaws.lexmodelsv2#CreateBotLocale": {
1393            "type": "operation",
1394            "input": {
1395                "target": "com.amazonaws.lexmodelsv2#CreateBotLocaleRequest"
1396            },
1397            "output": {
1398                "target": "com.amazonaws.lexmodelsv2#CreateBotLocaleResponse"
1399            },
1400            "errors": [
1401                {
1402                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
1403                },
1404                {
1405                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
1406                },
1407                {
1408                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
1409                },
1410                {
1411                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
1412                },
1413                {
1414                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
1415                },
1416                {
1417                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
1418                }
1419            ],
1420            "traits": {
1421                "smithy.api#documentation": "<p>Creates a locale in the bot. The locale contains the intents and\n         slot types that the bot uses in conversations with users in the\n         specified language and locale. You must add a locale to a bot before\n         you can add intents and slot types to the bot.</p>",
1422                "smithy.api#http": {
1423                    "method": "PUT",
1424                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales",
1425                    "code": 202
1426                }
1427            }
1428        },
1429        "com.amazonaws.lexmodelsv2#CreateBotLocaleRequest": {
1430            "type": "structure",
1431            "members": {
1432                "botId": {
1433                    "target": "com.amazonaws.lexmodelsv2#Id",
1434                    "traits": {
1435                        "smithy.api#documentation": "<p>The identifier of the bot to create the locale for.</p>",
1436                        "smithy.api#httpLabel": {},
1437                        "smithy.api#required": {}
1438                    }
1439                },
1440                "botVersion": {
1441                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
1442                    "traits": {
1443                        "smithy.api#documentation": "<p>The version of the bot to create the locale for. This can only be\n         the draft version of the bot.</p>",
1444                        "smithy.api#httpLabel": {},
1445                        "smithy.api#required": {}
1446                    }
1447                },
1448                "localeId": {
1449                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
1450                    "traits": {
1451                        "smithy.api#documentation": "<p>The identifier of the language and locale that the bot will be used\n         in. The string must match one of the supported locales. All of the\n         intents, slot types, and slots used in the bot must have the same\n         locale. For more information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
1452                        "smithy.api#required": {}
1453                    }
1454                },
1455                "description": {
1456                    "target": "com.amazonaws.lexmodelsv2#Description",
1457                    "traits": {
1458                        "smithy.api#documentation": "<p>A description of the bot locale. Use this to help identify the bot\n         locale in lists.</p>"
1459                    }
1460                },
1461                "nluIntentConfidenceThreshold": {
1462                    "target": "com.amazonaws.lexmodelsv2#ConfidenceThreshold",
1463                    "traits": {
1464                        "smithy.api#documentation": "<p>Determines the threshold where Amazon Lex will insert the\n            <code>AMAZON.FallbackIntent</code>,\n            <code>AMAZON.KendraSearchIntent</code>, or both when returning\n         alternative intents. <code>AMAZON.FallbackIntent</code> and\n            <code>AMAZON.KendraSearchIntent</code> are only inserted if they are\n         configured for the bot.</p>\n         <p>For example, suppose a bot is configured with the confidence\n         threshold of 0.80 and the <code>AMAZON.FallbackIntent</code>. Amazon Lex\n         returns three alternative intents with the following confidence scores:\n         IntentA (0.70), IntentB (0.60), IntentC (0.50). The response from the\n         PostText operation would be:</p>\n         <ul>\n            <li>\n               <p>AMAZON.FallbackIntent</p>\n            </li>\n            <li>\n               <p>IntentA</p>\n            </li>\n            <li>\n               <p>IntentB</p>\n            </li>\n            <li>\n               <p>IntentC</p>\n            </li>\n         </ul>",
1465                        "smithy.api#required": {}
1466                    }
1467                },
1468                "voiceSettings": {
1469                    "target": "com.amazonaws.lexmodelsv2#VoiceSettings",
1470                    "traits": {
1471                        "smithy.api#documentation": "<p>The Amazon Polly voice ID that Amazon Lex uses for voice interaction with the\n         user.</p>"
1472                    }
1473                }
1474            }
1475        },
1476        "com.amazonaws.lexmodelsv2#CreateBotLocaleResponse": {
1477            "type": "structure",
1478            "members": {
1479                "botId": {
1480                    "target": "com.amazonaws.lexmodelsv2#Id",
1481                    "traits": {
1482                        "smithy.api#documentation": "<p>The specified bot identifier.</p>"
1483                    }
1484                },
1485                "botVersion": {
1486                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
1487                    "traits": {
1488                        "smithy.api#documentation": "<p>The specified bot version.</p>"
1489                    }
1490                },
1491                "localeName": {
1492                    "target": "com.amazonaws.lexmodelsv2#LocaleName",
1493                    "traits": {
1494                        "smithy.api#documentation": "<p>The specified locale name.</p>"
1495                    }
1496                },
1497                "localeId": {
1498                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
1499                    "traits": {
1500                        "smithy.api#documentation": "<p>The specified locale identifier.</p>"
1501                    }
1502                },
1503                "description": {
1504                    "target": "com.amazonaws.lexmodelsv2#Description",
1505                    "traits": {
1506                        "smithy.api#documentation": "<p>The specified description of the bot locale.</p>"
1507                    }
1508                },
1509                "nluIntentConfidenceThreshold": {
1510                    "target": "com.amazonaws.lexmodelsv2#ConfidenceThreshold",
1511                    "traits": {
1512                        "smithy.api#documentation": "<p>The specified confidence threshold for inserting the\n            <code>AMAZON.FallbackIntent</code> and\n            <code>AMAZON.KendraSearchIntent</code> intents.</p>"
1513                    }
1514                },
1515                "voiceSettings": {
1516                    "target": "com.amazonaws.lexmodelsv2#VoiceSettings",
1517                    "traits": {
1518                        "smithy.api#documentation": "<p>The Amazon Polly voice ID that Amazon Lex uses for voice interaction with the\n         user.</p>"
1519                    }
1520                },
1521                "botLocaleStatus": {
1522                    "target": "com.amazonaws.lexmodelsv2#BotLocaleStatus",
1523                    "traits": {
1524                        "smithy.api#documentation": "<p>The status of the bot.</p>\n         <p>When the status is <code>Creating</code> the bot locale is being\n         configured. When the status is <code>Building</code> Amazon Lex is building\n         the bot for testing and use.</p>\n         <p>If the status of the bot is <code>ReadyExpressTesting</code>, you\n         can test the bot using the exact utterances specified in the bots'\n         intents. When the bot is ready for full testing or to run, the status\n         is <code>Built</code>.</p>\n         <p>If there was a problem with building the bot, the status is\n            <code>Failed</code>. If the bot was saved but not built, the status\n         is <code>NotBuilt</code>.</p>"
1525                    }
1526                },
1527                "creationDateTime": {
1528                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
1529                    "traits": {
1530                        "smithy.api#documentation": "<p>A timestamp specifying the date and time that the bot locale was\n         created.</p>"
1531                    }
1532                }
1533            }
1534        },
1535        "com.amazonaws.lexmodelsv2#CreateBotRequest": {
1536            "type": "structure",
1537            "members": {
1538                "botName": {
1539                    "target": "com.amazonaws.lexmodelsv2#Name",
1540                    "traits": {
1541                        "smithy.api#documentation": "<p>The name of the bot. The bot name must be unique in the account that\n         creates the bot.</p>",
1542                        "smithy.api#required": {}
1543                    }
1544                },
1545                "description": {
1546                    "target": "com.amazonaws.lexmodelsv2#Description",
1547                    "traits": {
1548                        "smithy.api#documentation": "<p>A description of the bot. It appears in lists to help you identify a\n         particular bot.</p>"
1549                    }
1550                },
1551                "roleArn": {
1552                    "target": "com.amazonaws.lexmodelsv2#RoleArn",
1553                    "traits": {
1554                        "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of an IAM role that has permission to\n         access the bot.</p>",
1555                        "smithy.api#required": {}
1556                    }
1557                },
1558                "dataPrivacy": {
1559                    "target": "com.amazonaws.lexmodelsv2#DataPrivacy",
1560                    "traits": {
1561                        "smithy.api#documentation": "<p>Provides information on additional privacy protections Amazon Lex should\n         use with the bot's data.</p>",
1562                        "smithy.api#required": {}
1563                    }
1564                },
1565                "idleSessionTTLInSeconds": {
1566                    "target": "com.amazonaws.lexmodelsv2#SessionTTL",
1567                    "traits": {
1568                        "smithy.api#documentation": "<p>The time, in seconds, that Amazon Lex should keep information about a\n         user's conversation with the bot. </p>\n         <p>A user interaction remains active for the amount of time specified.\n         If no conversation occurs during this time, the session expires and\n         Amazon Lex deletes any data provided before the timeout.</p>\n         <p>You can specify between 60 (1 minute) and 86,400 (24 hours)\n         seconds.</p>",
1569                        "smithy.api#required": {}
1570                    }
1571                },
1572                "botTags": {
1573                    "target": "com.amazonaws.lexmodelsv2#TagMap",
1574                    "traits": {
1575                        "smithy.api#documentation": "<p>A list of tags to add to the bot. You can only add tags when you\n         create a bot. You can't use the <code>UpdateBot</code> operation to\n         update tags. To update tags, use the <code>TagResource</code>\n         operation.</p>"
1576                    }
1577                },
1578                "testBotAliasTags": {
1579                    "target": "com.amazonaws.lexmodelsv2#TagMap",
1580                    "traits": {
1581                        "smithy.api#documentation": "<p>A list of tags to add to the test alias for a bot. You can only add\n         tags when you create a bot. You can't use the <code>UpdateAlias</code>\n         operation to update tags. To update tags on the test alias, use the\n            <code>TagResource</code> operation.</p>"
1582                    }
1583                }
1584            }
1585        },
1586        "com.amazonaws.lexmodelsv2#CreateBotResponse": {
1587            "type": "structure",
1588            "members": {
1589                "botId": {
1590                    "target": "com.amazonaws.lexmodelsv2#Id",
1591                    "traits": {
1592                        "smithy.api#documentation": "<p>A unique identifier for a particular bot. You use this to identify\n         the bot when you call other Amazon Lex API operations.</p>"
1593                    }
1594                },
1595                "botName": {
1596                    "target": "com.amazonaws.lexmodelsv2#Name",
1597                    "traits": {
1598                        "smithy.api#documentation": "<p>The name specified for the bot.</p>"
1599                    }
1600                },
1601                "description": {
1602                    "target": "com.amazonaws.lexmodelsv2#Description",
1603                    "traits": {
1604                        "smithy.api#documentation": "<p>The description specified for the bot.</p>"
1605                    }
1606                },
1607                "roleArn": {
1608                    "target": "com.amazonaws.lexmodelsv2#RoleArn",
1609                    "traits": {
1610                        "smithy.api#documentation": "<p>The IAM role specified for the bot.</p>"
1611                    }
1612                },
1613                "dataPrivacy": {
1614                    "target": "com.amazonaws.lexmodelsv2#DataPrivacy",
1615                    "traits": {
1616                        "smithy.api#documentation": "<p>The data privacy settings specified for the bot.</p>"
1617                    }
1618                },
1619                "idleSessionTTLInSeconds": {
1620                    "target": "com.amazonaws.lexmodelsv2#SessionTTL",
1621                    "traits": {
1622                        "smithy.api#documentation": "<p>The session idle time specified for the bot.</p>"
1623                    }
1624                },
1625                "botStatus": {
1626                    "target": "com.amazonaws.lexmodelsv2#BotStatus",
1627                    "traits": {
1628                        "smithy.api#documentation": "<p>Shows the current status of the bot. The bot is first in the\n            <code>Creating</code> status. Once the bot is read for use, it\n         changes to the <code>Available</code> status. After the bot is created,\n         you can use the <code>Draft</code> version of the bot.</p>"
1629                    }
1630                },
1631                "creationDateTime": {
1632                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
1633                    "traits": {
1634                        "smithy.api#documentation": "<p>A timestamp indicating the date and time that the bot was\n         created.</p>"
1635                    }
1636                },
1637                "botTags": {
1638                    "target": "com.amazonaws.lexmodelsv2#TagMap",
1639                    "traits": {
1640                        "smithy.api#documentation": "<p>A list of tags associated with the bot.</p>"
1641                    }
1642                },
1643                "testBotAliasTags": {
1644                    "target": "com.amazonaws.lexmodelsv2#TagMap",
1645                    "traits": {
1646                        "smithy.api#documentation": "<p>A list of tags associated with the test alias for the bot.</p>"
1647                    }
1648                }
1649            }
1650        },
1651        "com.amazonaws.lexmodelsv2#CreateBotVersion": {
1652            "type": "operation",
1653            "input": {
1654                "target": "com.amazonaws.lexmodelsv2#CreateBotVersionRequest"
1655            },
1656            "output": {
1657                "target": "com.amazonaws.lexmodelsv2#CreateBotVersionResponse"
1658            },
1659            "errors": [
1660                {
1661                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
1662                },
1663                {
1664                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
1665                },
1666                {
1667                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
1668                },
1669                {
1670                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
1671                },
1672                {
1673                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
1674                },
1675                {
1676                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
1677                }
1678            ],
1679            "traits": {
1680                "smithy.api#documentation": "<p>Creates a new version of the bot based on the <code>DRAFT</code>\n         version. If the <code>DRAFT</code> version of this resource hasn't\n         changed since you created the last version, Amazon Lex doesn't create a new\n         version, it returns the last created version.</p>\n         <p>When you create the first version of a bot, Amazon Lex sets the version\n         to 1. Subsequent versions increment by 1.</p>",
1681                "smithy.api#http": {
1682                    "method": "PUT",
1683                    "uri": "/bots/{botId}/botversions",
1684                    "code": 202
1685                }
1686            }
1687        },
1688        "com.amazonaws.lexmodelsv2#CreateBotVersionRequest": {
1689            "type": "structure",
1690            "members": {
1691                "botId": {
1692                    "target": "com.amazonaws.lexmodelsv2#Id",
1693                    "traits": {
1694                        "smithy.api#documentation": "<p>The identifier of the bot to create the version for.</p>",
1695                        "smithy.api#httpLabel": {},
1696                        "smithy.api#required": {}
1697                    }
1698                },
1699                "description": {
1700                    "target": "com.amazonaws.lexmodelsv2#Description",
1701                    "traits": {
1702                        "smithy.api#documentation": "<p>A description of the version. Use the description to help identify\n         the version in lists.</p>"
1703                    }
1704                },
1705                "botVersionLocaleSpecification": {
1706                    "target": "com.amazonaws.lexmodelsv2#BotVersionLocaleSpecification",
1707                    "traits": {
1708                        "smithy.api#documentation": "<p>Specifies the locales that Amazon Lex adds to this version. You can\n         choose the <code>Draft</code> version or any other previously published\n         version for each locale. When you specify a source version, the locale\n         data is copied from the source version to the new version.</p>",
1709                        "smithy.api#required": {}
1710                    }
1711                }
1712            }
1713        },
1714        "com.amazonaws.lexmodelsv2#CreateBotVersionResponse": {
1715            "type": "structure",
1716            "members": {
1717                "botId": {
1718                    "target": "com.amazonaws.lexmodelsv2#Id",
1719                    "traits": {
1720                        "smithy.api#documentation": "<p>The bot identifier specified in the request.</p>"
1721                    }
1722                },
1723                "description": {
1724                    "target": "com.amazonaws.lexmodelsv2#Description",
1725                    "traits": {
1726                        "smithy.api#documentation": "<p>The description of the version specified in the request.</p>"
1727                    }
1728                },
1729                "botVersion": {
1730                    "target": "com.amazonaws.lexmodelsv2#NumericalBotVersion",
1731                    "traits": {
1732                        "smithy.api#documentation": "<p>The version number assigned to the version.</p>"
1733                    }
1734                },
1735                "botVersionLocaleSpecification": {
1736                    "target": "com.amazonaws.lexmodelsv2#BotVersionLocaleSpecification",
1737                    "traits": {
1738                        "smithy.api#documentation": "<p>The source versions used for each locale in the new version.</p>"
1739                    }
1740                },
1741                "botStatus": {
1742                    "target": "com.amazonaws.lexmodelsv2#BotStatus",
1743                    "traits": {
1744                        "smithy.api#documentation": "<p>When you send a request to create or update a bot, Amazon Lex sets the\n         status response element to <code>Creating</code>. After Amazon Lex builds\n         the bot, it sets status to <code>Available</code>. If Amazon Lex can't build\n         the bot, it sets status to <code>Failed</code>.</p>"
1745                    }
1746                },
1747                "creationDateTime": {
1748                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
1749                    "traits": {
1750                        "smithy.api#documentation": "<p>A timestamp of the date and time that the version was\n         created.</p>"
1751                    }
1752                }
1753            }
1754        },
1755        "com.amazonaws.lexmodelsv2#CreateIntent": {
1756            "type": "operation",
1757            "input": {
1758                "target": "com.amazonaws.lexmodelsv2#CreateIntentRequest"
1759            },
1760            "output": {
1761                "target": "com.amazonaws.lexmodelsv2#CreateIntentResponse"
1762            },
1763            "errors": [
1764                {
1765                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
1766                },
1767                {
1768                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
1769                },
1770                {
1771                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
1772                },
1773                {
1774                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
1775                },
1776                {
1777                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
1778                },
1779                {
1780                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
1781                }
1782            ],
1783            "traits": {
1784                "smithy.api#documentation": "<p>Creates an intent.</p>\n         <p>To define the interaction between the user and your bot, you define\n         one or more intents. For example, for a pizza ordering bot you would\n         create an <code>OrderPizza</code> intent.</p>\n         <p>When you create an intent, you must provide a name. You can\n         optionally provide the following:</p>\n         <ul>\n            <li>\n               <p>Sample utterances. For example, \"I want to order a pizza\" and\n               \"Can I order a pizza.\" You can't provide utterances for built-in\n               intents.</p>\n            </li>\n            <li>\n               <p>Information to be gathered. You specify slots for the\n               information that you bot requests from the user. You can specify\n               standard slot types, such as date and time, or custom slot types\n               for your application.</p>\n            </li>\n            <li>\n               <p>How the intent is fulfilled. You can provide a Lambda function\n               or configure the intent to return the intent information to your\n               client application. If you use a Lambda function, Amazon Lex invokes\n               the function when all of the intent information is\n               available.</p>\n            </li>\n            <li>\n               <p>A confirmation prompt to send to the user to confirm an\n               intent. For example, \"Shall I order your pizza?\"</p>\n            </li>\n            <li>\n               <p>A conclusion statement to send to the user after the intent is\n               fulfilled. For example, \"I ordered your pizza.\"</p>\n            </li>\n            <li>\n               <p>A follow-up prompt that asks the user for additional activity.\n               For example, \"Do you want a drink with your pizza?\"</p>\n            </li>\n         </ul>",
1785                "smithy.api#http": {
1786                    "method": "PUT",
1787                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents",
1788                    "code": 200
1789                }
1790            }
1791        },
1792        "com.amazonaws.lexmodelsv2#CreateIntentRequest": {
1793            "type": "structure",
1794            "members": {
1795                "intentName": {
1796                    "target": "com.amazonaws.lexmodelsv2#Name",
1797                    "traits": {
1798                        "smithy.api#documentation": "<p>The name of the intent. Intent names must be unique in the locale\n         that contains the intent and cannot match the name of any built-in\n         intent.</p>",
1799                        "smithy.api#required": {}
1800                    }
1801                },
1802                "description": {
1803                    "target": "com.amazonaws.lexmodelsv2#Description",
1804                    "traits": {
1805                        "smithy.api#documentation": "<p>A description of the intent. Use the description to help identify\n         the intent in lists.</p>"
1806                    }
1807                },
1808                "parentIntentSignature": {
1809                    "target": "com.amazonaws.lexmodelsv2#IntentSignature",
1810                    "traits": {
1811                        "smithy.api#documentation": "<p>A unique identifier for the built-in intent to base this intent\n         on.</p>"
1812                    }
1813                },
1814                "sampleUtterances": {
1815                    "target": "com.amazonaws.lexmodelsv2#SampleUtterancesList",
1816                    "traits": {
1817                        "smithy.api#documentation": "<p>An array of strings that a user might say to signal the intent. For\n         example, \"I want a pizza\", or \"I want a {PizzaSize} pizza\". </p>\n         <p>In an utterance, slot names are enclosed in curly braces (\"{\", \"}\")\n         to indicate where they should be displayed in the utterance shown to\n         the user.. </p>"
1818                    }
1819                },
1820                "dialogCodeHook": {
1821                    "target": "com.amazonaws.lexmodelsv2#DialogCodeHookSettings",
1822                    "traits": {
1823                        "smithy.api#documentation": "<p>Specifies that Amazon Lex invokes the alias Lambda function for each user\n         input. You can invoke this Lambda function to personalize user\n         interaction.</p>\n         <p>For example, suppose that your bot determines that the user's name\n         is John. You Lambda function might retrieve John's information from a\n         backend database and prepopulate some of the values. For example, if\n         you find that John is gluten intolerant, you might set the\n         corresponding intent slot, <code>glutenIntolerant</code> to\n            <code>true</code>. You might find John's phone number and set the\n         corresponding session attribute.</p>"
1824                    }
1825                },
1826                "fulfillmentCodeHook": {
1827                    "target": "com.amazonaws.lexmodelsv2#FulfillmentCodeHookSettings",
1828                    "traits": {
1829                        "smithy.api#documentation": "<p>Specifies that Amazon Lex invokes the alias Lambda function when the\n         intent is ready for fulfillment. You can invoke this function to\n         complete the bot's transaction with the user.</p>\n         <p>For example, in a pizza ordering bot, the Lambda function can look up\n         the closest pizza restaurant to the customer's location and then place\n         an order on the customer's behalf.</p>"
1830                    }
1831                },
1832                "intentConfirmationSetting": {
1833                    "target": "com.amazonaws.lexmodelsv2#IntentConfirmationSetting",
1834                    "traits": {
1835                        "smithy.api#documentation": "<p>Provides prompts that Amazon Lex sends to the user to confirm the\n         completion of an intent. If the user answers \"no,\" the settings contain\n         a statement that is sent to the user to end the intent.</p>"
1836                    }
1837                },
1838                "intentClosingSetting": {
1839                    "target": "com.amazonaws.lexmodelsv2#IntentClosingSetting",
1840                    "traits": {
1841                        "smithy.api#documentation": "<p>Sets the response that Amazon Lex sends to the user when the intent is\n         closed.</p>"
1842                    }
1843                },
1844                "inputContexts": {
1845                    "target": "com.amazonaws.lexmodelsv2#InputContextsList",
1846                    "traits": {
1847                        "smithy.api#documentation": "<p>A list of contexts that must be active for this intent to be\n         considered by Amazon Lex.</p>\n         <p>When an intent has an input context list, Amazon Lex only considers using\n         the intent in an interaction with the user when the specified contexts\n         are included in the active context list for the session. If the\n         contexts are not active, then Amazon Lex will not use the intent.</p>\n         <p>A context can be automatically activated using the\n            <code>outputContexts</code> property or it can be set at\n         runtime.</p>\n         <p> For example, if there are two intents with different input contexts\n         that respond to the same utterances, only the intent with the active\n         context will respond.</p>\n         <p>An intent may have up to 5 input contexts. If an intent has multiple\n         input contexts, all of the contexts must be active to consider the\n         intent.</p>"
1848                    }
1849                },
1850                "outputContexts": {
1851                    "target": "com.amazonaws.lexmodelsv2#OutputContextsList",
1852                    "traits": {
1853                        "smithy.api#documentation": "<p>A lists of contexts that the intent activates when it is\n         fulfilled.</p>\n         <p>You can use an output context to indicate the intents that Amazon Lex\n         should consider for the next turn of the conversation with a customer. </p>\n         <p>When you use the <code>outputContextsList</code> property, all of\n         the contexts specified in the list are activated when the intent is\n         fulfilled. You can set up to 10 output contexts. You can also set the\n         number of conversation turns that the context should be active, or the\n         length of time that the context should be active.</p>"
1854                    }
1855                },
1856                "kendraConfiguration": {
1857                    "target": "com.amazonaws.lexmodelsv2#KendraConfiguration",
1858                    "traits": {
1859                        "smithy.api#documentation": "<p>Configuration information required to use the\n            <code>AMAZON.KendraSearchIntent</code> intent to connect to an Amazon Kendra\n         index. The <code>AMAZON.KendraSearchIntent</code> intent is called when\n         Amazon Lex can't determine another intent to invoke.</p>"
1860                    }
1861                },
1862                "botId": {
1863                    "target": "com.amazonaws.lexmodelsv2#Id",
1864                    "traits": {
1865                        "smithy.api#documentation": "<p>The identifier of the bot associated with this intent.</p>",
1866                        "smithy.api#httpLabel": {},
1867                        "smithy.api#required": {}
1868                    }
1869                },
1870                "botVersion": {
1871                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
1872                    "traits": {
1873                        "smithy.api#documentation": "<p>The identifier of the version of the bot associated with this\n         intent.</p>",
1874                        "smithy.api#httpLabel": {},
1875                        "smithy.api#required": {}
1876                    }
1877                },
1878                "localeId": {
1879                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
1880                    "traits": {
1881                        "smithy.api#documentation": "<p>The identifier of the language and locale where this intent is used.\n         All of the bots, slot types, and slots used by the intent must have the\n         same locale.</p>",
1882                        "smithy.api#httpLabel": {},
1883                        "smithy.api#required": {}
1884                    }
1885                }
1886            }
1887        },
1888        "com.amazonaws.lexmodelsv2#CreateIntentResponse": {
1889            "type": "structure",
1890            "members": {
1891                "intentId": {
1892                    "target": "com.amazonaws.lexmodelsv2#Id",
1893                    "traits": {
1894                        "smithy.api#documentation": "<p>A unique identifier for the intent.</p>"
1895                    }
1896                },
1897                "intentName": {
1898                    "target": "com.amazonaws.lexmodelsv2#Name",
1899                    "traits": {
1900                        "smithy.api#documentation": "<p>The name specified for the intent.</p>"
1901                    }
1902                },
1903                "description": {
1904                    "target": "com.amazonaws.lexmodelsv2#Description",
1905                    "traits": {
1906                        "smithy.api#documentation": "<p>The description specified for the intent.</p>"
1907                    }
1908                },
1909                "parentIntentSignature": {
1910                    "target": "com.amazonaws.lexmodelsv2#IntentSignature",
1911                    "traits": {
1912                        "smithy.api#documentation": "<p>The signature of the parent intent specified for the intent.</p>"
1913                    }
1914                },
1915                "sampleUtterances": {
1916                    "target": "com.amazonaws.lexmodelsv2#SampleUtterancesList",
1917                    "traits": {
1918                        "smithy.api#documentation": "<p>The sample utterances specified for the intent.</p>"
1919                    }
1920                },
1921                "dialogCodeHook": {
1922                    "target": "com.amazonaws.lexmodelsv2#DialogCodeHookSettings",
1923                    "traits": {
1924                        "smithy.api#documentation": "<p>The dialog Lambda function specified for the intent.</p>"
1925                    }
1926                },
1927                "fulfillmentCodeHook": {
1928                    "target": "com.amazonaws.lexmodelsv2#FulfillmentCodeHookSettings",
1929                    "traits": {
1930                        "smithy.api#documentation": "<p>The fulfillment Lambda function specified for the intent.</p>"
1931                    }
1932                },
1933                "intentConfirmationSetting": {
1934                    "target": "com.amazonaws.lexmodelsv2#IntentConfirmationSetting",
1935                    "traits": {
1936                        "smithy.api#documentation": "<p>The confirmation setting specified for the intent.</p>"
1937                    }
1938                },
1939                "intentClosingSetting": {
1940                    "target": "com.amazonaws.lexmodelsv2#IntentClosingSetting",
1941                    "traits": {
1942                        "smithy.api#documentation": "<p>The closing setting specified for the intent.</p>"
1943                    }
1944                },
1945                "inputContexts": {
1946                    "target": "com.amazonaws.lexmodelsv2#InputContextsList",
1947                    "traits": {
1948                        "smithy.api#documentation": "<p>The list of input contexts specified for the intent.</p>"
1949                    }
1950                },
1951                "outputContexts": {
1952                    "target": "com.amazonaws.lexmodelsv2#OutputContextsList",
1953                    "traits": {
1954                        "smithy.api#documentation": "<p>The list of output contexts specified for the intent.</p>"
1955                    }
1956                },
1957                "kendraConfiguration": {
1958                    "target": "com.amazonaws.lexmodelsv2#KendraConfiguration",
1959                    "traits": {
1960                        "smithy.api#documentation": "<p>Configuration for searching a Amazon Kendra index specified for the\n         intent.</p>"
1961                    }
1962                },
1963                "botId": {
1964                    "target": "com.amazonaws.lexmodelsv2#Id",
1965                    "traits": {
1966                        "smithy.api#documentation": "<p>The identifier of the bot associated with the intent.</p>"
1967                    }
1968                },
1969                "botVersion": {
1970                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
1971                    "traits": {
1972                        "smithy.api#documentation": "<p>The identifier of the version of the bot associated with the\n         intent.</p>"
1973                    }
1974                },
1975                "localeId": {
1976                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
1977                    "traits": {
1978                        "smithy.api#documentation": "<p>The locale that the intent is specified to use.</p>"
1979                    }
1980                },
1981                "creationDateTime": {
1982                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
1983                    "traits": {
1984                        "smithy.api#documentation": "<p>A timestamp of the date and time that the intent was created.</p>"
1985                    }
1986                }
1987            }
1988        },
1989        "com.amazonaws.lexmodelsv2#CreateSlot": {
1990            "type": "operation",
1991            "input": {
1992                "target": "com.amazonaws.lexmodelsv2#CreateSlotRequest"
1993            },
1994            "output": {
1995                "target": "com.amazonaws.lexmodelsv2#CreateSlotResponse"
1996            },
1997            "errors": [
1998                {
1999                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
2000                },
2001                {
2002                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
2003                },
2004                {
2005                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
2006                },
2007                {
2008                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
2009                },
2010                {
2011                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
2012                },
2013                {
2014                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
2015                }
2016            ],
2017            "traits": {
2018                "smithy.api#documentation": "<p>Creates a slot in an intent. A slot is a variable needed to fulfill\n         an intent. For example, an <code>OrderPizza</code> intent might need\n         slots for size, crust, and number of pizzas. For each slot, you define\n         one or more utterances that Amazon Lex uses to elicit a response from the\n         user. </p>",
2019                "smithy.api#http": {
2020                    "method": "PUT",
2021                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots",
2022                    "code": 200
2023                }
2024            }
2025        },
2026        "com.amazonaws.lexmodelsv2#CreateSlotRequest": {
2027            "type": "structure",
2028            "members": {
2029                "slotName": {
2030                    "target": "com.amazonaws.lexmodelsv2#Name",
2031                    "traits": {
2032                        "smithy.api#documentation": "<p>The name of the slot. Slot names must be unique within the bot that\n         contains the slot.</p>",
2033                        "smithy.api#required": {}
2034                    }
2035                },
2036                "description": {
2037                    "target": "com.amazonaws.lexmodelsv2#Description",
2038                    "traits": {
2039                        "smithy.api#documentation": "<p>A description of the slot. Use this to help identify the slot in\n         lists.</p>"
2040                    }
2041                },
2042                "slotTypeId": {
2043                    "target": "com.amazonaws.lexmodelsv2#BuiltInOrCustomSlotTypeId",
2044                    "traits": {
2045                        "smithy.api#documentation": "<p>The unique identifier for the slot type associated with this slot.\n         The slot type determines the values that can be entered into the\n         slot.</p>",
2046                        "smithy.api#required": {}
2047                    }
2048                },
2049                "valueElicitationSetting": {
2050                    "target": "com.amazonaws.lexmodelsv2#SlotValueElicitationSetting",
2051                    "traits": {
2052                        "smithy.api#documentation": "<p>Specifies prompts that Amazon Lex sends to the user to elicit a response\n         that provides the value for the slot. </p>",
2053                        "smithy.api#required": {}
2054                    }
2055                },
2056                "obfuscationSetting": {
2057                    "target": "com.amazonaws.lexmodelsv2#ObfuscationSetting",
2058                    "traits": {
2059                        "smithy.api#documentation": "<p>Determines how slot values are used in Amazon CloudWatch logs. If the value of\n         the <code>obfuscationSetting</code> parameter is\n            <code>DefaultObfuscation</code>, slot values are obfuscated in the\n         log output. If the value is <code>None</code>, the actual value is\n         present in the log output.</p>\n         <p>The default is to obfuscate values in the CloudWatch logs.</p>"
2060                    }
2061                },
2062                "botId": {
2063                    "target": "com.amazonaws.lexmodelsv2#Id",
2064                    "traits": {
2065                        "smithy.api#documentation": "<p>The identifier of the bot associated with the slot.</p>",
2066                        "smithy.api#httpLabel": {},
2067                        "smithy.api#required": {}
2068                    }
2069                },
2070                "botVersion": {
2071                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
2072                    "traits": {
2073                        "smithy.api#documentation": "<p>The version of the bot associated with the slot.</p>",
2074                        "smithy.api#httpLabel": {},
2075                        "smithy.api#required": {}
2076                    }
2077                },
2078                "localeId": {
2079                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
2080                    "traits": {
2081                        "smithy.api#documentation": "<p>The identifier of the language and locale that the slot will be used\n         in. The string must match one of the supported locales. All of the\n         bots, intents, slot types used by the slot must have the same locale.\n         For more information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
2082                        "smithy.api#httpLabel": {},
2083                        "smithy.api#required": {}
2084                    }
2085                },
2086                "intentId": {
2087                    "target": "com.amazonaws.lexmodelsv2#Id",
2088                    "traits": {
2089                        "smithy.api#documentation": "<p>The identifier of the intent that contains the slot.</p>",
2090                        "smithy.api#httpLabel": {},
2091                        "smithy.api#required": {}
2092                    }
2093                }
2094            }
2095        },
2096        "com.amazonaws.lexmodelsv2#CreateSlotResponse": {
2097            "type": "structure",
2098            "members": {
2099                "slotId": {
2100                    "target": "com.amazonaws.lexmodelsv2#Id",
2101                    "traits": {
2102                        "smithy.api#documentation": "<p>The unique identifier associated with the slot. Use this to identify\n         the slot when you update or delete it.</p>"
2103                    }
2104                },
2105                "slotName": {
2106                    "target": "com.amazonaws.lexmodelsv2#Name",
2107                    "traits": {
2108                        "smithy.api#documentation": "<p>The name specified for the slot.</p>"
2109                    }
2110                },
2111                "description": {
2112                    "target": "com.amazonaws.lexmodelsv2#Description",
2113                    "traits": {
2114                        "smithy.api#documentation": "<p>The description associated with the slot.</p>"
2115                    }
2116                },
2117                "slotTypeId": {
2118                    "target": "com.amazonaws.lexmodelsv2#BuiltInOrCustomSlotTypeId",
2119                    "traits": {
2120                        "smithy.api#documentation": "<p>The unique identifier of the slot type associated with this\n         slot.</p>"
2121                    }
2122                },
2123                "valueElicitationSetting": {
2124                    "target": "com.amazonaws.lexmodelsv2#SlotValueElicitationSetting",
2125                    "traits": {
2126                        "smithy.api#documentation": "<p>The value elicitation settings specified for the slot.</p>"
2127                    }
2128                },
2129                "obfuscationSetting": {
2130                    "target": "com.amazonaws.lexmodelsv2#ObfuscationSetting",
2131                    "traits": {
2132                        "smithy.api#documentation": "<p>Indicates whether the slot is configured to obfuscate values in Amazon CloudWatch\n         logs.</p>"
2133                    }
2134                },
2135                "botId": {
2136                    "target": "com.amazonaws.lexmodelsv2#Id",
2137                    "traits": {
2138                        "smithy.api#documentation": "<p>The unique identifier of the bot associated with the slot.</p>"
2139                    }
2140                },
2141                "botVersion": {
2142                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
2143                    "traits": {
2144                        "smithy.api#documentation": "<p>The version of the bot associated with the slot.</p>"
2145                    }
2146                },
2147                "localeId": {
2148                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
2149                    "traits": {
2150                        "smithy.api#documentation": "<p>The language and local specified for the slot.</p>"
2151                    }
2152                },
2153                "intentId": {
2154                    "target": "com.amazonaws.lexmodelsv2#Id",
2155                    "traits": {
2156                        "smithy.api#documentation": "<p>The unique identifier of the intent associated with the slot.</p>"
2157                    }
2158                },
2159                "creationDateTime": {
2160                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
2161                    "traits": {
2162                        "smithy.api#documentation": "<p>The timestamp of the date and time that the slot was created.</p>"
2163                    }
2164                }
2165            }
2166        },
2167        "com.amazonaws.lexmodelsv2#CreateSlotType": {
2168            "type": "operation",
2169            "input": {
2170                "target": "com.amazonaws.lexmodelsv2#CreateSlotTypeRequest"
2171            },
2172            "output": {
2173                "target": "com.amazonaws.lexmodelsv2#CreateSlotTypeResponse"
2174            },
2175            "errors": [
2176                {
2177                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
2178                },
2179                {
2180                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
2181                },
2182                {
2183                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
2184                },
2185                {
2186                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
2187                },
2188                {
2189                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
2190                },
2191                {
2192                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
2193                }
2194            ],
2195            "traits": {
2196                "smithy.api#documentation": "<p>Creates a custom slot type</p>\n         <p> To create a custom slot type, specify a name for the slot type and\n         a set of enumeration values, the values that a slot of this type can\n         assume. </p>",
2197                "smithy.api#http": {
2198                    "method": "PUT",
2199                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes",
2200                    "code": 200
2201                }
2202            }
2203        },
2204        "com.amazonaws.lexmodelsv2#CreateSlotTypeRequest": {
2205            "type": "structure",
2206            "members": {
2207                "slotTypeName": {
2208                    "target": "com.amazonaws.lexmodelsv2#Name",
2209                    "traits": {
2210                        "smithy.api#documentation": "<p>The name for the slot. A slot type name must be unique within the\n         account.</p>",
2211                        "smithy.api#required": {}
2212                    }
2213                },
2214                "description": {
2215                    "target": "com.amazonaws.lexmodelsv2#Description",
2216                    "traits": {
2217                        "smithy.api#documentation": "<p>A description of the slot type. Use the description to help identify\n         the slot type in lists.</p>"
2218                    }
2219                },
2220                "slotTypeValues": {
2221                    "target": "com.amazonaws.lexmodelsv2#SlotTypeValues",
2222                    "traits": {
2223                        "smithy.api#documentation": "<p>A list of <code>SlotTypeValue</code> objects that defines the values\n         that the slot type can take. Each value can have a list of synonyms,\n         additional values that help train the machine learning model about the\n         values that it resolves for a slot.</p>"
2224                    }
2225                },
2226                "valueSelectionSetting": {
2227                    "target": "com.amazonaws.lexmodelsv2#SlotValueSelectionSetting",
2228                    "traits": {
2229                        "smithy.api#documentation": "<p>Determines the strategy that Amazon Lex uses to select a value from the\n         list of possible values. The field can be set to one of the following\n         values:</p>\n         <ul>\n            <li>\n               <p>\n                  <code>OriginalValue</code> - Returns the value entered by the\n               user, if the user value is similar to the slot value.</p>\n            </li>\n            <li>\n               <p>\n                  <code>TopResolution</code> - If there is a resolution list for\n               the slot, return the first value in the resolution list. If there\n               is no resolution list, return null.</p>\n            </li>\n         </ul>\n         <p>If you don't specify the <code>valueSelectionSetting</code>\n         parameter, the default is <code>OriginalValue</code>.</p>",
2230                        "smithy.api#required": {}
2231                    }
2232                },
2233                "parentSlotTypeSignature": {
2234                    "target": "com.amazonaws.lexmodelsv2#SlotTypeSignature",
2235                    "traits": {
2236                        "smithy.api#documentation": "<p>The built-in slot type used as a parent of this slot type. When you\n         define a parent slot type, the new slot type has the configuration of\n         the parent slot type.</p>\n         <p>Only <code>AMAZON.AlphaNumeric</code> is supported.</p>"
2237                    }
2238                },
2239                "botId": {
2240                    "target": "com.amazonaws.lexmodelsv2#Id",
2241                    "traits": {
2242                        "smithy.api#documentation": "<p>The identifier of the bot associated with this slot type.</p>",
2243                        "smithy.api#httpLabel": {},
2244                        "smithy.api#required": {}
2245                    }
2246                },
2247                "botVersion": {
2248                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
2249                    "traits": {
2250                        "smithy.api#documentation": "<p>The identifier of the bot version associated with this slot\n         type.</p>",
2251                        "smithy.api#httpLabel": {},
2252                        "smithy.api#required": {}
2253                    }
2254                },
2255                "localeId": {
2256                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
2257                    "traits": {
2258                        "smithy.api#documentation": "<p>The identifier of the language and locale that the slot type will be\n         used in. The string must match one of the supported locales. All of the\n         bots, intents, and slots used by the slot type must have the same\n         locale. For more information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
2259                        "smithy.api#httpLabel": {},
2260                        "smithy.api#required": {}
2261                    }
2262                }
2263            }
2264        },
2265        "com.amazonaws.lexmodelsv2#CreateSlotTypeResponse": {
2266            "type": "structure",
2267            "members": {
2268                "slotTypeId": {
2269                    "target": "com.amazonaws.lexmodelsv2#Id",
2270                    "traits": {
2271                        "smithy.api#documentation": "<p>The unique identifier assigned to the slot type. Use this to\n         identify the slot type in the <code>UpdateSlotType</code> and\n            <code>DeleteSlotType</code> operations.</p>"
2272                    }
2273                },
2274                "slotTypeName": {
2275                    "target": "com.amazonaws.lexmodelsv2#Name",
2276                    "traits": {
2277                        "smithy.api#documentation": "<p>The name specified for the slot type.</p>"
2278                    }
2279                },
2280                "description": {
2281                    "target": "com.amazonaws.lexmodelsv2#Description",
2282                    "traits": {
2283                        "smithy.api#documentation": "<p>The description specified for the slot type.</p>"
2284                    }
2285                },
2286                "slotTypeValues": {
2287                    "target": "com.amazonaws.lexmodelsv2#SlotTypeValues",
2288                    "traits": {
2289                        "smithy.api#documentation": "<p>The list of values that the slot type can assume.</p>"
2290                    }
2291                },
2292                "valueSelectionSetting": {
2293                    "target": "com.amazonaws.lexmodelsv2#SlotValueSelectionSetting",
2294                    "traits": {
2295                        "smithy.api#documentation": "<p>The strategy that Amazon Lex uses to select a value from the list of\n         possible values.</p>"
2296                    }
2297                },
2298                "parentSlotTypeSignature": {
2299                    "target": "com.amazonaws.lexmodelsv2#SlotTypeSignature",
2300                    "traits": {
2301                        "smithy.api#documentation": "<p>The signature of the base slot type specified for the slot\n         type.</p>"
2302                    }
2303                },
2304                "botId": {
2305                    "target": "com.amazonaws.lexmodelsv2#Id",
2306                    "traits": {
2307                        "smithy.api#documentation": "<p>The identifier for the bot associated with the slot type.</p>"
2308                    }
2309                },
2310                "botVersion": {
2311                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
2312                    "traits": {
2313                        "smithy.api#documentation": "<p>The version of the bot associated with the slot type.</p>"
2314                    }
2315                },
2316                "localeId": {
2317                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
2318                    "traits": {
2319                        "smithy.api#documentation": "<p>The specified language and local specified for the slot type.</p>"
2320                    }
2321                },
2322                "creationDateTime": {
2323                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
2324                    "traits": {
2325                        "smithy.api#documentation": "<p>A timestamp of the date and time that the slot type was\n         created.</p>"
2326                    }
2327                }
2328            }
2329        },
2330        "com.amazonaws.lexmodelsv2#CustomPayload": {
2331            "type": "structure",
2332            "members": {
2333                "value": {
2334                    "target": "com.amazonaws.lexmodelsv2#CustomPayloadValue",
2335                    "traits": {
2336                        "smithy.api#documentation": "<p>The string that is sent to your application.</p>",
2337                        "smithy.api#required": {}
2338                    }
2339                }
2340            },
2341            "traits": {
2342                "smithy.api#documentation": "<p>A custom response string that Amazon Lex sends to your application. You\n         define the content and structure the string.</p>"
2343            }
2344        },
2345        "com.amazonaws.lexmodelsv2#CustomPayloadValue": {
2346            "type": "string",
2347            "traits": {
2348                "smithy.api#length": {
2349                    "min": 1,
2350                    "max": 1000
2351                }
2352            }
2353        },
2354        "com.amazonaws.lexmodelsv2#DataPrivacy": {
2355            "type": "structure",
2356            "members": {
2357                "childDirected": {
2358                    "target": "com.amazonaws.lexmodelsv2#ChildDirected",
2359                    "traits": {
2360                        "smithy.api#documentation": "<p>For each Amazon Lex bot created with the Amazon Lex Model Building Service,\n         you must specify whether your use of Amazon Lex is related to a website,\n         program, or other application that is directed or targeted, in whole or\n         in part, to children under age 13 and subject to the Children's Online\n         Privacy Protection Act (COPPA) by specifying <code>true</code> or\n            <code>false</code> in the <code>childDirected</code> field. By\n         specifying <code>true</code> in the <code>childDirected</code> field,\n         you confirm that your use of Amazon Lex <b>is</b>\n         related to a website, program, or other application that is directed or\n         targeted, in whole or in part, to children under age 13 and subject to\n         COPPA. By specifying <code>false</code> in the\n            <code>childDirected</code> field, you confirm that your use of Amazon Lex\n            <b>is not</b> related to a website,\n         program, or other application that is directed or targeted, in whole or\n         in part, to children under age 13 and subject to COPPA. You may not\n         specify a default value for the <code>childDirected</code> field that\n         does not accurately reflect whether your use of Amazon Lex is related to a\n         website, program, or other application that is directed or targeted, in\n         whole or in part, to children under age 13 and subject to COPPA. If\n         your use of Amazon Lex relates to a website, program, or other application\n         that is directed in whole or in part, to children under age 13, you\n         must obtain any required verifiable parental consent under COPPA. For\n         information regarding the use of Amazon Lex in connection with websites,\n         programs, or other applications that are directed or targeted, in whole\n         or in part, to children under age 13, see the <a href=\"https://aws.amazon.com/lex/faqs#data-security\">Amazon Lex\n            FAQ</a>.</p>",
2361                        "smithy.api#required": {}
2362                    }
2363                }
2364            },
2365            "traits": {
2366                "smithy.api#documentation": "<p>By default, data stored by Amazon Lex is encrypted. The\n            <code>DataPrivacy</code> structure provides settings that determine\n         how Amazon Lex handles special cases of securing the data for your bot.\n      </p>"
2367            }
2368        },
2369        "com.amazonaws.lexmodelsv2#DeleteBot": {
2370            "type": "operation",
2371            "input": {
2372                "target": "com.amazonaws.lexmodelsv2#DeleteBotRequest"
2373            },
2374            "output": {
2375                "target": "com.amazonaws.lexmodelsv2#DeleteBotResponse"
2376            },
2377            "errors": [
2378                {
2379                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
2380                },
2381                {
2382                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
2383                },
2384                {
2385                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
2386                },
2387                {
2388                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
2389                },
2390                {
2391                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
2392                },
2393                {
2394                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
2395                }
2396            ],
2397            "traits": {
2398                "smithy.api#documentation": "<p>Deletes all versions of a bot, including the <code>Draft</code>\n         version. To delete a specific version, use the\n            <code>DeleteBotVersion</code> operation.</p>\n         <p>When you delete a bot, all of the resources contained in the bot are\n         also deleted. Deleting a bot removes all locales, intents, slot, and\n         slot types defined for the bot.</p>\n         <p>If a bot has an alias, the <code>DeleteBot</code> operation returns\n         a <code>ResourceInUseException</code> exception. If you want to delete\n         the bot and the alias, set the <code>skipResourceInUseCheck</code>\n         parameter to <code>true</code>.</p>",
2399                "smithy.api#http": {
2400                    "method": "DELETE",
2401                    "uri": "/bots/{botId}",
2402                    "code": 202
2403                }
2404            }
2405        },
2406        "com.amazonaws.lexmodelsv2#DeleteBotAlias": {
2407            "type": "operation",
2408            "input": {
2409                "target": "com.amazonaws.lexmodelsv2#DeleteBotAliasRequest"
2410            },
2411            "output": {
2412                "target": "com.amazonaws.lexmodelsv2#DeleteBotAliasResponse"
2413            },
2414            "errors": [
2415                {
2416                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
2417                },
2418                {
2419                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
2420                },
2421                {
2422                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
2423                },
2424                {
2425                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
2426                },
2427                {
2428                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
2429                },
2430                {
2431                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
2432                }
2433            ],
2434            "traits": {
2435                "smithy.api#documentation": "<p>Deletes the specified bot alias.</p>",
2436                "smithy.api#http": {
2437                    "method": "DELETE",
2438                    "uri": "/bots/{botId}/botaliases/{botAliasId}",
2439                    "code": 202
2440                }
2441            }
2442        },
2443        "com.amazonaws.lexmodelsv2#DeleteBotAliasRequest": {
2444            "type": "structure",
2445            "members": {
2446                "botAliasId": {
2447                    "target": "com.amazonaws.lexmodelsv2#BotAliasId",
2448                    "traits": {
2449                        "smithy.api#documentation": "<p>The unique identifier of the bot alias to delete.</p>",
2450                        "smithy.api#httpLabel": {},
2451                        "smithy.api#required": {}
2452                    }
2453                },
2454                "botId": {
2455                    "target": "com.amazonaws.lexmodelsv2#Id",
2456                    "traits": {
2457                        "smithy.api#documentation": "<p>The unique identifier of the bot associated with the alias to\n         delete.</p>",
2458                        "smithy.api#httpLabel": {},
2459                        "smithy.api#required": {}
2460                    }
2461                },
2462                "skipResourceInUseCheck": {
2463                    "target": "com.amazonaws.lexmodelsv2#SkipResourceInUseCheck",
2464                    "traits": {
2465                        "smithy.api#documentation": "<p>When this parameter is true, Amazon Lex doesn't check to see if any other\n         resource is using the alias before it is deleted.</p>",
2466                        "smithy.api#httpQuery": "skipResourceInUseCheck"
2467                    }
2468                }
2469            }
2470        },
2471        "com.amazonaws.lexmodelsv2#DeleteBotAliasResponse": {
2472            "type": "structure",
2473            "members": {
2474                "botAliasId": {
2475                    "target": "com.amazonaws.lexmodelsv2#BotAliasId",
2476                    "traits": {
2477                        "smithy.api#documentation": "<p>The unique identifier of the bot alias to delete.</p>"
2478                    }
2479                },
2480                "botId": {
2481                    "target": "com.amazonaws.lexmodelsv2#Id",
2482                    "traits": {
2483                        "smithy.api#documentation": "<p>The unique identifier of the bot that contains the alias to\n         delete.</p>"
2484                    }
2485                },
2486                "botAliasStatus": {
2487                    "target": "com.amazonaws.lexmodelsv2#BotAliasStatus",
2488                    "traits": {
2489                        "smithy.api#documentation": "<p>The current status of the alias. The status is <code>Deleting</code>\n         while the alias is in the process of being deleted. Once the alias is\n         deleted, it will no longer appear in the list of aliases returned by\n         the <code>ListBotAliases</code> operation.</p>"
2490                    }
2491                }
2492            }
2493        },
2494        "com.amazonaws.lexmodelsv2#DeleteBotLocale": {
2495            "type": "operation",
2496            "input": {
2497                "target": "com.amazonaws.lexmodelsv2#DeleteBotLocaleRequest"
2498            },
2499            "output": {
2500                "target": "com.amazonaws.lexmodelsv2#DeleteBotLocaleResponse"
2501            },
2502            "errors": [
2503                {
2504                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
2505                },
2506                {
2507                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
2508                },
2509                {
2510                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
2511                },
2512                {
2513                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
2514                },
2515                {
2516                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
2517                },
2518                {
2519                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
2520                }
2521            ],
2522            "traits": {
2523                "smithy.api#documentation": "<p>Removes a locale from a bot.</p>\n         <p>When you delete a locale, all intents, slots, and slot types defined\n         for the locale are also deleted.</p>",
2524                "smithy.api#http": {
2525                    "method": "DELETE",
2526                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}",
2527                    "code": 202
2528                }
2529            }
2530        },
2531        "com.amazonaws.lexmodelsv2#DeleteBotLocaleRequest": {
2532            "type": "structure",
2533            "members": {
2534                "botId": {
2535                    "target": "com.amazonaws.lexmodelsv2#Id",
2536                    "traits": {
2537                        "smithy.api#documentation": "<p>The unique identifier of the bot that contains the locale.</p>",
2538                        "smithy.api#httpLabel": {},
2539                        "smithy.api#required": {}
2540                    }
2541                },
2542                "botVersion": {
2543                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
2544                    "traits": {
2545                        "smithy.api#documentation": "<p>The version of the bot that contains the locale. </p>",
2546                        "smithy.api#httpLabel": {},
2547                        "smithy.api#required": {}
2548                    }
2549                },
2550                "localeId": {
2551                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
2552                    "traits": {
2553                        "smithy.api#documentation": "<p>The identifier of the language and locale that will be deleted. The\n         string must match one of the supported locales. For more information,\n         see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
2554                        "smithy.api#httpLabel": {},
2555                        "smithy.api#required": {}
2556                    }
2557                }
2558            }
2559        },
2560        "com.amazonaws.lexmodelsv2#DeleteBotLocaleResponse": {
2561            "type": "structure",
2562            "members": {
2563                "botId": {
2564                    "target": "com.amazonaws.lexmodelsv2#Id",
2565                    "traits": {
2566                        "smithy.api#documentation": "<p>The identifier of the bot that contained the deleted locale.</p>"
2567                    }
2568                },
2569                "botVersion": {
2570                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
2571                    "traits": {
2572                        "smithy.api#documentation": "<p>The version of the bot that contained the deleted locale.</p>"
2573                    }
2574                },
2575                "localeId": {
2576                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
2577                    "traits": {
2578                        "smithy.api#documentation": "<p>The language and locale of the deleted locale.</p>"
2579                    }
2580                },
2581                "botLocaleStatus": {
2582                    "target": "com.amazonaws.lexmodelsv2#BotLocaleStatus",
2583                    "traits": {
2584                        "smithy.api#documentation": "<p>The status of deleting the bot locale. The locale first enters the\n            <code>Deleting</code> status. Once the locale is deleted it no\n         longer appears in the list of locales for the bot.</p>"
2585                    }
2586                }
2587            }
2588        },
2589        "com.amazonaws.lexmodelsv2#DeleteBotRequest": {
2590            "type": "structure",
2591            "members": {
2592                "botId": {
2593                    "target": "com.amazonaws.lexmodelsv2#Id",
2594                    "traits": {
2595                        "smithy.api#documentation": "<p>The identifier of the bot to delete. </p>",
2596                        "smithy.api#httpLabel": {},
2597                        "smithy.api#required": {}
2598                    }
2599                },
2600                "skipResourceInUseCheck": {
2601                    "target": "com.amazonaws.lexmodelsv2#SkipResourceInUseCheck",
2602                    "traits": {
2603                        "smithy.api#documentation": "<p>When <code>true</code>, Amazon Lex doesn't check to see if another\n         resource, such as an alias, is using the bot before it is\n         deleted.</p>",
2604                        "smithy.api#httpQuery": "skipResourceInUseCheck"
2605                    }
2606                }
2607            }
2608        },
2609        "com.amazonaws.lexmodelsv2#DeleteBotResponse": {
2610            "type": "structure",
2611            "members": {
2612                "botId": {
2613                    "target": "com.amazonaws.lexmodelsv2#Id",
2614                    "traits": {
2615                        "smithy.api#documentation": "<p>The unique identifier of the bot that Amazon Lex is deleting.</p>"
2616                    }
2617                },
2618                "botStatus": {
2619                    "target": "com.amazonaws.lexmodelsv2#BotStatus",
2620                    "traits": {
2621                        "smithy.api#documentation": "<p>The current status of the bot. The status is <code>Deleting</code>\n         while the bot and its associated resources are being deleted.</p>"
2622                    }
2623                }
2624            }
2625        },
2626        "com.amazonaws.lexmodelsv2#DeleteBotVersion": {
2627            "type": "operation",
2628            "input": {
2629                "target": "com.amazonaws.lexmodelsv2#DeleteBotVersionRequest"
2630            },
2631            "output": {
2632                "target": "com.amazonaws.lexmodelsv2#DeleteBotVersionResponse"
2633            },
2634            "errors": [
2635                {
2636                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
2637                },
2638                {
2639                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
2640                },
2641                {
2642                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
2643                },
2644                {
2645                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
2646                },
2647                {
2648                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
2649                },
2650                {
2651                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
2652                }
2653            ],
2654            "traits": {
2655                "smithy.api#documentation": "<p>Deletes a specific version of a bot. To delete all version of a bot,\n         use the <a>DeleteBot</a> operation.</p>",
2656                "smithy.api#http": {
2657                    "method": "DELETE",
2658                    "uri": "/bots/{botId}/botversions/{botVersion}",
2659                    "code": 202
2660                }
2661            }
2662        },
2663        "com.amazonaws.lexmodelsv2#DeleteBotVersionRequest": {
2664            "type": "structure",
2665            "members": {
2666                "botId": {
2667                    "target": "com.amazonaws.lexmodelsv2#Id",
2668                    "traits": {
2669                        "smithy.api#documentation": "<p>The identifier of the bot that contains the version.</p>",
2670                        "smithy.api#httpLabel": {},
2671                        "smithy.api#required": {}
2672                    }
2673                },
2674                "botVersion": {
2675                    "target": "com.amazonaws.lexmodelsv2#NumericalBotVersion",
2676                    "traits": {
2677                        "smithy.api#documentation": "<p>The version of the bot to delete.</p>",
2678                        "smithy.api#httpLabel": {},
2679                        "smithy.api#required": {}
2680                    }
2681                },
2682                "skipResourceInUseCheck": {
2683                    "target": "com.amazonaws.lexmodelsv2#SkipResourceInUseCheck",
2684                    "traits": {
2685                        "smithy.api#documentation": "<p>By default, the <code>DeleteBotVersion</code> operations throws a\n            <code>ResourceInUseException</code> exception if you try to delete a\n         bot version that has an alias pointing at it. Set the\n            <code>skipResourceInUseCheck</code> parameter to <code>true</code>\n         to skip this check and remove the version even if an alias points to\n         it.</p>",
2686                        "smithy.api#httpQuery": "skipResourceInUseCheck"
2687                    }
2688                }
2689            }
2690        },
2691        "com.amazonaws.lexmodelsv2#DeleteBotVersionResponse": {
2692            "type": "structure",
2693            "members": {
2694                "botId": {
2695                    "target": "com.amazonaws.lexmodelsv2#Id",
2696                    "traits": {
2697                        "smithy.api#documentation": "<p>The identifier of the bot that is being deleted.</p>"
2698                    }
2699                },
2700                "botVersion": {
2701                    "target": "com.amazonaws.lexmodelsv2#NumericalBotVersion",
2702                    "traits": {
2703                        "smithy.api#documentation": "<p>The version of the bot that is being deleted.</p>"
2704                    }
2705                },
2706                "botStatus": {
2707                    "target": "com.amazonaws.lexmodelsv2#BotStatus",
2708                    "traits": {
2709                        "smithy.api#documentation": "<p>The current status of the bot. </p>"
2710                    }
2711                }
2712            }
2713        },
2714        "com.amazonaws.lexmodelsv2#DeleteIntent": {
2715            "type": "operation",
2716            "input": {
2717                "target": "com.amazonaws.lexmodelsv2#DeleteIntentRequest"
2718            },
2719            "errors": [
2720                {
2721                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
2722                },
2723                {
2724                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
2725                },
2726                {
2727                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
2728                },
2729                {
2730                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
2731                },
2732                {
2733                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
2734                },
2735                {
2736                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
2737                }
2738            ],
2739            "traits": {
2740                "smithy.api#documentation": "<p>Removes the specified intent.</p>\n         <p>Deleting an intent also deletes the slots associated with the\n         intent.</p>",
2741                "smithy.api#http": {
2742                    "method": "DELETE",
2743                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}",
2744                    "code": 204
2745                }
2746            }
2747        },
2748        "com.amazonaws.lexmodelsv2#DeleteIntentRequest": {
2749            "type": "structure",
2750            "members": {
2751                "intentId": {
2752                    "target": "com.amazonaws.lexmodelsv2#Id",
2753                    "traits": {
2754                        "smithy.api#documentation": "<p>The unique identifier of the intent to delete.</p>",
2755                        "smithy.api#httpLabel": {},
2756                        "smithy.api#required": {}
2757                    }
2758                },
2759                "botId": {
2760                    "target": "com.amazonaws.lexmodelsv2#Id",
2761                    "traits": {
2762                        "smithy.api#documentation": "<p>The identifier of the bot associated with the intent.</p>",
2763                        "smithy.api#httpLabel": {},
2764                        "smithy.api#required": {}
2765                    }
2766                },
2767                "botVersion": {
2768                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
2769                    "traits": {
2770                        "smithy.api#documentation": "<p>The version of the bot associated with the intent.</p>",
2771                        "smithy.api#httpLabel": {},
2772                        "smithy.api#required": {}
2773                    }
2774                },
2775                "localeId": {
2776                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
2777                    "traits": {
2778                        "smithy.api#documentation": "<p>The identifier of the language and locale where the bot will be\n         deleted. The string must match one of the supported locales. For more\n         information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
2779                        "smithy.api#httpLabel": {},
2780                        "smithy.api#required": {}
2781                    }
2782                }
2783            }
2784        },
2785        "com.amazonaws.lexmodelsv2#DeleteSlot": {
2786            "type": "operation",
2787            "input": {
2788                "target": "com.amazonaws.lexmodelsv2#DeleteSlotRequest"
2789            },
2790            "errors": [
2791                {
2792                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
2793                },
2794                {
2795                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
2796                },
2797                {
2798                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
2799                },
2800                {
2801                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
2802                },
2803                {
2804                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
2805                },
2806                {
2807                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
2808                }
2809            ],
2810            "traits": {
2811                "smithy.api#documentation": "<p>Deletes the specified slot from an intent.</p>",
2812                "smithy.api#http": {
2813                    "method": "DELETE",
2814                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots/{slotId}",
2815                    "code": 204
2816                }
2817            }
2818        },
2819        "com.amazonaws.lexmodelsv2#DeleteSlotRequest": {
2820            "type": "structure",
2821            "members": {
2822                "slotId": {
2823                    "target": "com.amazonaws.lexmodelsv2#Id",
2824                    "traits": {
2825                        "smithy.api#documentation": "<p>The identifier of the slot to delete. </p>",
2826                        "smithy.api#httpLabel": {},
2827                        "smithy.api#required": {}
2828                    }
2829                },
2830                "botId": {
2831                    "target": "com.amazonaws.lexmodelsv2#Id",
2832                    "traits": {
2833                        "smithy.api#documentation": "<p>The identifier of the bot associated with the slot to delete.</p>",
2834                        "smithy.api#httpLabel": {},
2835                        "smithy.api#required": {}
2836                    }
2837                },
2838                "botVersion": {
2839                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
2840                    "traits": {
2841                        "smithy.api#documentation": "<p>The version of the bot associated with the slot to delete.</p>",
2842                        "smithy.api#httpLabel": {},
2843                        "smithy.api#required": {}
2844                    }
2845                },
2846                "localeId": {
2847                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
2848                    "traits": {
2849                        "smithy.api#documentation": "<p>The identifier of the language and locale that the slot will be\n         deleted from. The string must match one of the supported locales. For\n         more information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
2850                        "smithy.api#httpLabel": {},
2851                        "smithy.api#required": {}
2852                    }
2853                },
2854                "intentId": {
2855                    "target": "com.amazonaws.lexmodelsv2#Id",
2856                    "traits": {
2857                        "smithy.api#documentation": "<p>The identifier of the intent associated with the slot.</p>",
2858                        "smithy.api#httpLabel": {},
2859                        "smithy.api#required": {}
2860                    }
2861                }
2862            }
2863        },
2864        "com.amazonaws.lexmodelsv2#DeleteSlotType": {
2865            "type": "operation",
2866            "input": {
2867                "target": "com.amazonaws.lexmodelsv2#DeleteSlotTypeRequest"
2868            },
2869            "errors": [
2870                {
2871                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
2872                },
2873                {
2874                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
2875                },
2876                {
2877                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
2878                },
2879                {
2880                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
2881                },
2882                {
2883                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
2884                },
2885                {
2886                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
2887                }
2888            ],
2889            "traits": {
2890                "smithy.api#documentation": "<p>Deletes a slot type from a bot locale.</p>\n         <p>If a slot is using the slot type, Amazon Lex throws a\n            <code>ResourceInUseException</code> exception. To avoid the\n         exception, set the <code>skipResourceInUseCheck</code> parameter to\n            <code>true</code>.</p>",
2891                "smithy.api#http": {
2892                    "method": "DELETE",
2893                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes/{slotTypeId}",
2894                    "code": 204
2895                }
2896            }
2897        },
2898        "com.amazonaws.lexmodelsv2#DeleteSlotTypeRequest": {
2899            "type": "structure",
2900            "members": {
2901                "slotTypeId": {
2902                    "target": "com.amazonaws.lexmodelsv2#Id",
2903                    "traits": {
2904                        "smithy.api#documentation": "<p>The identifier of the slot type to delete.</p>",
2905                        "smithy.api#httpLabel": {},
2906                        "smithy.api#required": {}
2907                    }
2908                },
2909                "botId": {
2910                    "target": "com.amazonaws.lexmodelsv2#Id",
2911                    "traits": {
2912                        "smithy.api#documentation": "<p>The identifier of the bot associated with the slot type.</p>",
2913                        "smithy.api#httpLabel": {},
2914                        "smithy.api#required": {}
2915                    }
2916                },
2917                "botVersion": {
2918                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
2919                    "traits": {
2920                        "smithy.api#documentation": "<p>The version of the bot associated with the slot type.</p>",
2921                        "smithy.api#httpLabel": {},
2922                        "smithy.api#required": {}
2923                    }
2924                },
2925                "localeId": {
2926                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
2927                    "traits": {
2928                        "smithy.api#documentation": "<p>The identifier of the language and locale that the slot type will be\n         deleted from. The string must match one of the supported locales. For\n         more information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
2929                        "smithy.api#httpLabel": {},
2930                        "smithy.api#required": {}
2931                    }
2932                },
2933                "skipResourceInUseCheck": {
2934                    "target": "com.amazonaws.lexmodelsv2#SkipResourceInUseCheck",
2935                    "traits": {
2936                        "smithy.api#documentation": "<p>By default, the <code>DeleteSlotType</code> operations throws a\n            <code>ResourceInUseException</code> exception if you try to delete a\n         slot type used by a slot. Set the <code>skipResourceInUseCheck</code>\n         parameter to <code>true</code> to skip this check and remove the slot\n         type even if a slot uses it.</p>",
2937                        "smithy.api#httpQuery": "skipResourceInUseCheck"
2938                    }
2939                }
2940            }
2941        },
2942        "com.amazonaws.lexmodelsv2#DescribeBot": {
2943            "type": "operation",
2944            "input": {
2945                "target": "com.amazonaws.lexmodelsv2#DescribeBotRequest"
2946            },
2947            "output": {
2948                "target": "com.amazonaws.lexmodelsv2#DescribeBotResponse"
2949            },
2950            "errors": [
2951                {
2952                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
2953                },
2954                {
2955                    "target": "com.amazonaws.lexmodelsv2#ResourceNotFoundException"
2956                },
2957                {
2958                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
2959                },
2960                {
2961                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
2962                },
2963                {
2964                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
2965                }
2966            ],
2967            "traits": {
2968                "smithy.api#documentation": "<p>Provides metadata information about a bot. </p>",
2969                "smithy.api#http": {
2970                    "method": "GET",
2971                    "uri": "/bots/{botId}",
2972                    "code": 200
2973                }
2974            }
2975        },
2976        "com.amazonaws.lexmodelsv2#DescribeBotAlias": {
2977            "type": "operation",
2978            "input": {
2979                "target": "com.amazonaws.lexmodelsv2#DescribeBotAliasRequest"
2980            },
2981            "output": {
2982                "target": "com.amazonaws.lexmodelsv2#DescribeBotAliasResponse"
2983            },
2984            "errors": [
2985                {
2986                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
2987                },
2988                {
2989                    "target": "com.amazonaws.lexmodelsv2#ResourceNotFoundException"
2990                },
2991                {
2992                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
2993                },
2994                {
2995                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
2996                },
2997                {
2998                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
2999                }
3000            ],
3001            "traits": {
3002                "smithy.api#documentation": "<p>Get information about a specific bot alias.</p>",
3003                "smithy.api#http": {
3004                    "method": "GET",
3005                    "uri": "/bots/{botId}/botaliases/{botAliasId}",
3006                    "code": 200
3007                }
3008            }
3009        },
3010        "com.amazonaws.lexmodelsv2#DescribeBotAliasRequest": {
3011            "type": "structure",
3012            "members": {
3013                "botAliasId": {
3014                    "target": "com.amazonaws.lexmodelsv2#BotAliasId",
3015                    "traits": {
3016                        "smithy.api#documentation": "<p>The identifier of the bot alias to describe.</p>",
3017                        "smithy.api#httpLabel": {},
3018                        "smithy.api#required": {}
3019                    }
3020                },
3021                "botId": {
3022                    "target": "com.amazonaws.lexmodelsv2#Id",
3023                    "traits": {
3024                        "smithy.api#documentation": "<p>The identifier of the bot associated with the bot alias to\n         describe.</p>",
3025                        "smithy.api#httpLabel": {},
3026                        "smithy.api#required": {}
3027                    }
3028                }
3029            }
3030        },
3031        "com.amazonaws.lexmodelsv2#DescribeBotAliasResponse": {
3032            "type": "structure",
3033            "members": {
3034                "botAliasId": {
3035                    "target": "com.amazonaws.lexmodelsv2#BotAliasId",
3036                    "traits": {
3037                        "smithy.api#documentation": "<p>The identifier of the bot alias.</p>"
3038                    }
3039                },
3040                "botAliasName": {
3041                    "target": "com.amazonaws.lexmodelsv2#Name",
3042                    "traits": {
3043                        "smithy.api#documentation": "<p>The name of the bot alias.</p>"
3044                    }
3045                },
3046                "description": {
3047                    "target": "com.amazonaws.lexmodelsv2#Description",
3048                    "traits": {
3049                        "smithy.api#documentation": "<p>The description of the bot alias.</p>"
3050                    }
3051                },
3052                "botVersion": {
3053                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
3054                    "traits": {
3055                        "smithy.api#documentation": "<p>The version of the bot associated with the bot alias.</p>"
3056                    }
3057                },
3058                "botAliasLocaleSettings": {
3059                    "target": "com.amazonaws.lexmodelsv2#BotAliasLocaleSettingsMap",
3060                    "traits": {
3061                        "smithy.api#documentation": "<p>The locale settings that are unique to the alias.</p>"
3062                    }
3063                },
3064                "conversationLogSettings": {
3065                    "target": "com.amazonaws.lexmodelsv2#ConversationLogSettings",
3066                    "traits": {
3067                        "smithy.api#documentation": "<p>Specifics of how Amazon Lex logs text and audio conversations with the\n         bot associated with the alias.</p>"
3068                    }
3069                },
3070                "sentimentAnalysisSettings": {
3071                    "target": "com.amazonaws.lexmodelsv2#SentimentAnalysisSettings"
3072                },
3073                "botAliasHistoryEvents": {
3074                    "target": "com.amazonaws.lexmodelsv2#BotAliasHistoryEventsList",
3075                    "traits": {
3076                        "smithy.api#documentation": "<p>A list of events that affect a bot alias. For example, an event is\n         recorded when the version that the alias points to changes.</p>"
3077                    }
3078                },
3079                "botAliasStatus": {
3080                    "target": "com.amazonaws.lexmodelsv2#BotAliasStatus",
3081                    "traits": {
3082                        "smithy.api#documentation": "<p>The current status of the alias. When the alias is\n            <code>Available</code>, the alias is ready for use with your\n         bot.</p>"
3083                    }
3084                },
3085                "botId": {
3086                    "target": "com.amazonaws.lexmodelsv2#Id",
3087                    "traits": {
3088                        "smithy.api#documentation": "<p>The identifier of the bot associated with the bot alias.</p>"
3089                    }
3090                },
3091                "creationDateTime": {
3092                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
3093                    "traits": {
3094                        "smithy.api#documentation": "<p>A timestamp of the date and time that the alias was created.</p>"
3095                    }
3096                },
3097                "lastUpdatedDateTime": {
3098                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
3099                    "traits": {
3100                        "smithy.api#documentation": "<p>A timestamp of the date and time that the alias was last\n         updated.</p>"
3101                    }
3102                }
3103            }
3104        },
3105        "com.amazonaws.lexmodelsv2#DescribeBotLocale": {
3106            "type": "operation",
3107            "input": {
3108                "target": "com.amazonaws.lexmodelsv2#DescribeBotLocaleRequest"
3109            },
3110            "output": {
3111                "target": "com.amazonaws.lexmodelsv2#DescribeBotLocaleResponse"
3112            },
3113            "errors": [
3114                {
3115                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
3116                },
3117                {
3118                    "target": "com.amazonaws.lexmodelsv2#ResourceNotFoundException"
3119                },
3120                {
3121                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
3122                },
3123                {
3124                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
3125                },
3126                {
3127                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
3128                }
3129            ],
3130            "traits": {
3131                "smithy.api#documentation": "<p>Describes the settings that a bot has for a specific locale. </p>",
3132                "smithy.api#http": {
3133                    "method": "GET",
3134                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}",
3135                    "code": 200
3136                }
3137            }
3138        },
3139        "com.amazonaws.lexmodelsv2#DescribeBotLocaleRequest": {
3140            "type": "structure",
3141            "members": {
3142                "botId": {
3143                    "target": "com.amazonaws.lexmodelsv2#Id",
3144                    "traits": {
3145                        "smithy.api#documentation": "<p>The identifier of the bot associated with the locale.</p>",
3146                        "smithy.api#httpLabel": {},
3147                        "smithy.api#required": {}
3148                    }
3149                },
3150                "botVersion": {
3151                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
3152                    "traits": {
3153                        "smithy.api#documentation": "<p>The identifier of the version of the bot associated with the\n         locale.</p>",
3154                        "smithy.api#httpLabel": {},
3155                        "smithy.api#required": {}
3156                    }
3157                },
3158                "localeId": {
3159                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
3160                    "traits": {
3161                        "smithy.api#documentation": "<p>The unique identifier of the locale to describe. The string must\n         match one of the supported locales. For more information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.\n      </p>",
3162                        "smithy.api#httpLabel": {},
3163                        "smithy.api#required": {}
3164                    }
3165                }
3166            }
3167        },
3168        "com.amazonaws.lexmodelsv2#DescribeBotLocaleResponse": {
3169            "type": "structure",
3170            "members": {
3171                "botId": {
3172                    "target": "com.amazonaws.lexmodelsv2#Id",
3173                    "traits": {
3174                        "smithy.api#documentation": "<p>The identifier of the bot associated with the locale.</p>"
3175                    }
3176                },
3177                "botVersion": {
3178                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
3179                    "traits": {
3180                        "smithy.api#documentation": "<p>The identifier of the version of the bot associated with the\n         locale.</p>"
3181                    }
3182                },
3183                "localeId": {
3184                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
3185                    "traits": {
3186                        "smithy.api#documentation": "<p>The unique identifier of the described locale.</p>"
3187                    }
3188                },
3189                "localeName": {
3190                    "target": "com.amazonaws.lexmodelsv2#LocaleName",
3191                    "traits": {
3192                        "smithy.api#documentation": "<p>The name of the locale.</p>"
3193                    }
3194                },
3195                "description": {
3196                    "target": "com.amazonaws.lexmodelsv2#Description",
3197                    "traits": {
3198                        "smithy.api#documentation": "<p>The description of the locale.</p>"
3199                    }
3200                },
3201                "nluIntentConfidenceThreshold": {
3202                    "target": "com.amazonaws.lexmodelsv2#ConfidenceThreshold",
3203                    "traits": {
3204                        "smithy.api#documentation": "<p>The confidence threshold where Amazon Lex inserts the\n            <code>AMAZON.FallbackIntent</code> and\n            <code>AMAZON.KendraSearchIntent</code> intents in the list of\n         possible intents for an utterance.</p>"
3205                    }
3206                },
3207                "voiceSettings": {
3208                    "target": "com.amazonaws.lexmodelsv2#VoiceSettings",
3209                    "traits": {
3210                        "smithy.api#documentation": "<p>The Amazon Polly voice Amazon Lex uses for voice interaction with the\n         user.</p>"
3211                    }
3212                },
3213                "intentsCount": {
3214                    "target": "com.amazonaws.lexmodelsv2#ResourceCount",
3215                    "traits": {
3216                        "smithy.api#documentation": "<p>The number of intents defined for the locale.</p>"
3217                    }
3218                },
3219                "slotTypesCount": {
3220                    "target": "com.amazonaws.lexmodelsv2#ResourceCount",
3221                    "traits": {
3222                        "smithy.api#documentation": "<p>The number of slot types defined for the locale.</p>"
3223                    }
3224                },
3225                "botLocaleStatus": {
3226                    "target": "com.amazonaws.lexmodelsv2#BotLocaleStatus",
3227                    "traits": {
3228                        "smithy.api#documentation": "<p>The status of the bot. If the status is <code>Failed</code>, the\n         reasons for the failure are listed in the <code>failureReasons</code>\n         field.</p>"
3229                    }
3230                },
3231                "failureReasons": {
3232                    "target": "com.amazonaws.lexmodelsv2#FailureReasons",
3233                    "traits": {
3234                        "smithy.api#documentation": "<p>if <code>botLocaleStatus</code> is <code>Failed</code>, Amazon Lex\n         explains why it failed to build the bot.</p>"
3235                    }
3236                },
3237                "creationDateTime": {
3238                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
3239                    "traits": {
3240                        "smithy.api#documentation": "<p>The date and time that the locale was created.</p>"
3241                    }
3242                },
3243                "lastUpdatedDateTime": {
3244                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
3245                    "traits": {
3246                        "smithy.api#documentation": "<p>The date and time that the locale was last updated.</p>"
3247                    }
3248                },
3249                "lastBuildSubmittedDateTime": {
3250                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
3251                    "traits": {
3252                        "smithy.api#documentation": "<p>The date and time that the locale was last submitted for\n         building.</p>"
3253                    }
3254                },
3255                "botLocaleHistoryEvents": {
3256                    "target": "com.amazonaws.lexmodelsv2#BotLocaleHistoryEventsList",
3257                    "traits": {
3258                        "smithy.api#documentation": "<p>History of changes, such as when a locale is used in an alias, that\n         have taken place for the locale.</p>"
3259                    }
3260                }
3261            }
3262        },
3263        "com.amazonaws.lexmodelsv2#DescribeBotRequest": {
3264            "type": "structure",
3265            "members": {
3266                "botId": {
3267                    "target": "com.amazonaws.lexmodelsv2#Id",
3268                    "traits": {
3269                        "smithy.api#documentation": "<p>The unique identifier of the bot to describe.</p>",
3270                        "smithy.api#httpLabel": {},
3271                        "smithy.api#required": {}
3272                    }
3273                }
3274            }
3275        },
3276        "com.amazonaws.lexmodelsv2#DescribeBotResponse": {
3277            "type": "structure",
3278            "members": {
3279                "botId": {
3280                    "target": "com.amazonaws.lexmodelsv2#Id",
3281                    "traits": {
3282                        "smithy.api#documentation": "<p>The unique identifier of the bot.</p>"
3283                    }
3284                },
3285                "botName": {
3286                    "target": "com.amazonaws.lexmodelsv2#Name",
3287                    "traits": {
3288                        "smithy.api#documentation": "<p>The name of the bot.</p>"
3289                    }
3290                },
3291                "description": {
3292                    "target": "com.amazonaws.lexmodelsv2#Description",
3293                    "traits": {
3294                        "smithy.api#documentation": "<p>The description of the bot. </p>"
3295                    }
3296                },
3297                "roleArn": {
3298                    "target": "com.amazonaws.lexmodelsv2#RoleArn",
3299                    "traits": {
3300                        "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of an IAM role that has permission to\n         access the bot.</p>"
3301                    }
3302                },
3303                "dataPrivacy": {
3304                    "target": "com.amazonaws.lexmodelsv2#DataPrivacy",
3305                    "traits": {
3306                        "smithy.api#documentation": "<p>Settings for managing data privacy of the bot and its conversations\n         with users.</p>"
3307                    }
3308                },
3309                "idleSessionTTLInSeconds": {
3310                    "target": "com.amazonaws.lexmodelsv2#SessionTTL",
3311                    "traits": {
3312                        "smithy.api#documentation": "<p>The maximum time in seconds that Amazon Lex retains the data gathered in\n         a conversation.</p>"
3313                    }
3314                },
3315                "botStatus": {
3316                    "target": "com.amazonaws.lexmodelsv2#BotStatus",
3317                    "traits": {
3318                        "smithy.api#documentation": "<p>The current status of the bot. When the status is\n            <code>Available</code> the bot is ready to be used in conversations\n         with users.</p>"
3319                    }
3320                },
3321                "creationDateTime": {
3322                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
3323                    "traits": {
3324                        "smithy.api#documentation": "<p>A timestamp of the date and time that the bot was created.</p>"
3325                    }
3326                },
3327                "lastUpdatedDateTime": {
3328                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
3329                    "traits": {
3330                        "smithy.api#documentation": "<p>A timestamp of the date and time that the bot was last\n         updated.</p>"
3331                    }
3332                }
3333            }
3334        },
3335        "com.amazonaws.lexmodelsv2#DescribeBotVersion": {
3336            "type": "operation",
3337            "input": {
3338                "target": "com.amazonaws.lexmodelsv2#DescribeBotVersionRequest"
3339            },
3340            "output": {
3341                "target": "com.amazonaws.lexmodelsv2#DescribeBotVersionResponse"
3342            },
3343            "errors": [
3344                {
3345                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
3346                },
3347                {
3348                    "target": "com.amazonaws.lexmodelsv2#ResourceNotFoundException"
3349                },
3350                {
3351                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
3352                },
3353                {
3354                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
3355                },
3356                {
3357                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
3358                }
3359            ],
3360            "traits": {
3361                "smithy.api#documentation": "<p>Provides metadata about a version of a bot.</p>",
3362                "smithy.api#http": {
3363                    "method": "GET",
3364                    "uri": "/bots/{botId}/botversions/{botVersion}",
3365                    "code": 200
3366                }
3367            }
3368        },
3369        "com.amazonaws.lexmodelsv2#DescribeBotVersionRequest": {
3370            "type": "structure",
3371            "members": {
3372                "botId": {
3373                    "target": "com.amazonaws.lexmodelsv2#Id",
3374                    "traits": {
3375                        "smithy.api#documentation": "<p>The identifier of the bot containing the version to return metadata\n         for.</p>",
3376                        "smithy.api#httpLabel": {},
3377                        "smithy.api#required": {}
3378                    }
3379                },
3380                "botVersion": {
3381                    "target": "com.amazonaws.lexmodelsv2#NumericalBotVersion",
3382                    "traits": {
3383                        "smithy.api#documentation": "<p>The version of the bot to return metadata for.</p>",
3384                        "smithy.api#httpLabel": {},
3385                        "smithy.api#required": {}
3386                    }
3387                }
3388            }
3389        },
3390        "com.amazonaws.lexmodelsv2#DescribeBotVersionResponse": {
3391            "type": "structure",
3392            "members": {
3393                "botId": {
3394                    "target": "com.amazonaws.lexmodelsv2#Id",
3395                    "traits": {
3396                        "smithy.api#documentation": "<p>The identifier of the bot that contains the version.</p>"
3397                    }
3398                },
3399                "botName": {
3400                    "target": "com.amazonaws.lexmodelsv2#Name",
3401                    "traits": {
3402                        "smithy.api#documentation": "<p>The name of the bot that contains the version.</p>"
3403                    }
3404                },
3405                "botVersion": {
3406                    "target": "com.amazonaws.lexmodelsv2#NumericalBotVersion",
3407                    "traits": {
3408                        "smithy.api#documentation": "<p>The version of the bot to describe.</p>"
3409                    }
3410                },
3411                "description": {
3412                    "target": "com.amazonaws.lexmodelsv2#Description",
3413                    "traits": {
3414                        "smithy.api#documentation": "<p>The description specified for the bot.</p>"
3415                    }
3416                },
3417                "roleArn": {
3418                    "target": "com.amazonaws.lexmodelsv2#RoleArn",
3419                    "traits": {
3420                        "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of an IAM role that has permission to\n         access the bot version.</p>"
3421                    }
3422                },
3423                "dataPrivacy": {
3424                    "target": "com.amazonaws.lexmodelsv2#DataPrivacy",
3425                    "traits": {
3426                        "smithy.api#documentation": "<p>Data privacy settings for the bot version.</p>"
3427                    }
3428                },
3429                "idleSessionTTLInSeconds": {
3430                    "target": "com.amazonaws.lexmodelsv2#SessionTTL",
3431                    "traits": {
3432                        "smithy.api#documentation": "<p>The number of seconds that a session with the bot remains active\n         before it is discarded by Amazon Lex.</p>"
3433                    }
3434                },
3435                "botStatus": {
3436                    "target": "com.amazonaws.lexmodelsv2#BotStatus",
3437                    "traits": {
3438                        "smithy.api#documentation": "<p>The current status of the bot. When the status is\n            <code>Available</code>, the bot version is ready for use.</p>"
3439                    }
3440                },
3441                "failureReasons": {
3442                    "target": "com.amazonaws.lexmodelsv2#FailureReasons",
3443                    "traits": {
3444                        "smithy.api#documentation": "<p>If the <code>botStatus</code> is <code>Failed</code>, this contains\n         a list of reasons that the version couldn't be built.</p>"
3445                    }
3446                },
3447                "creationDateTime": {
3448                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
3449                    "traits": {
3450                        "smithy.api#documentation": "<p>A timestamp of the date and time that the bot version was\n         created.</p>"
3451                    }
3452                }
3453            }
3454        },
3455        "com.amazonaws.lexmodelsv2#DescribeIntent": {
3456            "type": "operation",
3457            "input": {
3458                "target": "com.amazonaws.lexmodelsv2#DescribeIntentRequest"
3459            },
3460            "output": {
3461                "target": "com.amazonaws.lexmodelsv2#DescribeIntentResponse"
3462            },
3463            "errors": [
3464                {
3465                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
3466                },
3467                {
3468                    "target": "com.amazonaws.lexmodelsv2#ResourceNotFoundException"
3469                },
3470                {
3471                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
3472                },
3473                {
3474                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
3475                },
3476                {
3477                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
3478                }
3479            ],
3480            "traits": {
3481                "smithy.api#documentation": "<p>Returns metadata about an intent.</p>",
3482                "smithy.api#http": {
3483                    "method": "GET",
3484                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}",
3485                    "code": 200
3486                }
3487            }
3488        },
3489        "com.amazonaws.lexmodelsv2#DescribeIntentRequest": {
3490            "type": "structure",
3491            "members": {
3492                "intentId": {
3493                    "target": "com.amazonaws.lexmodelsv2#Id",
3494                    "traits": {
3495                        "smithy.api#documentation": "<p>The identifier of the intent to describe.</p>",
3496                        "smithy.api#httpLabel": {},
3497                        "smithy.api#required": {}
3498                    }
3499                },
3500                "botId": {
3501                    "target": "com.amazonaws.lexmodelsv2#Id",
3502                    "traits": {
3503                        "smithy.api#documentation": "<p>The identifier of the bot associated with the intent.</p>",
3504                        "smithy.api#httpLabel": {},
3505                        "smithy.api#required": {}
3506                    }
3507                },
3508                "botVersion": {
3509                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
3510                    "traits": {
3511                        "smithy.api#documentation": "<p>The version of the bot associated with the intent.</p>",
3512                        "smithy.api#httpLabel": {},
3513                        "smithy.api#required": {}
3514                    }
3515                },
3516                "localeId": {
3517                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
3518                    "traits": {
3519                        "smithy.api#documentation": "<p>The identifier of the language and locale of the intent to describe.\n         The string must match one of the supported locales. For more\n         information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
3520                        "smithy.api#httpLabel": {},
3521                        "smithy.api#required": {}
3522                    }
3523                }
3524            }
3525        },
3526        "com.amazonaws.lexmodelsv2#DescribeIntentResponse": {
3527            "type": "structure",
3528            "members": {
3529                "intentId": {
3530                    "target": "com.amazonaws.lexmodelsv2#Id",
3531                    "traits": {
3532                        "smithy.api#documentation": "<p>The unique identifier assigned to the intent when it was\n         created.</p>"
3533                    }
3534                },
3535                "intentName": {
3536                    "target": "com.amazonaws.lexmodelsv2#Name",
3537                    "traits": {
3538                        "smithy.api#documentation": "<p>The name specified for the intent.</p>"
3539                    }
3540                },
3541                "description": {
3542                    "target": "com.amazonaws.lexmodelsv2#Description",
3543                    "traits": {
3544                        "smithy.api#documentation": "<p>The description of the intent.</p>"
3545                    }
3546                },
3547                "parentIntentSignature": {
3548                    "target": "com.amazonaws.lexmodelsv2#IntentSignature",
3549                    "traits": {
3550                        "smithy.api#documentation": "<p>The identifier of the built-in intent that this intent is derived\n         from, if any.</p>"
3551                    }
3552                },
3553                "sampleUtterances": {
3554                    "target": "com.amazonaws.lexmodelsv2#SampleUtterancesList",
3555                    "traits": {
3556                        "smithy.api#documentation": "<p>User utterances that trigger this intent.</p>"
3557                    }
3558                },
3559                "dialogCodeHook": {
3560                    "target": "com.amazonaws.lexmodelsv2#DialogCodeHookSettings",
3561                    "traits": {
3562                        "smithy.api#documentation": "<p>The Lambda function called during each turn of a conversation with\n         the intent.</p>"
3563                    }
3564                },
3565                "fulfillmentCodeHook": {
3566                    "target": "com.amazonaws.lexmodelsv2#FulfillmentCodeHookSettings",
3567                    "traits": {
3568                        "smithy.api#documentation": "<p>The Lambda function called when the intent is complete and ready for\n         fulfillment.</p>"
3569                    }
3570                },
3571                "slotPriorities": {
3572                    "target": "com.amazonaws.lexmodelsv2#SlotPrioritiesList",
3573                    "traits": {
3574                        "smithy.api#documentation": "<p>The list that determines the priority that slots should be elicited\n         from the user.</p>"
3575                    }
3576                },
3577                "intentConfirmationSetting": {
3578                    "target": "com.amazonaws.lexmodelsv2#IntentConfirmationSetting",
3579                    "traits": {
3580                        "smithy.api#documentation": "<p>Prompts that Amazon Lex sends to the user to confirm completion of an\n         intent.</p>"
3581                    }
3582                },
3583                "intentClosingSetting": {
3584                    "target": "com.amazonaws.lexmodelsv2#IntentClosingSetting",
3585                    "traits": {
3586                        "smithy.api#documentation": "<p>The response that Amazon Lex sends to when the intent is closed.</p>"
3587                    }
3588                },
3589                "inputContexts": {
3590                    "target": "com.amazonaws.lexmodelsv2#InputContextsList",
3591                    "traits": {
3592                        "smithy.api#documentation": "<p>A list of contexts that must be active for the intent to be\n         considered for sending to the user.</p>"
3593                    }
3594                },
3595                "outputContexts": {
3596                    "target": "com.amazonaws.lexmodelsv2#OutputContextsList",
3597                    "traits": {
3598                        "smithy.api#documentation": "<p>A list of contexts that are activated when the intent is\n         fulfilled.</p>"
3599                    }
3600                },
3601                "kendraConfiguration": {
3602                    "target": "com.amazonaws.lexmodelsv2#KendraConfiguration",
3603                    "traits": {
3604                        "smithy.api#documentation": "<p>Configuration information required to use the\n            <code>AMAZON.KendraSearchIntent</code> intent.</p>"
3605                    }
3606                },
3607                "botId": {
3608                    "target": "com.amazonaws.lexmodelsv2#Id",
3609                    "traits": {
3610                        "smithy.api#documentation": "<p>The identifier of the bot associated with the intent.</p>"
3611                    }
3612                },
3613                "botVersion": {
3614                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
3615                    "traits": {
3616                        "smithy.api#documentation": "<p>The version of the bot associated with the intent.</p>"
3617                    }
3618                },
3619                "localeId": {
3620                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
3621                    "traits": {
3622                        "smithy.api#documentation": "<p>The language and locale specified for the intent.</p>"
3623                    }
3624                },
3625                "creationDateTime": {
3626                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
3627                    "traits": {
3628                        "smithy.api#documentation": "<p>A timestamp of the date and time that the intent was created.</p>"
3629                    }
3630                },
3631                "lastUpdatedDateTime": {
3632                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
3633                    "traits": {
3634                        "smithy.api#documentation": "<p>A timestamp of the date and time that the intent was last\n         updated.</p>"
3635                    }
3636                }
3637            }
3638        },
3639        "com.amazonaws.lexmodelsv2#DescribeSlot": {
3640            "type": "operation",
3641            "input": {
3642                "target": "com.amazonaws.lexmodelsv2#DescribeSlotRequest"
3643            },
3644            "output": {
3645                "target": "com.amazonaws.lexmodelsv2#DescribeSlotResponse"
3646            },
3647            "errors": [
3648                {
3649                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
3650                },
3651                {
3652                    "target": "com.amazonaws.lexmodelsv2#ResourceNotFoundException"
3653                },
3654                {
3655                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
3656                },
3657                {
3658                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
3659                },
3660                {
3661                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
3662                }
3663            ],
3664            "traits": {
3665                "smithy.api#documentation": "<p>Gets metadata information about a slot.</p>",
3666                "smithy.api#http": {
3667                    "method": "GET",
3668                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots/{slotId}",
3669                    "code": 200
3670                }
3671            }
3672        },
3673        "com.amazonaws.lexmodelsv2#DescribeSlotRequest": {
3674            "type": "structure",
3675            "members": {
3676                "slotId": {
3677                    "target": "com.amazonaws.lexmodelsv2#Id",
3678                    "traits": {
3679                        "smithy.api#documentation": "<p>The unique identifier for the slot.</p>",
3680                        "smithy.api#httpLabel": {},
3681                        "smithy.api#required": {}
3682                    }
3683                },
3684                "botId": {
3685                    "target": "com.amazonaws.lexmodelsv2#Id",
3686                    "traits": {
3687                        "smithy.api#documentation": "<p>The identifier of the bot associated with the slot.</p>",
3688                        "smithy.api#httpLabel": {},
3689                        "smithy.api#required": {}
3690                    }
3691                },
3692                "botVersion": {
3693                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
3694                    "traits": {
3695                        "smithy.api#documentation": "<p>The version of the bot associated with the slot.</p>",
3696                        "smithy.api#httpLabel": {},
3697                        "smithy.api#required": {}
3698                    }
3699                },
3700                "localeId": {
3701                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
3702                    "traits": {
3703                        "smithy.api#documentation": "<p>The identifier of the language and locale of the slot to describe.\n         The string must match one of the supported locales. For more\n         information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
3704                        "smithy.api#httpLabel": {},
3705                        "smithy.api#required": {}
3706                    }
3707                },
3708                "intentId": {
3709                    "target": "com.amazonaws.lexmodelsv2#Id",
3710                    "traits": {
3711                        "smithy.api#documentation": "<p>The identifier of the intent that contains the slot.</p>",
3712                        "smithy.api#httpLabel": {},
3713                        "smithy.api#required": {}
3714                    }
3715                }
3716            }
3717        },
3718        "com.amazonaws.lexmodelsv2#DescribeSlotResponse": {
3719            "type": "structure",
3720            "members": {
3721                "slotId": {
3722                    "target": "com.amazonaws.lexmodelsv2#Id",
3723                    "traits": {
3724                        "smithy.api#documentation": "<p>The unique identifier generated for the slot.</p>"
3725                    }
3726                },
3727                "slotName": {
3728                    "target": "com.amazonaws.lexmodelsv2#Name",
3729                    "traits": {
3730                        "smithy.api#documentation": "<p>The name specified for the slot.</p>"
3731                    }
3732                },
3733                "description": {
3734                    "target": "com.amazonaws.lexmodelsv2#Description",
3735                    "traits": {
3736                        "smithy.api#documentation": "<p>The description specified for the slot.</p>"
3737                    }
3738                },
3739                "slotTypeId": {
3740                    "target": "com.amazonaws.lexmodelsv2#BuiltInOrCustomSlotTypeId",
3741                    "traits": {
3742                        "smithy.api#documentation": "<p>The identifier of the slot type that determines the values entered\n         into the slot.</p>"
3743                    }
3744                },
3745                "valueElicitationSetting": {
3746                    "target": "com.amazonaws.lexmodelsv2#SlotValueElicitationSetting",
3747                    "traits": {
3748                        "smithy.api#documentation": "<p>Prompts that Amazon Lex uses to elicit a value for the slot.</p>"
3749                    }
3750                },
3751                "obfuscationSetting": {
3752                    "target": "com.amazonaws.lexmodelsv2#ObfuscationSetting",
3753                    "traits": {
3754                        "smithy.api#documentation": "<p>Whether slot values are shown in Amazon CloudWatch logs. If the value is\n            <code>None</code>, the actual value of the slot is shown in\n         logs.</p>"
3755                    }
3756                },
3757                "botId": {
3758                    "target": "com.amazonaws.lexmodelsv2#Id",
3759                    "traits": {
3760                        "smithy.api#documentation": "<p>The identifier of the bot associated with the slot.</p>"
3761                    }
3762                },
3763                "botVersion": {
3764                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
3765                    "traits": {
3766                        "smithy.api#documentation": "<p>The version of the bot associated with the slot.</p>"
3767                    }
3768                },
3769                "localeId": {
3770                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
3771                    "traits": {
3772                        "smithy.api#documentation": "<p>The language and locale specified for the slot.</p>"
3773                    }
3774                },
3775                "intentId": {
3776                    "target": "com.amazonaws.lexmodelsv2#Id",
3777                    "traits": {
3778                        "smithy.api#documentation": "<p>The identifier of the intent associated with the slot.</p>"
3779                    }
3780                },
3781                "creationDateTime": {
3782                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
3783                    "traits": {
3784                        "smithy.api#documentation": "<p>A timestamp of the date and time that the slot was created.</p>"
3785                    }
3786                },
3787                "lastUpdatedDateTime": {
3788                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
3789                    "traits": {
3790                        "smithy.api#documentation": "<p>A timestamp of the date and time that the slot was last\n         updated.</p>"
3791                    }
3792                }
3793            }
3794        },
3795        "com.amazonaws.lexmodelsv2#DescribeSlotType": {
3796            "type": "operation",
3797            "input": {
3798                "target": "com.amazonaws.lexmodelsv2#DescribeSlotTypeRequest"
3799            },
3800            "output": {
3801                "target": "com.amazonaws.lexmodelsv2#DescribeSlotTypeResponse"
3802            },
3803            "errors": [
3804                {
3805                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
3806                },
3807                {
3808                    "target": "com.amazonaws.lexmodelsv2#ResourceNotFoundException"
3809                },
3810                {
3811                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
3812                },
3813                {
3814                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
3815                },
3816                {
3817                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
3818                }
3819            ],
3820            "traits": {
3821                "smithy.api#documentation": "<p>Gets metadata information about a slot type.</p>",
3822                "smithy.api#http": {
3823                    "method": "GET",
3824                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes/{slotTypeId}",
3825                    "code": 200
3826                }
3827            }
3828        },
3829        "com.amazonaws.lexmodelsv2#DescribeSlotTypeRequest": {
3830            "type": "structure",
3831            "members": {
3832                "slotTypeId": {
3833                    "target": "com.amazonaws.lexmodelsv2#Id",
3834                    "traits": {
3835                        "smithy.api#documentation": "<p>The identifier of the slot type.</p>",
3836                        "smithy.api#httpLabel": {},
3837                        "smithy.api#required": {}
3838                    }
3839                },
3840                "botId": {
3841                    "target": "com.amazonaws.lexmodelsv2#Id",
3842                    "traits": {
3843                        "smithy.api#documentation": "<p>The identifier of the bot associated with the slot type.</p>",
3844                        "smithy.api#httpLabel": {},
3845                        "smithy.api#required": {}
3846                    }
3847                },
3848                "botVersion": {
3849                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
3850                    "traits": {
3851                        "smithy.api#documentation": "<p>The version of the bot associated with the slot type.</p>",
3852                        "smithy.api#httpLabel": {},
3853                        "smithy.api#required": {}
3854                    }
3855                },
3856                "localeId": {
3857                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
3858                    "traits": {
3859                        "smithy.api#documentation": "<p>The identifier of the language and locale of the slot type to\n         describe. The string must match one of the supported locales. For more\n         information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
3860                        "smithy.api#httpLabel": {},
3861                        "smithy.api#required": {}
3862                    }
3863                }
3864            }
3865        },
3866        "com.amazonaws.lexmodelsv2#DescribeSlotTypeResponse": {
3867            "type": "structure",
3868            "members": {
3869                "slotTypeId": {
3870                    "target": "com.amazonaws.lexmodelsv2#Id",
3871                    "traits": {
3872                        "smithy.api#documentation": "<p>The unique identifier for the slot type.</p>"
3873                    }
3874                },
3875                "slotTypeName": {
3876                    "target": "com.amazonaws.lexmodelsv2#Name",
3877                    "traits": {
3878                        "smithy.api#documentation": "<p>The name specified for the slot type.</p>"
3879                    }
3880                },
3881                "description": {
3882                    "target": "com.amazonaws.lexmodelsv2#Description",
3883                    "traits": {
3884                        "smithy.api#documentation": "<p>The description specified for the slot type.</p>"
3885                    }
3886                },
3887                "slotTypeValues": {
3888                    "target": "com.amazonaws.lexmodelsv2#SlotTypeValues",
3889                    "traits": {
3890                        "smithy.api#documentation": "<p>The values that the slot type can take. Includes any synonyms for\n         the slot type values.</p>"
3891                    }
3892                },
3893                "valueSelectionSetting": {
3894                    "target": "com.amazonaws.lexmodelsv2#SlotValueSelectionSetting",
3895                    "traits": {
3896                        "smithy.api#documentation": "<p>The strategy that Amazon Lex uses to choose a value from a list of\n         possible values.</p>"
3897                    }
3898                },
3899                "parentSlotTypeSignature": {
3900                    "target": "com.amazonaws.lexmodelsv2#SlotTypeSignature",
3901                    "traits": {
3902                        "smithy.api#documentation": "<p>The built in slot type used as a parent to this slot type.</p>"
3903                    }
3904                },
3905                "botId": {
3906                    "target": "com.amazonaws.lexmodelsv2#Id",
3907                    "traits": {
3908                        "smithy.api#documentation": "<p>The identifier of the bot associated with the slot type.</p>"
3909                    }
3910                },
3911                "botVersion": {
3912                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
3913                    "traits": {
3914                        "smithy.api#documentation": "<p>The version of the bot associated with the slot type.</p>"
3915                    }
3916                },
3917                "localeId": {
3918                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
3919                    "traits": {
3920                        "smithy.api#documentation": "<p>The language and locale specified for the slot type.</p>"
3921                    }
3922                },
3923                "creationDateTime": {
3924                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
3925                    "traits": {
3926                        "smithy.api#documentation": "<p>A timestamp of the date and time that the slot type was\n         created.</p>"
3927                    }
3928                },
3929                "lastUpdatedDateTime": {
3930                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
3931                    "traits": {
3932                        "smithy.api#documentation": "<p>A timestamp of the date and time that the slot type was last\n         updated.</p>"
3933                    }
3934                }
3935            }
3936        },
3937        "com.amazonaws.lexmodelsv2#Description": {
3938            "type": "string",
3939            "traits": {
3940                "smithy.api#length": {
3941                    "min": 0,
3942                    "max": 200
3943                }
3944            }
3945        },
3946        "com.amazonaws.lexmodelsv2#DialogCodeHookSettings": {
3947            "type": "structure",
3948            "members": {
3949                "enabled": {
3950                    "target": "com.amazonaws.lexmodelsv2#Boolean",
3951                    "traits": {
3952                        "smithy.api#documentation": "<p>Enables the dialog code hook so that it processes user\n         requests.</p>",
3953                        "smithy.api#required": {}
3954                    }
3955                }
3956            },
3957            "traits": {
3958                "smithy.api#documentation": "<p>Settings that determine the Lambda function that Amazon Lex uses for\n         processing user responses.</p>"
3959            }
3960        },
3961        "com.amazonaws.lexmodelsv2#DraftBotVersion": {
3962            "type": "string",
3963            "traits": {
3964                "smithy.api#length": {
3965                    "min": 5,
3966                    "max": 5
3967                },
3968                "smithy.api#pattern": "^DRAFT$"
3969            }
3970        },
3971        "com.amazonaws.lexmodelsv2#ExceptionMessage": {
3972            "type": "string"
3973        },
3974        "com.amazonaws.lexmodelsv2#FailureReason": {
3975            "type": "string"
3976        },
3977        "com.amazonaws.lexmodelsv2#FailureReasons": {
3978            "type": "list",
3979            "member": {
3980                "target": "com.amazonaws.lexmodelsv2#FailureReason"
3981            }
3982        },
3983        "com.amazonaws.lexmodelsv2#FilterValue": {
3984            "type": "string",
3985            "traits": {
3986                "smithy.api#length": {
3987                    "min": 1,
3988                    "max": 100
3989                },
3990                "smithy.api#pattern": "^[0-9a-zA-Z_()\\s-]+$"
3991            }
3992        },
3993        "com.amazonaws.lexmodelsv2#FilterValues": {
3994            "type": "list",
3995            "member": {
3996                "target": "com.amazonaws.lexmodelsv2#FilterValue"
3997            },
3998            "traits": {
3999                "smithy.api#length": {
4000                    "min": 1,
4001                    "max": 1
4002                }
4003            }
4004        },
4005        "com.amazonaws.lexmodelsv2#FulfillmentCodeHookSettings": {
4006            "type": "structure",
4007            "members": {
4008                "enabled": {
4009                    "target": "com.amazonaws.lexmodelsv2#Boolean",
4010                    "traits": {
4011                        "smithy.api#documentation": "<p>Indicates whether a Lambda function should be invoked to fulfill a\n         specific intent.</p>",
4012                        "smithy.api#required": {}
4013                    }
4014                }
4015            },
4016            "traits": {
4017                "smithy.api#documentation": "<p>Determines if a Lambda function should be invoked for a specific\n         intent.</p>"
4018            }
4019        },
4020        "com.amazonaws.lexmodelsv2#Id": {
4021            "type": "string",
4022            "traits": {
4023                "smithy.api#length": {
4024                    "min": 10,
4025                    "max": 10
4026                },
4027                "smithy.api#pattern": "^[0-9a-zA-Z]+$"
4028            }
4029        },
4030        "com.amazonaws.lexmodelsv2#ImageResponseCard": {
4031            "type": "structure",
4032            "members": {
4033                "title": {
4034                    "target": "com.amazonaws.lexmodelsv2#AttachmentTitle",
4035                    "traits": {
4036                        "smithy.api#documentation": "<p>The title to display on the response card. The format of the title\n         is determined by the platform displaying the response card.</p>",
4037                        "smithy.api#required": {}
4038                    }
4039                },
4040                "subtitle": {
4041                    "target": "com.amazonaws.lexmodelsv2#AttachmentTitle",
4042                    "traits": {
4043                        "smithy.api#documentation": "<p>The subtitle to display on the response card. The format of the\n         subtitle is determined by the platform displaying the response\n         card.</p>"
4044                    }
4045                },
4046                "imageUrl": {
4047                    "target": "com.amazonaws.lexmodelsv2#AttachmentUrl",
4048                    "traits": {
4049                        "smithy.api#documentation": "<p>The URL of an image to display on the response card. The image URL\n         must be publicly available so that the platform displaying the response\n         card has access to the image.</p>"
4050                    }
4051                },
4052                "buttons": {
4053                    "target": "com.amazonaws.lexmodelsv2#ButtonsList",
4054                    "traits": {
4055                        "smithy.api#documentation": "<p>A list of buttons that should be displayed on the response card. The\n         arrangement of the buttons is determined by the platform that displays\n         the button.</p>"
4056                    }
4057                }
4058            },
4059            "traits": {
4060                "smithy.api#documentation": "<p>A card that is shown to the user by a messaging platform. You define\n         the contents of the card, the card is displayed by the platform. </p>\n         <p>When you use a response card, the response from the user is\n         constrained to the text associated with a button on the card.</p>"
4061            }
4062        },
4063        "com.amazonaws.lexmodelsv2#InputContext": {
4064            "type": "structure",
4065            "members": {
4066                "name": {
4067                    "target": "com.amazonaws.lexmodelsv2#Name",
4068                    "traits": {
4069                        "smithy.api#documentation": "<p>The name of the context.</p>",
4070                        "smithy.api#required": {}
4071                    }
4072                }
4073            },
4074            "traits": {
4075                "smithy.api#documentation": "<p>The name of a context that must be active for an intent to be\n         selected by Amazon Lex.</p>"
4076            }
4077        },
4078        "com.amazonaws.lexmodelsv2#InputContextsList": {
4079            "type": "list",
4080            "member": {
4081                "target": "com.amazonaws.lexmodelsv2#InputContext"
4082            },
4083            "traits": {
4084                "smithy.api#length": {
4085                    "min": 0,
4086                    "max": 5
4087                }
4088            }
4089        },
4090        "com.amazonaws.lexmodelsv2#IntentClosingSetting": {
4091            "type": "structure",
4092            "members": {
4093                "closingResponse": {
4094                    "target": "com.amazonaws.lexmodelsv2#ResponseSpecification",
4095                    "traits": {
4096                        "smithy.api#documentation": "<p>The response that Amazon Lex sends to the user when the intent is\n         complete.</p>",
4097                        "smithy.api#required": {}
4098                    }
4099                }
4100            },
4101            "traits": {
4102                "smithy.api#documentation": "<p>Provides a statement the Amazon Lex conveys to the user when the intent\n         is successfully fulfilled.</p>"
4103            }
4104        },
4105        "com.amazonaws.lexmodelsv2#IntentConfirmationSetting": {
4106            "type": "structure",
4107            "members": {
4108                "promptSpecification": {
4109                    "target": "com.amazonaws.lexmodelsv2#PromptSpecification",
4110                    "traits": {
4111                        "smithy.api#documentation": "<p>Prompts the user to confirm the intent. This question should have a\n         yes or no answer.</p>\n         <p>Amazon Lex uses this prompt to ensure that the user acknowledges that the\n         intent is ready for fulfillment. For example, with the\n            <code>OrderPizza</code> intent, you might want to confirm that the\n         order is correct before placing it. For other intents, such as intents\n         that simply respond to user questions, you might not need to ask the\n         user for confirmation before providing the information. </p>",
4112                        "smithy.api#required": {}
4113                    }
4114                },
4115                "declinationResponse": {
4116                    "target": "com.amazonaws.lexmodelsv2#ResponseSpecification",
4117                    "traits": {
4118                        "smithy.api#documentation": "<p>When the user answers \"no\" to the question defined in\n            <code>promptSpecification</code>, Amazon Lex responds with this response\n         to acknowledge that the intent was canceled. </p>",
4119                        "smithy.api#required": {}
4120                    }
4121                }
4122            },
4123            "traits": {
4124                "smithy.api#documentation": "<p>Provides a prompt for making sure that the user is ready for the\n         intent to be fulfilled.</p>"
4125            }
4126        },
4127        "com.amazonaws.lexmodelsv2#IntentFilter": {
4128            "type": "structure",
4129            "members": {
4130                "name": {
4131                    "target": "com.amazonaws.lexmodelsv2#IntentFilterName",
4132                    "traits": {
4133                        "smithy.api#documentation": "<p>The name of the field to use for the filter.</p>",
4134                        "smithy.api#required": {}
4135                    }
4136                },
4137                "values": {
4138                    "target": "com.amazonaws.lexmodelsv2#FilterValues",
4139                    "traits": {
4140                        "smithy.api#documentation": "<p>The value to use for the filter.</p>",
4141                        "smithy.api#required": {}
4142                    }
4143                },
4144                "operator": {
4145                    "target": "com.amazonaws.lexmodelsv2#IntentFilterOperator",
4146                    "traits": {
4147                        "smithy.api#documentation": "<p>The operator to use for the filter. Specify <code>EQ</code> when the\n            <code>ListIntents</code> operation should return only aliases that\n         equal the specified value. Specify <code>CO</code> when the\n            <code>ListIntents</code> operation should return aliases that\n         contain the specified value.</p>",
4148                        "smithy.api#required": {}
4149                    }
4150                }
4151            },
4152            "traits": {
4153                "smithy.api#documentation": "<p>Filters the response from the <code>ListIntents</code>\n         operation.</p>"
4154            }
4155        },
4156        "com.amazonaws.lexmodelsv2#IntentFilterName": {
4157            "type": "string",
4158            "traits": {
4159                "smithy.api#enum": [
4160                    {
4161                        "value": "IntentName",
4162                        "name": "IntentName"
4163                    }
4164                ]
4165            }
4166        },
4167        "com.amazonaws.lexmodelsv2#IntentFilterOperator": {
4168            "type": "string",
4169            "traits": {
4170                "smithy.api#enum": [
4171                    {
4172                        "value": "CO",
4173                        "name": "Contains"
4174                    },
4175                    {
4176                        "value": "EQ",
4177                        "name": "Equals"
4178                    }
4179                ]
4180            }
4181        },
4182        "com.amazonaws.lexmodelsv2#IntentFilters": {
4183            "type": "list",
4184            "member": {
4185                "target": "com.amazonaws.lexmodelsv2#IntentFilter"
4186            },
4187            "traits": {
4188                "smithy.api#length": {
4189                    "min": 1,
4190                    "max": 1
4191                }
4192            }
4193        },
4194        "com.amazonaws.lexmodelsv2#IntentSignature": {
4195            "type": "string"
4196        },
4197        "com.amazonaws.lexmodelsv2#IntentSortAttribute": {
4198            "type": "string",
4199            "traits": {
4200                "smithy.api#enum": [
4201                    {
4202                        "value": "IntentName",
4203                        "name": "IntentName"
4204                    },
4205                    {
4206                        "value": "LastUpdatedDateTime",
4207                        "name": "LastUpdatedDateTime"
4208                    }
4209                ]
4210            }
4211        },
4212        "com.amazonaws.lexmodelsv2#IntentSortBy": {
4213            "type": "structure",
4214            "members": {
4215                "attribute": {
4216                    "target": "com.amazonaws.lexmodelsv2#IntentSortAttribute",
4217                    "traits": {
4218                        "smithy.api#documentation": "<p>The attribute to use to sort the list of intents.</p>",
4219                        "smithy.api#required": {}
4220                    }
4221                },
4222                "order": {
4223                    "target": "com.amazonaws.lexmodelsv2#SortOrder",
4224                    "traits": {
4225                        "smithy.api#documentation": "<p>The order to sort the list. You can choose ascending or\n         descending.</p>",
4226                        "smithy.api#required": {}
4227                    }
4228                }
4229            },
4230            "traits": {
4231                "smithy.api#documentation": "<p>Specifies attributes for sorting a list of intents.</p>"
4232            }
4233        },
4234        "com.amazonaws.lexmodelsv2#IntentSummary": {
4235            "type": "structure",
4236            "members": {
4237                "intentId": {
4238                    "target": "com.amazonaws.lexmodelsv2#Id",
4239                    "traits": {
4240                        "smithy.api#documentation": "<p>The unique identifier assigned to the intent. Use this ID to get\n         detailed information about the intent with the\n            <code>DescribeIntent</code> operation.</p>"
4241                    }
4242                },
4243                "intentName": {
4244                    "target": "com.amazonaws.lexmodelsv2#Name",
4245                    "traits": {
4246                        "smithy.api#documentation": "<p>The name of the intent.</p>"
4247                    }
4248                },
4249                "description": {
4250                    "target": "com.amazonaws.lexmodelsv2#Description",
4251                    "traits": {
4252                        "smithy.api#documentation": "<p>The description of the intent.</p>"
4253                    }
4254                },
4255                "parentIntentSignature": {
4256                    "target": "com.amazonaws.lexmodelsv2#IntentSignature",
4257                    "traits": {
4258                        "smithy.api#documentation": "<p>If this intent is derived from a built-in intent, the name of the\n         parent intent.</p>"
4259                    }
4260                },
4261                "inputContexts": {
4262                    "target": "com.amazonaws.lexmodelsv2#InputContextsList",
4263                    "traits": {
4264                        "smithy.api#documentation": "<p>The input contexts that must be active for this intent to be\n         considered for recognition.</p>"
4265                    }
4266                },
4267                "outputContexts": {
4268                    "target": "com.amazonaws.lexmodelsv2#OutputContextsList",
4269                    "traits": {
4270                        "smithy.api#documentation": "<p>The output contexts that are activated when this intent is\n         fulfilled.</p>"
4271                    }
4272                },
4273                "lastUpdatedDateTime": {
4274                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
4275                    "traits": {
4276                        "smithy.api#documentation": "<p>The timestamp of the date and time that the intent was last\n         updated.</p>"
4277                    }
4278                }
4279            },
4280            "traits": {
4281                "smithy.api#documentation": "<p>Summary information about an intent returned by the\n            <code>ListIntents</code> operation.</p>"
4282            }
4283        },
4284        "com.amazonaws.lexmodelsv2#IntentSummaryList": {
4285            "type": "list",
4286            "member": {
4287                "target": "com.amazonaws.lexmodelsv2#IntentSummary"
4288            }
4289        },
4290        "com.amazonaws.lexmodelsv2#InternalServerException": {
4291            "type": "structure",
4292            "members": {
4293                "message": {
4294                    "target": "com.amazonaws.lexmodelsv2#ExceptionMessage"
4295                }
4296            },
4297            "traits": {
4298                "smithy.api#documentation": "<p></p>",
4299                "smithy.api#error": "server",
4300                "smithy.api#httpError": 500
4301            }
4302        },
4303        "com.amazonaws.lexmodelsv2#KendraConfiguration": {
4304            "type": "structure",
4305            "members": {
4306                "kendraIndex": {
4307                    "target": "com.amazonaws.lexmodelsv2#KendraIndexArn",
4308                    "traits": {
4309                        "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the Amazon Kendra index that you want the\n         AMAZON.KendraSearchIntent intent to search. The index must be in the\n         same account and Region as the Amazon Lex bot.</p>",
4310                        "smithy.api#required": {}
4311                    }
4312                },
4313                "queryFilterStringEnabled": {
4314                    "target": "com.amazonaws.lexmodelsv2#Boolean",
4315                    "traits": {
4316                        "smithy.api#documentation": "<p>Determines whether the AMAZON.KendraSearchIntent intent uses a\n         custom query string to query the Amazon Kendra index.</p>"
4317                    }
4318                },
4319                "queryFilterString": {
4320                    "target": "com.amazonaws.lexmodelsv2#QueryFilterString",
4321                    "traits": {
4322                        "smithy.api#documentation": "<p>A query filter that Amazon Lex sends to Amazon Kendra to filter the response from\n         a query. The filter is in the format defined by Amazon Kendra. For more\n         information, see <a href=\"https://docs.aws.amazon.com/kendra/latest/dg/filtering.html\">Filtering\n         queries</a>.</p>"
4323                    }
4324                }
4325            },
4326            "traits": {
4327                "smithy.api#documentation": "<p>Provides configuration information for the AMAZON.KendraSearchIntent\n         intent. When you use this intent, Amazon Lex searches the specified Amazon Kendra\n         index and returns documents from the index that match the user's\n         utterance.</p>"
4328            }
4329        },
4330        "com.amazonaws.lexmodelsv2#KendraIndexArn": {
4331            "type": "string",
4332            "traits": {
4333                "smithy.api#length": {
4334                    "min": 32,
4335                    "max": 2048
4336                },
4337                "smithy.api#pattern": "^arn:aws:kendra:[a-z]+-[a-z]+-[0-9]:[0-9]{12}:index\\/[a-zA-Z0-9][a-zA-Z0-9_-]*$"
4338            }
4339        },
4340        "com.amazonaws.lexmodelsv2#KmsKeyArn": {
4341            "type": "string",
4342            "traits": {
4343                "smithy.api#length": {
4344                    "min": 20,
4345                    "max": 2048
4346                },
4347                "smithy.api#pattern": "^arn:[\\w\\-]+:kms:[\\w\\-]+:[\\d]{12}:(?:key\\/[\\w\\-]+|alias\\/[a-zA-Z0-9:\\/_\\-]{1,256})$"
4348            }
4349        },
4350        "com.amazonaws.lexmodelsv2#LambdaARN": {
4351            "type": "string",
4352            "traits": {
4353                "smithy.api#length": {
4354                    "min": 20,
4355                    "max": 2048
4356                },
4357                "smithy.api#pattern": "arn:aws:lambda:[a-z]+-[a-z]+-[0-9]:[0-9]{12}:function:[a-zA-Z0-9-_]+(/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})?(:[a-zA-Z0-9-_]+)?"
4358            }
4359        },
4360        "com.amazonaws.lexmodelsv2#LambdaCodeHook": {
4361            "type": "structure",
4362            "members": {
4363                "lambdaARN": {
4364                    "target": "com.amazonaws.lexmodelsv2#LambdaARN",
4365                    "traits": {
4366                        "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the Lambda function.</p>",
4367                        "smithy.api#required": {}
4368                    }
4369                },
4370                "codeHookInterfaceVersion": {
4371                    "target": "com.amazonaws.lexmodelsv2#CodeHookInterfaceVersion",
4372                    "traits": {
4373                        "smithy.api#documentation": "<p>The version of the request-response that you want Amazon Lex to use to\n         invoke your Lambda function.</p>",
4374                        "smithy.api#required": {}
4375                    }
4376                }
4377            },
4378            "traits": {
4379                "smithy.api#documentation": "<p>Specifies a Lambda function that verifies requests to a bot or\n         fulfilles the user's request to a bot.</p>"
4380            }
4381        },
4382        "com.amazonaws.lexmodelsv2#LexModelBuildingServiceV2": {
4383            "type": "service",
4384            "version": "2020-08-07",
4385            "operations": [
4386                {
4387                    "target": "com.amazonaws.lexmodelsv2#BuildBotLocale"
4388                },
4389                {
4390                    "target": "com.amazonaws.lexmodelsv2#CreateBot"
4391                },
4392                {
4393                    "target": "com.amazonaws.lexmodelsv2#CreateBotAlias"
4394                },
4395                {
4396                    "target": "com.amazonaws.lexmodelsv2#CreateBotLocale"
4397                },
4398                {
4399                    "target": "com.amazonaws.lexmodelsv2#CreateBotVersion"
4400                },
4401                {
4402                    "target": "com.amazonaws.lexmodelsv2#CreateIntent"
4403                },
4404                {
4405                    "target": "com.amazonaws.lexmodelsv2#CreateSlot"
4406                },
4407                {
4408                    "target": "com.amazonaws.lexmodelsv2#CreateSlotType"
4409                },
4410                {
4411                    "target": "com.amazonaws.lexmodelsv2#DeleteBot"
4412                },
4413                {
4414                    "target": "com.amazonaws.lexmodelsv2#DeleteBotAlias"
4415                },
4416                {
4417                    "target": "com.amazonaws.lexmodelsv2#DeleteBotLocale"
4418                },
4419                {
4420                    "target": "com.amazonaws.lexmodelsv2#DeleteBotVersion"
4421                },
4422                {
4423                    "target": "com.amazonaws.lexmodelsv2#DeleteIntent"
4424                },
4425                {
4426                    "target": "com.amazonaws.lexmodelsv2#DeleteSlot"
4427                },
4428                {
4429                    "target": "com.amazonaws.lexmodelsv2#DeleteSlotType"
4430                },
4431                {
4432                    "target": "com.amazonaws.lexmodelsv2#DescribeBot"
4433                },
4434                {
4435                    "target": "com.amazonaws.lexmodelsv2#DescribeBotAlias"
4436                },
4437                {
4438                    "target": "com.amazonaws.lexmodelsv2#DescribeBotLocale"
4439                },
4440                {
4441                    "target": "com.amazonaws.lexmodelsv2#DescribeBotVersion"
4442                },
4443                {
4444                    "target": "com.amazonaws.lexmodelsv2#DescribeIntent"
4445                },
4446                {
4447                    "target": "com.amazonaws.lexmodelsv2#DescribeSlot"
4448                },
4449                {
4450                    "target": "com.amazonaws.lexmodelsv2#DescribeSlotType"
4451                },
4452                {
4453                    "target": "com.amazonaws.lexmodelsv2#ListBotAliases"
4454                },
4455                {
4456                    "target": "com.amazonaws.lexmodelsv2#ListBotLocales"
4457                },
4458                {
4459                    "target": "com.amazonaws.lexmodelsv2#ListBots"
4460                },
4461                {
4462                    "target": "com.amazonaws.lexmodelsv2#ListBotVersions"
4463                },
4464                {
4465                    "target": "com.amazonaws.lexmodelsv2#ListBuiltInIntents"
4466                },
4467                {
4468                    "target": "com.amazonaws.lexmodelsv2#ListBuiltInSlotTypes"
4469                },
4470                {
4471                    "target": "com.amazonaws.lexmodelsv2#ListIntents"
4472                },
4473                {
4474                    "target": "com.amazonaws.lexmodelsv2#ListSlots"
4475                },
4476                {
4477                    "target": "com.amazonaws.lexmodelsv2#ListSlotTypes"
4478                },
4479                {
4480                    "target": "com.amazonaws.lexmodelsv2#ListTagsForResource"
4481                },
4482                {
4483                    "target": "com.amazonaws.lexmodelsv2#TagResource"
4484                },
4485                {
4486                    "target": "com.amazonaws.lexmodelsv2#UntagResource"
4487                },
4488                {
4489                    "target": "com.amazonaws.lexmodelsv2#UpdateBot"
4490                },
4491                {
4492                    "target": "com.amazonaws.lexmodelsv2#UpdateBotAlias"
4493                },
4494                {
4495                    "target": "com.amazonaws.lexmodelsv2#UpdateBotLocale"
4496                },
4497                {
4498                    "target": "com.amazonaws.lexmodelsv2#UpdateIntent"
4499                },
4500                {
4501                    "target": "com.amazonaws.lexmodelsv2#UpdateSlot"
4502                },
4503                {
4504                    "target": "com.amazonaws.lexmodelsv2#UpdateSlotType"
4505                }
4506            ],
4507            "traits": {
4508                "aws.api#service": {
4509                    "sdkId": "Lex Models V2",
4510                    "arnNamespace": "lex",
4511                    "cloudFormationName": "LexModelsV2",
4512                    "cloudTrailEventSource": "lexmodelsv2.amazonaws.com",
4513                    "endpointPrefix": "models-v2-lex"
4514                },
4515                "aws.auth#sigv4": {
4516                    "name": "lex"
4517                },
4518                "aws.protocols#restJson1": {},
4519                "smithy.api#documentation": "<p></p>",
4520                "smithy.api#title": "Amazon Lex Model Building V2"
4521            }
4522        },
4523        "com.amazonaws.lexmodelsv2#ListBotAliases": {
4524            "type": "operation",
4525            "input": {
4526                "target": "com.amazonaws.lexmodelsv2#ListBotAliasesRequest"
4527            },
4528            "output": {
4529                "target": "com.amazonaws.lexmodelsv2#ListBotAliasesResponse"
4530            },
4531            "errors": [
4532                {
4533                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
4534                },
4535                {
4536                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
4537                },
4538                {
4539                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
4540                },
4541                {
4542                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
4543                }
4544            ],
4545            "traits": {
4546                "smithy.api#documentation": "<p>Gets a list of aliases for the specified bot.</p>",
4547                "smithy.api#http": {
4548                    "method": "POST",
4549                    "uri": "/bots/{botId}/botaliases",
4550                    "code": 200
4551                },
4552                "smithy.api#paginated": {
4553                    "inputToken": "nextToken",
4554                    "outputToken": "nextToken",
4555                    "pageSize": "maxResults"
4556                }
4557            }
4558        },
4559        "com.amazonaws.lexmodelsv2#ListBotAliasesRequest": {
4560            "type": "structure",
4561            "members": {
4562                "botId": {
4563                    "target": "com.amazonaws.lexmodelsv2#Id",
4564                    "traits": {
4565                        "smithy.api#documentation": "<p>The identifier of the bot to list aliases for.</p>",
4566                        "smithy.api#httpLabel": {},
4567                        "smithy.api#required": {}
4568                    }
4569                },
4570                "maxResults": {
4571                    "target": "com.amazonaws.lexmodelsv2#MaxResults",
4572                    "traits": {
4573                        "smithy.api#documentation": "<p>The maximum number of aliases to return in each page of results. If\n         there are fewer results than the max page size, only the actual number\n         of results are returned.</p>"
4574                    }
4575                },
4576                "nextToken": {
4577                    "target": "com.amazonaws.lexmodelsv2#NextToken",
4578                    "traits": {
4579                        "smithy.api#documentation": "<p>If the response from the <code>ListBotAliases</code> operation\n         contains more results than specified in the <code>maxResults</code>\n         parameter, a token is returned in the response. Use that token in the\n            <code>nextToken</code> parameter to return the next page of\n         results.</p>"
4580                    }
4581                }
4582            }
4583        },
4584        "com.amazonaws.lexmodelsv2#ListBotAliasesResponse": {
4585            "type": "structure",
4586            "members": {
4587                "botAliasSummaries": {
4588                    "target": "com.amazonaws.lexmodelsv2#BotAliasSummaryList",
4589                    "traits": {
4590                        "smithy.api#documentation": "<p>Summary information for the bot aliases that meet the filter\n         criteria specified in the request. The length of the list is specified\n         in the <code>maxResults</code> parameter of the request. If there are\n         more aliases available, the <code>nextToken</code> field contains a\n         token to get the next page of results.</p>"
4591                    }
4592                },
4593                "nextToken": {
4594                    "target": "com.amazonaws.lexmodelsv2#NextToken",
4595                    "traits": {
4596                        "smithy.api#documentation": "<p>A token that indicates whether there are more results to return in a\n         response to the <code>ListBotAliases</code> operation. If the\n            <code>nextToken</code> field is present, you send the contents as\n         the <code>nextToken</code> parameter of a <code>ListBotAliases</code>\n         operation request to get the next page of results.</p>"
4597                    }
4598                },
4599                "botId": {
4600                    "target": "com.amazonaws.lexmodelsv2#Id",
4601                    "traits": {
4602                        "smithy.api#documentation": "<p>The identifier of the bot associated with the aliases.</p>"
4603                    }
4604                }
4605            }
4606        },
4607        "com.amazonaws.lexmodelsv2#ListBotLocales": {
4608            "type": "operation",
4609            "input": {
4610                "target": "com.amazonaws.lexmodelsv2#ListBotLocalesRequest"
4611            },
4612            "output": {
4613                "target": "com.amazonaws.lexmodelsv2#ListBotLocalesResponse"
4614            },
4615            "errors": [
4616                {
4617                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
4618                },
4619                {
4620                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
4621                },
4622                {
4623                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
4624                },
4625                {
4626                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
4627                }
4628            ],
4629            "traits": {
4630                "smithy.api#documentation": "<p>Gets a list of locales for the specified bot.</p>",
4631                "smithy.api#http": {
4632                    "method": "POST",
4633                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales",
4634                    "code": 200
4635                },
4636                "smithy.api#paginated": {
4637                    "inputToken": "nextToken",
4638                    "outputToken": "nextToken",
4639                    "pageSize": "maxResults"
4640                }
4641            }
4642        },
4643        "com.amazonaws.lexmodelsv2#ListBotLocalesRequest": {
4644            "type": "structure",
4645            "members": {
4646                "botId": {
4647                    "target": "com.amazonaws.lexmodelsv2#Id",
4648                    "traits": {
4649                        "smithy.api#documentation": "<p>The identifier of the bot to list locales for.</p>",
4650                        "smithy.api#httpLabel": {},
4651                        "smithy.api#required": {}
4652                    }
4653                },
4654                "botVersion": {
4655                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
4656                    "traits": {
4657                        "smithy.api#documentation": "<p>The version of the bot to list locales for.</p>",
4658                        "smithy.api#httpLabel": {},
4659                        "smithy.api#required": {}
4660                    }
4661                },
4662                "sortBy": {
4663                    "target": "com.amazonaws.lexmodelsv2#BotLocaleSortBy",
4664                    "traits": {
4665                        "smithy.api#documentation": "<p>Specifies sorting parameters for the list of locales. You can sort\n         by locale name in ascending or descending order.</p>"
4666                    }
4667                },
4668                "filters": {
4669                    "target": "com.amazonaws.lexmodelsv2#BotLocaleFilters",
4670                    "traits": {
4671                        "smithy.api#documentation": "<p>Provides the specification for a filter used to limit the response\n         to only those locales that match the filter specification. You can only\n         specify one filter and one value to filter on.</p>"
4672                    }
4673                },
4674                "maxResults": {
4675                    "target": "com.amazonaws.lexmodelsv2#MaxResults",
4676                    "traits": {
4677                        "smithy.api#documentation": "<p>The maximum number of aliases to return in each page of results. If\n         there are fewer results than the max page size, only the actual number\n         of results are returned.</p>"
4678                    }
4679                },
4680                "nextToken": {
4681                    "target": "com.amazonaws.lexmodelsv2#NextToken",
4682                    "traits": {
4683                        "smithy.api#documentation": "<p>If the response from the <code>ListBotLocales</code> operation\n         contains more results than specified in the <code>maxResults</code>\n         parameter, a token is returned in the response. Use that token as the\n            <code>nextToken</code> parameter to return the next page of results.\n      </p>"
4684                    }
4685                }
4686            }
4687        },
4688        "com.amazonaws.lexmodelsv2#ListBotLocalesResponse": {
4689            "type": "structure",
4690            "members": {
4691                "botId": {
4692                    "target": "com.amazonaws.lexmodelsv2#Id",
4693                    "traits": {
4694                        "smithy.api#documentation": "<p>The identifier of the bot to list locales for.</p>"
4695                    }
4696                },
4697                "botVersion": {
4698                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
4699                    "traits": {
4700                        "smithy.api#documentation": "<p>The version of the bot.</p>"
4701                    }
4702                },
4703                "nextToken": {
4704                    "target": "com.amazonaws.lexmodelsv2#NextToken",
4705                    "traits": {
4706                        "smithy.api#documentation": "<p>A token that indicates whether there are more results to return in a\n         response to the <code>ListBotLocales</code> operation. If the\n            <code>nextToken</code> field is present, you send the contents as\n         the <code>nextToken</code> parameter of a <code>ListBotLocales</code>\n         operation request to get the next page of results.</p>"
4707                    }
4708                },
4709                "botLocaleSummaries": {
4710                    "target": "com.amazonaws.lexmodelsv2#BotLocaleSummaryList",
4711                    "traits": {
4712                        "smithy.api#documentation": "<p>Summary information for the locales that meet the filter criteria\n         specified in the request. The length of the list is specified in the\n            <code>maxResults</code> parameter of the request. If there are more\n         locales available, the <code>nextToken</code> field contains a token to\n         get the next page of results.</p>"
4713                    }
4714                }
4715            }
4716        },
4717        "com.amazonaws.lexmodelsv2#ListBotVersions": {
4718            "type": "operation",
4719            "input": {
4720                "target": "com.amazonaws.lexmodelsv2#ListBotVersionsRequest"
4721            },
4722            "output": {
4723                "target": "com.amazonaws.lexmodelsv2#ListBotVersionsResponse"
4724            },
4725            "errors": [
4726                {
4727                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
4728                },
4729                {
4730                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
4731                },
4732                {
4733                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
4734                },
4735                {
4736                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
4737                }
4738            ],
4739            "traits": {
4740                "smithy.api#documentation": "<p>Gets information about all of the versions of a bot.</p>\n         <p>The <code>ListBotVersions</code> operation returns a summary of each\n         version of a bot. For example, if a bot has three numbered versions,\n         the <code>ListBotVersions</code> operation returns for summaries, one\n         for each numbered version and one for the <code>DRAFT</code>\n         version.</p>\n         <p>The <code>ListBotVersions</code> operation always returns at least\n         one version, the <code>DRAFT</code> version.</p>",
4741                "smithy.api#http": {
4742                    "method": "POST",
4743                    "uri": "/bots/{botId}/botversions",
4744                    "code": 200
4745                },
4746                "smithy.api#paginated": {
4747                    "inputToken": "nextToken",
4748                    "outputToken": "nextToken",
4749                    "pageSize": "maxResults"
4750                }
4751            }
4752        },
4753        "com.amazonaws.lexmodelsv2#ListBotVersionsRequest": {
4754            "type": "structure",
4755            "members": {
4756                "botId": {
4757                    "target": "com.amazonaws.lexmodelsv2#Id",
4758                    "traits": {
4759                        "smithy.api#documentation": "<p>The identifier of the bot to list versions for.</p>",
4760                        "smithy.api#httpLabel": {},
4761                        "smithy.api#required": {}
4762                    }
4763                },
4764                "sortBy": {
4765                    "target": "com.amazonaws.lexmodelsv2#BotVersionSortBy",
4766                    "traits": {
4767                        "smithy.api#documentation": "<p>Specifies sorting parameters for the list of versions. You can\n         specify that the list be sorted by version name in either ascending or\n         descending order.</p>"
4768                    }
4769                },
4770                "maxResults": {
4771                    "target": "com.amazonaws.lexmodelsv2#MaxResults",
4772                    "traits": {
4773                        "smithy.api#documentation": "<p>The maximum number of versions to return in each page of results. If\n         there are fewer results than the max page size, only the actual number\n         of results are returned.</p>"
4774                    }
4775                },
4776                "nextToken": {
4777                    "target": "com.amazonaws.lexmodelsv2#NextToken",
4778                    "traits": {
4779                        "smithy.api#documentation": "<p>If the response to the <code>ListBotVersion</code> operation\n         contains more results than specified in the <code>maxResults</code>\n         parameter, a token is returned in the response. Use that token in the\n            <code>nextToken</code> parameter to return the next page of\n         results.</p>"
4780                    }
4781                }
4782            }
4783        },
4784        "com.amazonaws.lexmodelsv2#ListBotVersionsResponse": {
4785            "type": "structure",
4786            "members": {
4787                "botId": {
4788                    "target": "com.amazonaws.lexmodelsv2#Id",
4789                    "traits": {
4790                        "smithy.api#documentation": "<p>The identifier of the bot to list versions for.</p>"
4791                    }
4792                },
4793                "botVersionSummaries": {
4794                    "target": "com.amazonaws.lexmodelsv2#BotVersionSummaryList",
4795                    "traits": {
4796                        "smithy.api#documentation": "<p>Summary information for the bot versions that meet the filter\n         criteria specified in the request. The length of the list is specified\n         in the <code>maxResults</code> parameter of the request. If there are\n         more versions available, the <code>nextToken</code> field contains a\n         token to get the next page of results.</p>"
4797                    }
4798                },
4799                "nextToken": {
4800                    "target": "com.amazonaws.lexmodelsv2#NextToken",
4801                    "traits": {
4802                        "smithy.api#documentation": "<p>A token that indicates whether there are more results to return in a\n         response to the <code>ListBotVersions</code> operation. If the\n            <code>nextToken</code> field is present, you send the contents as\n         the <code>nextToken</code> parameter of a <code>ListBotAliases</code>\n         operation request to get the next page of results.</p>"
4803                    }
4804                }
4805            }
4806        },
4807        "com.amazonaws.lexmodelsv2#ListBots": {
4808            "type": "operation",
4809            "input": {
4810                "target": "com.amazonaws.lexmodelsv2#ListBotsRequest"
4811            },
4812            "output": {
4813                "target": "com.amazonaws.lexmodelsv2#ListBotsResponse"
4814            },
4815            "errors": [
4816                {
4817                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
4818                },
4819                {
4820                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
4821                },
4822                {
4823                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
4824                },
4825                {
4826                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
4827                }
4828            ],
4829            "traits": {
4830                "smithy.api#documentation": "<p>Gets a list of available bots.</p>",
4831                "smithy.api#http": {
4832                    "method": "POST",
4833                    "uri": "/bots",
4834                    "code": 200
4835                },
4836                "smithy.api#paginated": {
4837                    "inputToken": "nextToken",
4838                    "outputToken": "nextToken",
4839                    "pageSize": "maxResults"
4840                }
4841            }
4842        },
4843        "com.amazonaws.lexmodelsv2#ListBotsRequest": {
4844            "type": "structure",
4845            "members": {
4846                "sortBy": {
4847                    "target": "com.amazonaws.lexmodelsv2#BotSortBy",
4848                    "traits": {
4849                        "smithy.api#documentation": "<p>Specifies sorting parameters for the list of bots. You can specify\n         that the list be sorted by bot name in ascending or descending\n         order.</p>"
4850                    }
4851                },
4852                "filters": {
4853                    "target": "com.amazonaws.lexmodelsv2#BotFilters",
4854                    "traits": {
4855                        "smithy.api#documentation": "<p>Provides the specification of a filter used to limit the bots in the\n         response to only those that match the filter specification. You can\n         only specify one filter and one string to filter on.</p>"
4856                    }
4857                },
4858                "maxResults": {
4859                    "target": "com.amazonaws.lexmodelsv2#MaxResults",
4860                    "traits": {
4861                        "smithy.api#documentation": "<p>The maximum number of bots to return in each page of results. If\n         there are fewer results than the maximum page size, only the actual\n         number of results are returned.</p>"
4862                    }
4863                },
4864                "nextToken": {
4865                    "target": "com.amazonaws.lexmodelsv2#NextToken",
4866                    "traits": {
4867                        "smithy.api#documentation": "<p>If the response from the <code>ListBots</code> operation contains\n         more results than specified in the <code>maxResults</code> parameter, a\n         token is returned in the response. Use that token in the\n            <code>nextToken</code> parameter to return the next page of\n         results.</p>"
4868                    }
4869                }
4870            }
4871        },
4872        "com.amazonaws.lexmodelsv2#ListBotsResponse": {
4873            "type": "structure",
4874            "members": {
4875                "botSummaries": {
4876                    "target": "com.amazonaws.lexmodelsv2#BotSummaryList",
4877                    "traits": {
4878                        "smithy.api#documentation": "<p>Summary information for the bots that meet the filter criteria\n         specified in the request. The length of the list is specified in the\n            <code>maxResults</code> parameter of the request. If there are more\n         bots available, the <code>nextToken</code> field contains a token to\n         the next page of results.</p>"
4879                    }
4880                },
4881                "nextToken": {
4882                    "target": "com.amazonaws.lexmodelsv2#NextToken",
4883                    "traits": {
4884                        "smithy.api#documentation": "<p>A token that indicates whether there are more results to return in a\n         response to the <code>ListBots</code> operation. If the\n            <code>nextToken</code> field is present, you send the contents as\n         the <code>nextToken</code> parameter of a <code>ListBots</code>\n         operation request to get the next page of results.</p>"
4885                    }
4886                }
4887            }
4888        },
4889        "com.amazonaws.lexmodelsv2#ListBuiltInIntents": {
4890            "type": "operation",
4891            "input": {
4892                "target": "com.amazonaws.lexmodelsv2#ListBuiltInIntentsRequest"
4893            },
4894            "output": {
4895                "target": "com.amazonaws.lexmodelsv2#ListBuiltInIntentsResponse"
4896            },
4897            "errors": [
4898                {
4899                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
4900                },
4901                {
4902                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
4903                },
4904                {
4905                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
4906                },
4907                {
4908                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
4909                }
4910            ],
4911            "traits": {
4912                "smithy.api#documentation": "<p>Gets a list of built-in intents provided by Amazon Lex that you can use\n         in your bot. </p>\n         <p>To use a built-in intent as a the base for your own intent, include\n         the built-in intent signature in the <code>parentIntentSignature</code>\n         parameter when you call the <code>CreateIntent</code> operation. For\n         more information, see <a>CreateIntent</a>.</p>",
4913                "smithy.api#http": {
4914                    "method": "POST",
4915                    "uri": "/builtins/locales/{localeId}/intents",
4916                    "code": 200
4917                },
4918                "smithy.api#paginated": {
4919                    "inputToken": "nextToken",
4920                    "outputToken": "nextToken",
4921                    "pageSize": "maxResults"
4922                }
4923            }
4924        },
4925        "com.amazonaws.lexmodelsv2#ListBuiltInIntentsRequest": {
4926            "type": "structure",
4927            "members": {
4928                "localeId": {
4929                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
4930                    "traits": {
4931                        "smithy.api#documentation": "<p>The identifier of the language and locale of the intents to list.\n         The string must match one of the supported locales. For more\n         information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
4932                        "smithy.api#httpLabel": {},
4933                        "smithy.api#required": {}
4934                    }
4935                },
4936                "sortBy": {
4937                    "target": "com.amazonaws.lexmodelsv2#BuiltInIntentSortBy",
4938                    "traits": {
4939                        "smithy.api#documentation": "<p>Specifies sorting parameters for the list of built-in intents. You\n         can specify that the list be sorted by the built-in intent signature in\n         either ascending or descending order.</p>"
4940                    }
4941                },
4942                "maxResults": {
4943                    "target": "com.amazonaws.lexmodelsv2#BuiltInsMaxResults",
4944                    "traits": {
4945                        "smithy.api#documentation": "<p>The maximum number of built-in intents to return in each page of\n         results. If there are fewer results than the max page size, only the\n         actual number of results are returned.</p>"
4946                    }
4947                },
4948                "nextToken": {
4949                    "target": "com.amazonaws.lexmodelsv2#NextToken",
4950                    "traits": {
4951                        "smithy.api#documentation": "<p>If the response from the <code>ListBuiltInIntents</code> operation\n         contains more results than specified in the <code>maxResults</code>\n         parameter, a token is returned in the response. Use that token in the\n            <code>nextToken</code> parameter to return the next page of\n         results.</p>"
4952                    }
4953                }
4954            }
4955        },
4956        "com.amazonaws.lexmodelsv2#ListBuiltInIntentsResponse": {
4957            "type": "structure",
4958            "members": {
4959                "builtInIntentSummaries": {
4960                    "target": "com.amazonaws.lexmodelsv2#BuiltInIntentSummaryList",
4961                    "traits": {
4962                        "smithy.api#documentation": "<p>Summary information for the built-in intents that meet the filter\n         criteria specified in the request. The length of the list is specified\n         in the <code>maxResults</code> parameter of the request. If there are\n         more intents available, the <code>nextToken</code> field contains a\n         token to get the next page of results.</p>"
4963                    }
4964                },
4965                "nextToken": {
4966                    "target": "com.amazonaws.lexmodelsv2#NextToken",
4967                    "traits": {
4968                        "smithy.api#documentation": "<p>A token that indicates whether there are more results to return in a\n         response to the <code>ListBuiltInIntents</code> operation. If the\n            <code>nextToken</code> field is present, you send the contents as\n         the <code>nextToken</code> parameter of a <code>ListBotAliases</code>\n         operation request to get the next page of results.</p>"
4969                    }
4970                },
4971                "localeId": {
4972                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
4973                    "traits": {
4974                        "smithy.api#documentation": "<p>The language and locale of the intents in the list.</p>"
4975                    }
4976                }
4977            }
4978        },
4979        "com.amazonaws.lexmodelsv2#ListBuiltInSlotTypes": {
4980            "type": "operation",
4981            "input": {
4982                "target": "com.amazonaws.lexmodelsv2#ListBuiltInSlotTypesRequest"
4983            },
4984            "output": {
4985                "target": "com.amazonaws.lexmodelsv2#ListBuiltInSlotTypesResponse"
4986            },
4987            "errors": [
4988                {
4989                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
4990                },
4991                {
4992                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
4993                },
4994                {
4995                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
4996                },
4997                {
4998                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
4999                }
5000            ],
5001            "traits": {
5002                "smithy.api#documentation": "<p>Gets a list of built-in slot types that meet the specified\n         criteria.</p>",
5003                "smithy.api#http": {
5004                    "method": "POST",
5005                    "uri": "/builtins/locales/{localeId}/slottypes",
5006                    "code": 200
5007                },
5008                "smithy.api#paginated": {
5009                    "inputToken": "nextToken",
5010                    "outputToken": "nextToken",
5011                    "pageSize": "maxResults"
5012                }
5013            }
5014        },
5015        "com.amazonaws.lexmodelsv2#ListBuiltInSlotTypesRequest": {
5016            "type": "structure",
5017            "members": {
5018                "localeId": {
5019                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
5020                    "traits": {
5021                        "smithy.api#documentation": "<p>The identifier of the language and locale of the slot types to list.\n         The string must match one of the supported locales. For more\n         information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
5022                        "smithy.api#httpLabel": {},
5023                        "smithy.api#required": {}
5024                    }
5025                },
5026                "sortBy": {
5027                    "target": "com.amazonaws.lexmodelsv2#BuiltInSlotTypeSortBy",
5028                    "traits": {
5029                        "smithy.api#documentation": "<p>Determines the sort order for the response from the\n            <code>ListBuiltInSlotTypes</code> operation. You can choose to sort\n         by the slot type signature in either ascending or descending\n         order.</p>"
5030                    }
5031                },
5032                "maxResults": {
5033                    "target": "com.amazonaws.lexmodelsv2#BuiltInsMaxResults",
5034                    "traits": {
5035                        "smithy.api#documentation": "<p>The maximum number of built-in slot types to return in each page of\n         results. If there are fewer results than the max page size, only the\n         actual number of results are returned.</p>"
5036                    }
5037                },
5038                "nextToken": {
5039                    "target": "com.amazonaws.lexmodelsv2#NextToken",
5040                    "traits": {
5041                        "smithy.api#documentation": "<p>If the response from the <code>ListBuiltInSlotTypes</code> operation\n         contains more results than specified in the <code>maxResults</code>\n         parameter, a token is returned in the response. Use that token in the\n            <code>nextToken</code> parameter to return the next page of\n         results.</p>"
5042                    }
5043                }
5044            }
5045        },
5046        "com.amazonaws.lexmodelsv2#ListBuiltInSlotTypesResponse": {
5047            "type": "structure",
5048            "members": {
5049                "builtInSlotTypeSummaries": {
5050                    "target": "com.amazonaws.lexmodelsv2#BuiltInSlotTypeSummaryList",
5051                    "traits": {
5052                        "smithy.api#documentation": "<p>Summary information for the built-in slot types that meet the filter\n         criteria specified in the request. The length of the list is specified\n         in the <code>maxResults</code> parameter of the request. If there are\n         more slot types available, the <code>nextToken</code> field contains a\n         token to get the next page of results.</p>"
5053                    }
5054                },
5055                "nextToken": {
5056                    "target": "com.amazonaws.lexmodelsv2#NextToken",
5057                    "traits": {
5058                        "smithy.api#documentation": "<p>A token that indicates whether there are more results to return in a\n         response to the <code>ListBuiltInSlotTypes</code> operation. If the\n            <code>nextToken</code> field is present, you send the contents as\n         the <code>nextToken</code> parameter of a\n            <code>LIstBuiltInSlotTypes</code> operation request to get the next\n         page of results.</p>"
5059                    }
5060                },
5061                "localeId": {
5062                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
5063                    "traits": {
5064                        "smithy.api#documentation": "<p>The language and locale of the slot types in the list.</p>"
5065                    }
5066                }
5067            }
5068        },
5069        "com.amazonaws.lexmodelsv2#ListIntents": {
5070            "type": "operation",
5071            "input": {
5072                "target": "com.amazonaws.lexmodelsv2#ListIntentsRequest"
5073            },
5074            "output": {
5075                "target": "com.amazonaws.lexmodelsv2#ListIntentsResponse"
5076            },
5077            "errors": [
5078                {
5079                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
5080                },
5081                {
5082                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
5083                },
5084                {
5085                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
5086                },
5087                {
5088                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
5089                }
5090            ],
5091            "traits": {
5092                "smithy.api#documentation": "<p>Get a list of intents that meet the specified criteria.</p>",
5093                "smithy.api#http": {
5094                    "method": "POST",
5095                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents",
5096                    "code": 200
5097                },
5098                "smithy.api#paginated": {
5099                    "inputToken": "nextToken",
5100                    "outputToken": "nextToken",
5101                    "pageSize": "maxResults"
5102                }
5103            }
5104        },
5105        "com.amazonaws.lexmodelsv2#ListIntentsRequest": {
5106            "type": "structure",
5107            "members": {
5108                "botId": {
5109                    "target": "com.amazonaws.lexmodelsv2#Id",
5110                    "traits": {
5111                        "smithy.api#documentation": "<p>The unique identifier of the bot that contains the intent.</p>",
5112                        "smithy.api#httpLabel": {},
5113                        "smithy.api#required": {}
5114                    }
5115                },
5116                "botVersion": {
5117                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
5118                    "traits": {
5119                        "smithy.api#documentation": "<p>The version of the bot that contains the intent.</p>",
5120                        "smithy.api#httpLabel": {},
5121                        "smithy.api#required": {}
5122                    }
5123                },
5124                "localeId": {
5125                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
5126                    "traits": {
5127                        "smithy.api#documentation": "<p>The identifier of the language and locale of the intents to list.\n         The string must match one of the supported locales. For more\n         information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
5128                        "smithy.api#httpLabel": {},
5129                        "smithy.api#required": {}
5130                    }
5131                },
5132                "sortBy": {
5133                    "target": "com.amazonaws.lexmodelsv2#IntentSortBy",
5134                    "traits": {
5135                        "smithy.api#documentation": "<p>Determines the sort order for the response from the\n            <code>ListIntents</code> operation. You can choose to sort by the\n         intent name or last updated date in either ascending or descending\n         order.</p>"
5136                    }
5137                },
5138                "filters": {
5139                    "target": "com.amazonaws.lexmodelsv2#IntentFilters",
5140                    "traits": {
5141                        "smithy.api#documentation": "<p>Provides the specification of a filter used to limit the intents in\n         the response to only those that match the filter specification. You can\n         only specify one filter and only one string to filter on.</p>"
5142                    }
5143                },
5144                "maxResults": {
5145                    "target": "com.amazonaws.lexmodelsv2#MaxResults",
5146                    "traits": {
5147                        "smithy.api#documentation": "<p>The maximum number of intents to return in each page of results. If\n         there are fewer results than the max page size, only the actual number\n         of results are returned.</p>"
5148                    }
5149                },
5150                "nextToken": {
5151                    "target": "com.amazonaws.lexmodelsv2#NextToken",
5152                    "traits": {
5153                        "smithy.api#documentation": "<p>If the response from the <code>ListIntents</code> operation contains\n         more results than specified in the <code>maxResults</code> parameter, a\n         token is returned in the response. Use that token in the\n            <code>nextToken</code> parameter to return the next page of\n         results.</p>"
5154                    }
5155                }
5156            }
5157        },
5158        "com.amazonaws.lexmodelsv2#ListIntentsResponse": {
5159            "type": "structure",
5160            "members": {
5161                "botId": {
5162                    "target": "com.amazonaws.lexmodelsv2#Id",
5163                    "traits": {
5164                        "smithy.api#documentation": "<p>The identifier of the bot that contains the intent.</p>"
5165                    }
5166                },
5167                "botVersion": {
5168                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
5169                    "traits": {
5170                        "smithy.api#documentation": "<p>The version of the bot that contains the intent.</p>"
5171                    }
5172                },
5173                "localeId": {
5174                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
5175                    "traits": {
5176                        "smithy.api#documentation": "<p>The language and locale of the intents in the list.</p>"
5177                    }
5178                },
5179                "intentSummaries": {
5180                    "target": "com.amazonaws.lexmodelsv2#IntentSummaryList",
5181                    "traits": {
5182                        "smithy.api#documentation": "<p>Summary information for the intents that meet the filter criteria\n         specified in the request. The length of the list is specified in the\n            <code>maxResults</code> parameter of the request. If there are more\n         intents available, the <code>nextToken</code> field contains a token to\n         get the next page of results.</p>"
5183                    }
5184                },
5185                "nextToken": {
5186                    "target": "com.amazonaws.lexmodelsv2#NextToken",
5187                    "traits": {
5188                        "smithy.api#documentation": "<p>A token that indicates whether there are more results to return in a\n         response to the <code>ListIntents</code> operation. If the\n            <code>nextToken</code> field is present, you send the contents as\n         the <code>nextToken</code> parameter of a <code>ListIntents</code>\n         operation request to get the next page of results.</p>"
5189                    }
5190                }
5191            }
5192        },
5193        "com.amazonaws.lexmodelsv2#ListSlotTypes": {
5194            "type": "operation",
5195            "input": {
5196                "target": "com.amazonaws.lexmodelsv2#ListSlotTypesRequest"
5197            },
5198            "output": {
5199                "target": "com.amazonaws.lexmodelsv2#ListSlotTypesResponse"
5200            },
5201            "errors": [
5202                {
5203                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
5204                },
5205                {
5206                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
5207                },
5208                {
5209                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
5210                },
5211                {
5212                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
5213                }
5214            ],
5215            "traits": {
5216                "smithy.api#documentation": "<p>Gets a list of slot types that match the specified criteria.</p>",
5217                "smithy.api#http": {
5218                    "method": "POST",
5219                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes",
5220                    "code": 200
5221                },
5222                "smithy.api#paginated": {
5223                    "inputToken": "nextToken",
5224                    "outputToken": "nextToken",
5225                    "pageSize": "maxResults"
5226                }
5227            }
5228        },
5229        "com.amazonaws.lexmodelsv2#ListSlotTypesRequest": {
5230            "type": "structure",
5231            "members": {
5232                "botId": {
5233                    "target": "com.amazonaws.lexmodelsv2#Id",
5234                    "traits": {
5235                        "smithy.api#documentation": "<p>The unique identifier of the bot that contains the slot\n         types.</p>",
5236                        "smithy.api#httpLabel": {},
5237                        "smithy.api#required": {}
5238                    }
5239                },
5240                "botVersion": {
5241                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
5242                    "traits": {
5243                        "smithy.api#documentation": "<p>The version of the bot that contains the slot type.</p>",
5244                        "smithy.api#httpLabel": {},
5245                        "smithy.api#required": {}
5246                    }
5247                },
5248                "localeId": {
5249                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
5250                    "traits": {
5251                        "smithy.api#documentation": "<p>The identifier of the language and locale of the slot types to list.\n         The string must match one of the supported locales. For more\n         information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
5252                        "smithy.api#httpLabel": {},
5253                        "smithy.api#required": {}
5254                    }
5255                },
5256                "sortBy": {
5257                    "target": "com.amazonaws.lexmodelsv2#SlotTypeSortBy",
5258                    "traits": {
5259                        "smithy.api#documentation": "<p>Determines the sort order for the response from the\n            <code>ListSlotTypes</code> operation. You can choose to sort by the\n         slot type name or last updated date in either ascending or descending\n         order.</p>"
5260                    }
5261                },
5262                "filters": {
5263                    "target": "com.amazonaws.lexmodelsv2#SlotTypeFilters",
5264                    "traits": {
5265                        "smithy.api#documentation": "<p>Provides the specification of a filter used to limit the slot types\n         in the response to only those that match the filter specification. You\n         can only specify one filter and only one string to filter on.</p>"
5266                    }
5267                },
5268                "maxResults": {
5269                    "target": "com.amazonaws.lexmodelsv2#MaxResults",
5270                    "traits": {
5271                        "smithy.api#documentation": "<p>The maximum number of slot types to return in each page of results.\n         If there are fewer results than the max page size, only the actual\n         number of results are returned.</p>"
5272                    }
5273                },
5274                "nextToken": {
5275                    "target": "com.amazonaws.lexmodelsv2#NextToken",
5276                    "traits": {
5277                        "smithy.api#documentation": "<p>If the response from the <code>ListSlotTypes</code> operation\n         contains more results than specified in the <code>maxResults</code>\n         parameter, a token is returned in the response. Use that token in the\n            <code>nextToken</code> parameter to return the next page of\n         results.</p>"
5278                    }
5279                }
5280            }
5281        },
5282        "com.amazonaws.lexmodelsv2#ListSlotTypesResponse": {
5283            "type": "structure",
5284            "members": {
5285                "botId": {
5286                    "target": "com.amazonaws.lexmodelsv2#Id",
5287                    "traits": {
5288                        "smithy.api#documentation": "<p>The identifier of the bot that contains the slot types.</p>"
5289                    }
5290                },
5291                "botVersion": {
5292                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
5293                    "traits": {
5294                        "smithy.api#documentation": "<p>The version of the bot that contains the slot types.</p>"
5295                    }
5296                },
5297                "localeId": {
5298                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
5299                    "traits": {
5300                        "smithy.api#documentation": "<p>The language and local of the slot types in the list.</p>"
5301                    }
5302                },
5303                "slotTypeSummaries": {
5304                    "target": "com.amazonaws.lexmodelsv2#SlotTypeSummaryList",
5305                    "traits": {
5306                        "smithy.api#documentation": "<p>Summary information for the slot types that meet the filter criteria\n         specified in the request. The length of the list is specified in the\n            <code>maxResults</code> parameter of the request. If there are more\n         slot types available, the <code>nextToken</code> field contains a token\n         to get the next page of results.</p>"
5307                    }
5308                },
5309                "nextToken": {
5310                    "target": "com.amazonaws.lexmodelsv2#NextToken",
5311                    "traits": {
5312                        "smithy.api#documentation": "<p>A token that indicates whether there are more results to return in a\n         response to the <code>ListSlotTypes</code> operation. If the\n            <code>nextToken</code> field is present, you send the contents as\n         the <code>nextToken</code> parameter of a <code>ListSlotTypes</code>\n         operation request to get the next page of results.</p>"
5313                    }
5314                }
5315            }
5316        },
5317        "com.amazonaws.lexmodelsv2#ListSlots": {
5318            "type": "operation",
5319            "input": {
5320                "target": "com.amazonaws.lexmodelsv2#ListSlotsRequest"
5321            },
5322            "output": {
5323                "target": "com.amazonaws.lexmodelsv2#ListSlotsResponse"
5324            },
5325            "errors": [
5326                {
5327                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
5328                },
5329                {
5330                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
5331                },
5332                {
5333                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
5334                },
5335                {
5336                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
5337                }
5338            ],
5339            "traits": {
5340                "smithy.api#documentation": "<p>Gets a list of slots that match the specified criteria.</p>",
5341                "smithy.api#http": {
5342                    "method": "POST",
5343                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots",
5344                    "code": 200
5345                },
5346                "smithy.api#paginated": {
5347                    "inputToken": "nextToken",
5348                    "outputToken": "nextToken",
5349                    "pageSize": "maxResults"
5350                }
5351            }
5352        },
5353        "com.amazonaws.lexmodelsv2#ListSlotsRequest": {
5354            "type": "structure",
5355            "members": {
5356                "botId": {
5357                    "target": "com.amazonaws.lexmodelsv2#Id",
5358                    "traits": {
5359                        "smithy.api#documentation": "<p>The identifier of the bot that contains the slot.</p>",
5360                        "smithy.api#httpLabel": {},
5361                        "smithy.api#required": {}
5362                    }
5363                },
5364                "botVersion": {
5365                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
5366                    "traits": {
5367                        "smithy.api#documentation": "<p>The version of the bot that contains the slot.</p>",
5368                        "smithy.api#httpLabel": {},
5369                        "smithy.api#required": {}
5370                    }
5371                },
5372                "localeId": {
5373                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
5374                    "traits": {
5375                        "smithy.api#documentation": "<p>The identifier of the language and locale of the slots to list. The\n         string must match one of the supported locales. For more information,\n         see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
5376                        "smithy.api#httpLabel": {},
5377                        "smithy.api#required": {}
5378                    }
5379                },
5380                "intentId": {
5381                    "target": "com.amazonaws.lexmodelsv2#Id",
5382                    "traits": {
5383                        "smithy.api#documentation": "<p>The unique identifier of the intent that contains the slot.</p>",
5384                        "smithy.api#httpLabel": {},
5385                        "smithy.api#required": {}
5386                    }
5387                },
5388                "sortBy": {
5389                    "target": "com.amazonaws.lexmodelsv2#SlotSortBy",
5390                    "traits": {
5391                        "smithy.api#documentation": "<p>Determines the sort order for the response from the\n            <code>ListSlots</code> operation. You can choose to sort by the slot\n         name or last updated date in either ascending or descending\n         order.</p>"
5392                    }
5393                },
5394                "filters": {
5395                    "target": "com.amazonaws.lexmodelsv2#SlotFilters",
5396                    "traits": {
5397                        "smithy.api#documentation": "<p>Provides the specification of a filter used to limit the slots in\n         the response to only those that match the filter specification. You can\n         only specify one filter and only one string to filter on.</p>"
5398                    }
5399                },
5400                "maxResults": {
5401                    "target": "com.amazonaws.lexmodelsv2#MaxResults",
5402                    "traits": {
5403                        "smithy.api#documentation": "<p>The maximum number of slots to return in each page of results. If\n         there are fewer results than the max page size, only the actual number\n         of results are returned.</p>"
5404                    }
5405                },
5406                "nextToken": {
5407                    "target": "com.amazonaws.lexmodelsv2#NextToken",
5408                    "traits": {
5409                        "smithy.api#documentation": "<p>If the response from the <code>ListSlots</code> operation contains\n         more results than specified in the <code>maxResults</code> parameter, a\n         token is returned in the response. Use that token in the\n            <code>nextToken</code> parameter to return the next page of\n         results.</p>"
5410                    }
5411                }
5412            }
5413        },
5414        "com.amazonaws.lexmodelsv2#ListSlotsResponse": {
5415            "type": "structure",
5416            "members": {
5417                "botId": {
5418                    "target": "com.amazonaws.lexmodelsv2#Id",
5419                    "traits": {
5420                        "smithy.api#documentation": "<p>The identifier of the bot that contains the slots.</p>"
5421                    }
5422                },
5423                "botVersion": {
5424                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
5425                    "traits": {
5426                        "smithy.api#documentation": "<p>The version of the bot that contains the slots.</p>"
5427                    }
5428                },
5429                "localeId": {
5430                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
5431                    "traits": {
5432                        "smithy.api#documentation": "<p>The language and locale of the slots in the list.</p>"
5433                    }
5434                },
5435                "intentId": {
5436                    "target": "com.amazonaws.lexmodelsv2#Id",
5437                    "traits": {
5438                        "smithy.api#documentation": "<p>The identifier of the intent that contains the slots.</p>"
5439                    }
5440                },
5441                "slotSummaries": {
5442                    "target": "com.amazonaws.lexmodelsv2#SlotSummaryList",
5443                    "traits": {
5444                        "smithy.api#documentation": "<p>Summary information for the slots that meet the filter criteria\n         specified in the request. The length of the list is specified in the\n            <code>maxResults</code> parameter of the request. If there are more\n         slots available, the <code>nextToken</code> field contains a token to\n         get the next page of results.</p>"
5445                    }
5446                },
5447                "nextToken": {
5448                    "target": "com.amazonaws.lexmodelsv2#NextToken",
5449                    "traits": {
5450                        "smithy.api#documentation": "<p>A token that indicates whether there are more results to return in a\n         response to the <code>ListSlots</code> operation. If the\n            <code>nextToken</code> field is present, you send the contents as\n         the <code>nextToken</code> parameter of a <code>ListSlots</code>\n         operation request to get the next page of results.</p>"
5451                    }
5452                }
5453            }
5454        },
5455        "com.amazonaws.lexmodelsv2#ListTagsForResource": {
5456            "type": "operation",
5457            "input": {
5458                "target": "com.amazonaws.lexmodelsv2#ListTagsForResourceRequest"
5459            },
5460            "output": {
5461                "target": "com.amazonaws.lexmodelsv2#ListTagsForResourceResponse"
5462            },
5463            "errors": [
5464                {
5465                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
5466                },
5467                {
5468                    "target": "com.amazonaws.lexmodelsv2#ResourceNotFoundException"
5469                },
5470                {
5471                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
5472                },
5473                {
5474                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
5475                }
5476            ],
5477            "traits": {
5478                "smithy.api#documentation": "<p>Gets a list of tags associated with a resource. Only bots, bot\n         aliases, and bot channels can have tags associated with them.</p>",
5479                "smithy.api#http": {
5480                    "method": "GET",
5481                    "uri": "/tags/{resourceARN}",
5482                    "code": 200
5483                }
5484            }
5485        },
5486        "com.amazonaws.lexmodelsv2#ListTagsForResourceRequest": {
5487            "type": "structure",
5488            "members": {
5489                "resourceARN": {
5490                    "target": "com.amazonaws.lexmodelsv2#AmazonResourceName",
5491                    "traits": {
5492                        "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the resource to get a list of tags\n         for.</p>",
5493                        "smithy.api#httpLabel": {},
5494                        "smithy.api#required": {}
5495                    }
5496                }
5497            }
5498        },
5499        "com.amazonaws.lexmodelsv2#ListTagsForResourceResponse": {
5500            "type": "structure",
5501            "members": {
5502                "tags": {
5503                    "target": "com.amazonaws.lexmodelsv2#TagMap",
5504                    "traits": {
5505                        "smithy.api#documentation": "<p>The tags associated with a resource.</p>"
5506                    }
5507                }
5508            }
5509        },
5510        "com.amazonaws.lexmodelsv2#LocaleId": {
5511            "type": "string"
5512        },
5513        "com.amazonaws.lexmodelsv2#LocaleName": {
5514            "type": "string"
5515        },
5516        "com.amazonaws.lexmodelsv2#LogPrefix": {
5517            "type": "string",
5518            "traits": {
5519                "smithy.api#length": {
5520                    "min": 0,
5521                    "max": 1024
5522                }
5523            }
5524        },
5525        "com.amazonaws.lexmodelsv2#MaxResults": {
5526            "type": "integer",
5527            "traits": {
5528                "smithy.api#box": {},
5529                "smithy.api#range": {
5530                    "min": 1,
5531                    "max": 1000
5532                }
5533            }
5534        },
5535        "com.amazonaws.lexmodelsv2#Message": {
5536            "type": "structure",
5537            "members": {
5538                "plainTextMessage": {
5539                    "target": "com.amazonaws.lexmodelsv2#PlainTextMessage",
5540                    "traits": {
5541                        "smithy.api#documentation": "<p>A message in plain text format.</p>"
5542                    }
5543                },
5544                "customPayload": {
5545                    "target": "com.amazonaws.lexmodelsv2#CustomPayload",
5546                    "traits": {
5547                        "smithy.api#documentation": "<p>A message in a custom format defined by the client\n         application.</p>"
5548                    }
5549                },
5550                "ssmlMessage": {
5551                    "target": "com.amazonaws.lexmodelsv2#SSMLMessage",
5552                    "traits": {
5553                        "smithy.api#documentation": "<p>A message in Speech Synthesis Markup Language (SSML).</p>"
5554                    }
5555                },
5556                "imageResponseCard": {
5557                    "target": "com.amazonaws.lexmodelsv2#ImageResponseCard",
5558                    "traits": {
5559                        "smithy.api#documentation": "<p>A message that defines a response card that the client application\n         can show to the user.</p>"
5560                    }
5561                }
5562            },
5563            "traits": {
5564                "smithy.api#documentation": "<p>The object that provides message text and it's type.</p>"
5565            }
5566        },
5567        "com.amazonaws.lexmodelsv2#MessageGroup": {
5568            "type": "structure",
5569            "members": {
5570                "message": {
5571                    "target": "com.amazonaws.lexmodelsv2#Message",
5572                    "traits": {
5573                        "smithy.api#documentation": "<p>The primary message that Amazon Lex should send to the user.</p>",
5574                        "smithy.api#required": {}
5575                    }
5576                },
5577                "variations": {
5578                    "target": "com.amazonaws.lexmodelsv2#MessageVariationsList",
5579                    "traits": {
5580                        "smithy.api#documentation": "<p>Message variations to send to the user. When variations are defined,\n         Amazon Lex chooses the primary message or one of the variations to send to\n         the user.</p>"
5581                    }
5582                }
5583            },
5584            "traits": {
5585                "smithy.api#documentation": "<p>Provides one or more messages that Amazon Lex should send to the\n         user.</p>"
5586            }
5587        },
5588        "com.amazonaws.lexmodelsv2#MessageGroupsList": {
5589            "type": "list",
5590            "member": {
5591                "target": "com.amazonaws.lexmodelsv2#MessageGroup"
5592            },
5593            "traits": {
5594                "smithy.api#length": {
5595                    "min": 1,
5596                    "max": 5
5597                }
5598            }
5599        },
5600        "com.amazonaws.lexmodelsv2#MessageVariationsList": {
5601            "type": "list",
5602            "member": {
5603                "target": "com.amazonaws.lexmodelsv2#Message"
5604            },
5605            "traits": {
5606                "smithy.api#length": {
5607                    "min": 0,
5608                    "max": 2
5609                }
5610            }
5611        },
5612        "com.amazonaws.lexmodelsv2#Name": {
5613            "type": "string",
5614            "traits": {
5615                "smithy.api#length": {
5616                    "min": 1,
5617                    "max": 100
5618                },
5619                "smithy.api#pattern": "^([0-9a-zA-Z][_-]?)+$"
5620            }
5621        },
5622        "com.amazonaws.lexmodelsv2#NextToken": {
5623            "type": "string"
5624        },
5625        "com.amazonaws.lexmodelsv2#NumericalBotVersion": {
5626            "type": "string",
5627            "traits": {
5628                "smithy.api#length": {
5629                    "min": 1,
5630                    "max": 5
5631                },
5632                "smithy.api#pattern": "^[0-9]+$"
5633            }
5634        },
5635        "com.amazonaws.lexmodelsv2#ObfuscationSetting": {
5636            "type": "structure",
5637            "members": {
5638                "obfuscationSettingType": {
5639                    "target": "com.amazonaws.lexmodelsv2#ObfuscationSettingType",
5640                    "traits": {
5641                        "smithy.api#documentation": "<p>Value that determines whether Amazon Lex obscures slot values in\n         conversation logs. The default is to obscure the values.</p>",
5642                        "smithy.api#required": {}
5643                    }
5644                }
5645            },
5646            "traits": {
5647                "smithy.api#documentation": "<p>Determines whether Amazon Lex obscures slot values in conversation logs.\n      </p>"
5648            }
5649        },
5650        "com.amazonaws.lexmodelsv2#ObfuscationSettingType": {
5651            "type": "string",
5652            "traits": {
5653                "smithy.api#enum": [
5654                    {
5655                        "value": "None",
5656                        "name": "None"
5657                    },
5658                    {
5659                        "value": "DefaultObfuscation",
5660                        "name": "DefaultObfuscation"
5661                    }
5662                ]
5663            }
5664        },
5665        "com.amazonaws.lexmodelsv2#OutputContext": {
5666            "type": "structure",
5667            "members": {
5668                "name": {
5669                    "target": "com.amazonaws.lexmodelsv2#Name",
5670                    "traits": {
5671                        "smithy.api#documentation": "<p>The name of the output context.</p>",
5672                        "smithy.api#required": {}
5673                    }
5674                },
5675                "timeToLiveInSeconds": {
5676                    "target": "com.amazonaws.lexmodelsv2#ContextTimeToLiveInSeconds",
5677                    "traits": {
5678                        "smithy.api#documentation": "<p>The amount of time, in seconds, that the output context should\n         remain active. The time is figured from the first time the context is\n         sent to the user.</p>",
5679                        "smithy.api#required": {}
5680                    }
5681                },
5682                "turnsToLive": {
5683                    "target": "com.amazonaws.lexmodelsv2#ContextTurnsToLive",
5684                    "traits": {
5685                        "smithy.api#documentation": "<p>The number of conversation turns that the output context should\n         remain active. The number of turns is counted from the first time that\n         the context is sent to the user.</p>",
5686                        "smithy.api#required": {}
5687                    }
5688                }
5689            },
5690            "traits": {
5691                "smithy.api#documentation": "<p>Describes a session context that is activated when an intent is\n         fulfilled.</p>"
5692            }
5693        },
5694        "com.amazonaws.lexmodelsv2#OutputContextsList": {
5695            "type": "list",
5696            "member": {
5697                "target": "com.amazonaws.lexmodelsv2#OutputContext"
5698            },
5699            "traits": {
5700                "smithy.api#length": {
5701                    "min": 0,
5702                    "max": 10
5703                }
5704            }
5705        },
5706        "com.amazonaws.lexmodelsv2#PlainTextMessage": {
5707            "type": "structure",
5708            "members": {
5709                "value": {
5710                    "target": "com.amazonaws.lexmodelsv2#PlainTextMessageValue",
5711                    "traits": {
5712                        "smithy.api#documentation": "<p>The message to send to the user.</p>",
5713                        "smithy.api#required": {}
5714                    }
5715                }
5716            },
5717            "traits": {
5718                "smithy.api#documentation": "<p>Defines an ASCII text message to send to the user.</p>"
5719            }
5720        },
5721        "com.amazonaws.lexmodelsv2#PlainTextMessageValue": {
5722            "type": "string",
5723            "traits": {
5724                "smithy.api#length": {
5725                    "min": 1,
5726                    "max": 1000
5727                }
5728            }
5729        },
5730        "com.amazonaws.lexmodelsv2#PreconditionFailedException": {
5731            "type": "structure",
5732            "members": {
5733                "message": {
5734                    "target": "com.amazonaws.lexmodelsv2#ExceptionMessage"
5735                }
5736            },
5737            "traits": {
5738                "smithy.api#documentation": "<p></p>",
5739                "smithy.api#error": "client",
5740                "smithy.api#httpError": 412
5741            }
5742        },
5743        "com.amazonaws.lexmodelsv2#PriorityValue": {
5744            "type": "integer",
5745            "traits": {
5746                "smithy.api#box": {},
5747                "smithy.api#range": {
5748                    "min": 0,
5749                    "max": 25
5750                }
5751            }
5752        },
5753        "com.amazonaws.lexmodelsv2#PromptMaxRetries": {
5754            "type": "integer",
5755            "traits": {
5756                "smithy.api#box": {},
5757                "smithy.api#range": {
5758                    "min": 0,
5759                    "max": 5
5760                }
5761            }
5762        },
5763        "com.amazonaws.lexmodelsv2#PromptSpecification": {
5764            "type": "structure",
5765            "members": {
5766                "messageGroups": {
5767                    "target": "com.amazonaws.lexmodelsv2#MessageGroupsList",
5768                    "traits": {
5769                        "smithy.api#documentation": "<p>A collection of messages that Amazon Lex can send to the user. Amazon Lex\n         chooses the actual message to send at runtime.</p>",
5770                        "smithy.api#required": {}
5771                    }
5772                },
5773                "maxRetries": {
5774                    "target": "com.amazonaws.lexmodelsv2#PromptMaxRetries",
5775                    "traits": {
5776                        "smithy.api#documentation": "<p>The maximum number of times the bot tries to elicit a resonse from\n         the user using this prompt.</p>",
5777                        "smithy.api#required": {}
5778                    }
5779                },
5780                "allowInterrupt": {
5781                    "target": "com.amazonaws.lexmodelsv2#BoxedBoolean",
5782                    "traits": {
5783                        "smithy.api#documentation": "<p>Indicates whether the user can interrupt a speech prompt from the\n         bot.</p>"
5784                    }
5785                }
5786            },
5787            "traits": {
5788                "smithy.api#documentation": "<p>Specifies a list of message groups that Amazon Lex sends to a user to\n         elicit a response.</p>"
5789            }
5790        },
5791        "com.amazonaws.lexmodelsv2#QueryFilterString": {
5792            "type": "string",
5793            "traits": {
5794                "smithy.api#length": {
5795                    "min": 1,
5796                    "max": 5000
5797                }
5798            }
5799        },
5800        "com.amazonaws.lexmodelsv2#RegexPattern": {
5801            "type": "string",
5802            "traits": {
5803                "smithy.api#length": {
5804                    "min": 1,
5805                    "max": 100
5806                }
5807            }
5808        },
5809        "com.amazonaws.lexmodelsv2#ResourceCount": {
5810            "type": "integer",
5811            "traits": {
5812                "smithy.api#box": {}
5813            }
5814        },
5815        "com.amazonaws.lexmodelsv2#ResourceNotFoundException": {
5816            "type": "structure",
5817            "members": {
5818                "message": {
5819                    "target": "com.amazonaws.lexmodelsv2#ExceptionMessage"
5820                }
5821            },
5822            "traits": {
5823                "smithy.api#documentation": "<p></p>",
5824                "smithy.api#error": "client",
5825                "smithy.api#httpError": 404
5826            }
5827        },
5828        "com.amazonaws.lexmodelsv2#ResponseSpecification": {
5829            "type": "structure",
5830            "members": {
5831                "messageGroups": {
5832                    "target": "com.amazonaws.lexmodelsv2#MessageGroupsList",
5833                    "traits": {
5834                        "smithy.api#documentation": "<p>A collection of responses that Amazon Lex can send to the user. Amazon Lex\n         chooses the actual response to send at runtime.</p>",
5835                        "smithy.api#required": {}
5836                    }
5837                },
5838                "allowInterrupt": {
5839                    "target": "com.amazonaws.lexmodelsv2#BoxedBoolean",
5840                    "traits": {
5841                        "smithy.api#documentation": "<p>Indicates whether the user can interrupt a speech response from\n         Amazon Lex.</p>"
5842                    }
5843                }
5844            },
5845            "traits": {
5846                "smithy.api#documentation": "<p>Specifies a list of message groups that Amazon Lex uses to respond the\n         user input.</p>"
5847            }
5848        },
5849        "com.amazonaws.lexmodelsv2#RetryAfterSeconds": {
5850            "type": "integer"
5851        },
5852        "com.amazonaws.lexmodelsv2#RoleArn": {
5853            "type": "string",
5854            "traits": {
5855                "smithy.api#length": {
5856                    "min": 32,
5857                    "max": 2048
5858                },
5859                "smithy.api#pattern": "^arn:aws:iam::[0-9]{12}:role/.*$"
5860            }
5861        },
5862        "com.amazonaws.lexmodelsv2#S3BucketArn": {
5863            "type": "string",
5864            "traits": {
5865                "smithy.api#length": {
5866                    "min": 1,
5867                    "max": 2048
5868                },
5869                "smithy.api#pattern": "^arn:[\\w\\-]+:s3:::[a-z0-9][\\.\\-a-z0-9]{1,61}[a-z0-9]$"
5870            }
5871        },
5872        "com.amazonaws.lexmodelsv2#S3BucketLogDestination": {
5873            "type": "structure",
5874            "members": {
5875                "kmsKeyArn": {
5876                    "target": "com.amazonaws.lexmodelsv2#KmsKeyArn",
5877                    "traits": {
5878                        "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of an AWS Key Management Service\n         (KMS) key for encrypting audio log files stored in an S3 bucket.</p>"
5879                    }
5880                },
5881                "s3BucketArn": {
5882                    "target": "com.amazonaws.lexmodelsv2#S3BucketArn",
5883                    "traits": {
5884                        "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of an Amazon S3 bucket where audio\n         log files are stored.</p>",
5885                        "smithy.api#required": {}
5886                    }
5887                },
5888                "logPrefix": {
5889                    "target": "com.amazonaws.lexmodelsv2#LogPrefix",
5890                    "traits": {
5891                        "smithy.api#documentation": "<p>The S3 prefix to assign to audio log files.</p>",
5892                        "smithy.api#required": {}
5893                    }
5894                }
5895            },
5896            "traits": {
5897                "smithy.api#documentation": "<p>Specifies an Amazon S3 bucket for logging audio conversations</p>"
5898            }
5899        },
5900        "com.amazonaws.lexmodelsv2#SSMLMessage": {
5901            "type": "structure",
5902            "members": {
5903                "value": {
5904                    "target": "com.amazonaws.lexmodelsv2#SSMLMessageValue",
5905                    "traits": {
5906                        "smithy.api#documentation": "<p>The SSML text that defines the prompt.</p>",
5907                        "smithy.api#required": {}
5908                    }
5909                }
5910            },
5911            "traits": {
5912                "smithy.api#documentation": "<p>Defines a Speech Synthesis Markup Language (SSML) prompt.</p>"
5913            }
5914        },
5915        "com.amazonaws.lexmodelsv2#SSMLMessageValue": {
5916            "type": "string",
5917            "traits": {
5918                "smithy.api#length": {
5919                    "min": 1,
5920                    "max": 1000
5921                }
5922            }
5923        },
5924        "com.amazonaws.lexmodelsv2#SampleUtterance": {
5925            "type": "structure",
5926            "members": {
5927                "utterance": {
5928                    "target": "com.amazonaws.lexmodelsv2#Utterance",
5929                    "traits": {
5930                        "smithy.api#documentation": "<p>The sample utterance that Amazon Lex uses to build its machine-learning\n         model to recognize intents.</p>",
5931                        "smithy.api#required": {}
5932                    }
5933                }
5934            },
5935            "traits": {
5936                "smithy.api#documentation": "<p>A sample utterance that invokes an intent or respond to a slot\n         elicitation prompt.</p>"
5937            }
5938        },
5939        "com.amazonaws.lexmodelsv2#SampleUtterancesList": {
5940            "type": "list",
5941            "member": {
5942                "target": "com.amazonaws.lexmodelsv2#SampleUtterance"
5943            }
5944        },
5945        "com.amazonaws.lexmodelsv2#SampleValue": {
5946            "type": "structure",
5947            "members": {
5948                "value": {
5949                    "target": "com.amazonaws.lexmodelsv2#Value",
5950                    "traits": {
5951                        "smithy.api#documentation": "<p>The value that can be used for a slot type.</p>",
5952                        "smithy.api#required": {}
5953                    }
5954                }
5955            },
5956            "traits": {
5957                "smithy.api#documentation": "<p>Defines one of the values for a slot type.</p>"
5958            }
5959        },
5960        "com.amazonaws.lexmodelsv2#SentimentAnalysisSettings": {
5961            "type": "structure",
5962            "members": {
5963                "detectSentiment": {
5964                    "target": "com.amazonaws.lexmodelsv2#Boolean",
5965                    "traits": {
5966                        "smithy.api#documentation": "<p>Sets whether Amazon Lex uses Amazon Comprehend to detect the sentiment of user\n         utterances.</p>",
5967                        "smithy.api#required": {}
5968                    }
5969                }
5970            },
5971            "traits": {
5972                "smithy.api#documentation": "<p>Determines whether Amazon Lex will use Amazon Comprehend to detect the sentiment of\n         user utterances.</p>"
5973            }
5974        },
5975        "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException": {
5976            "type": "structure",
5977            "members": {
5978                "message": {
5979                    "target": "com.amazonaws.lexmodelsv2#ExceptionMessage"
5980                }
5981            },
5982            "traits": {
5983                "smithy.api#documentation": "<p></p>",
5984                "smithy.api#error": "client",
5985                "smithy.api#httpError": 402
5986            }
5987        },
5988        "com.amazonaws.lexmodelsv2#SessionTTL": {
5989            "type": "integer",
5990            "traits": {
5991                "smithy.api#box": {},
5992                "smithy.api#range": {
5993                    "min": 60,
5994                    "max": 86400
5995                }
5996            }
5997        },
5998        "com.amazonaws.lexmodelsv2#SkipResourceInUseCheck": {
5999            "type": "boolean"
6000        },
6001        "com.amazonaws.lexmodelsv2#SlotConstraint": {
6002            "type": "string",
6003            "traits": {
6004                "smithy.api#enum": [
6005                    {
6006                        "value": "Required",
6007                        "name": "Required"
6008                    },
6009                    {
6010                        "value": "Optional",
6011                        "name": "Optional"
6012                    }
6013                ]
6014            }
6015        },
6016        "com.amazonaws.lexmodelsv2#SlotDefaultValue": {
6017            "type": "structure",
6018            "members": {
6019                "defaultValue": {
6020                    "target": "com.amazonaws.lexmodelsv2#SlotDefaultValueString",
6021                    "traits": {
6022                        "smithy.api#documentation": "<p>The default value to use when a user doesn't provide a value for a\n         slot.</p>",
6023                        "smithy.api#required": {}
6024                    }
6025                }
6026            },
6027            "traits": {
6028                "smithy.api#documentation": "<p>Specifies the default value to use when a user doesn't provide a\n         value for a slot.</p>"
6029            }
6030        },
6031        "com.amazonaws.lexmodelsv2#SlotDefaultValueList": {
6032            "type": "list",
6033            "member": {
6034                "target": "com.amazonaws.lexmodelsv2#SlotDefaultValue"
6035            },
6036            "traits": {
6037                "smithy.api#length": {
6038                    "min": 0,
6039                    "max": 10
6040                }
6041            }
6042        },
6043        "com.amazonaws.lexmodelsv2#SlotDefaultValueSpecification": {
6044            "type": "structure",
6045            "members": {
6046                "defaultValueList": {
6047                    "target": "com.amazonaws.lexmodelsv2#SlotDefaultValueList",
6048                    "traits": {
6049                        "smithy.api#documentation": "<p>A list of default values. Amazon Lex chooses the default value to use in\n         the order that they are presented in the list.</p>",
6050                        "smithy.api#required": {}
6051                    }
6052                }
6053            },
6054            "traits": {
6055                "smithy.api#documentation": "<p>Defines a list of values that Amazon Lex should use as the default value\n         for a slot.</p>"
6056            }
6057        },
6058        "com.amazonaws.lexmodelsv2#SlotDefaultValueString": {
6059            "type": "string",
6060            "traits": {
6061                "smithy.api#length": {
6062                    "min": 1,
6063                    "max": 202
6064                }
6065            }
6066        },
6067        "com.amazonaws.lexmodelsv2#SlotFilter": {
6068            "type": "structure",
6069            "members": {
6070                "name": {
6071                    "target": "com.amazonaws.lexmodelsv2#SlotFilterName",
6072                    "traits": {
6073                        "smithy.api#documentation": "<p>The name of the field to use for filtering.</p>",
6074                        "smithy.api#required": {}
6075                    }
6076                },
6077                "values": {
6078                    "target": "com.amazonaws.lexmodelsv2#FilterValues",
6079                    "traits": {
6080                        "smithy.api#documentation": "<p>The value to use to filter the response.</p>",
6081                        "smithy.api#required": {}
6082                    }
6083                },
6084                "operator": {
6085                    "target": "com.amazonaws.lexmodelsv2#SlotFilterOperator",
6086                    "traits": {
6087                        "smithy.api#documentation": "<p>The operator to use for the filter. Specify <code>EQ</code> when the\n            <code>ListSlots</code> operation should return only aliases that\n         equal the specified value. Specify <code>CO</code> when the\n            <code>ListSlots</code> operation should return aliases that contain\n         the specified value.</p>",
6088                        "smithy.api#required": {}
6089                    }
6090                }
6091            },
6092            "traits": {
6093                "smithy.api#documentation": "<p>Filters the response from the <code>ListSlots</code>\n         operation.</p>"
6094            }
6095        },
6096        "com.amazonaws.lexmodelsv2#SlotFilterName": {
6097            "type": "string",
6098            "traits": {
6099                "smithy.api#enum": [
6100                    {
6101                        "value": "SlotName",
6102                        "name": "SlotName"
6103                    }
6104                ]
6105            }
6106        },
6107        "com.amazonaws.lexmodelsv2#SlotFilterOperator": {
6108            "type": "string",
6109            "traits": {
6110                "smithy.api#enum": [
6111                    {
6112                        "value": "CO",
6113                        "name": "Contains"
6114                    },
6115                    {
6116                        "value": "EQ",
6117                        "name": "Equals"
6118                    }
6119                ]
6120            }
6121        },
6122        "com.amazonaws.lexmodelsv2#SlotFilters": {
6123            "type": "list",
6124            "member": {
6125                "target": "com.amazonaws.lexmodelsv2#SlotFilter"
6126            },
6127            "traits": {
6128                "smithy.api#length": {
6129                    "min": 1,
6130                    "max": 1
6131                }
6132            }
6133        },
6134        "com.amazonaws.lexmodelsv2#SlotPrioritiesList": {
6135            "type": "list",
6136            "member": {
6137                "target": "com.amazonaws.lexmodelsv2#SlotPriority"
6138            }
6139        },
6140        "com.amazonaws.lexmodelsv2#SlotPriority": {
6141            "type": "structure",
6142            "members": {
6143                "priority": {
6144                    "target": "com.amazonaws.lexmodelsv2#PriorityValue",
6145                    "traits": {
6146                        "smithy.api#documentation": "<p>The priority that a slot should be elicited.</p>",
6147                        "smithy.api#required": {}
6148                    }
6149                },
6150                "slotId": {
6151                    "target": "com.amazonaws.lexmodelsv2#Id",
6152                    "traits": {
6153                        "smithy.api#documentation": "<p>The unique identifier of the slot.</p>",
6154                        "smithy.api#required": {}
6155                    }
6156                }
6157            },
6158            "traits": {
6159                "smithy.api#documentation": "<p>Sets the priority that Amazon Lex should use when eliciting slot values\n         from a user.</p>"
6160            }
6161        },
6162        "com.amazonaws.lexmodelsv2#SlotSortAttribute": {
6163            "type": "string",
6164            "traits": {
6165                "smithy.api#enum": [
6166                    {
6167                        "value": "SlotName",
6168                        "name": "SlotName"
6169                    },
6170                    {
6171                        "value": "LastUpdatedDateTime",
6172                        "name": "LastUpdatedDateTime"
6173                    }
6174                ]
6175            }
6176        },
6177        "com.amazonaws.lexmodelsv2#SlotSortBy": {
6178            "type": "structure",
6179            "members": {
6180                "attribute": {
6181                    "target": "com.amazonaws.lexmodelsv2#SlotSortAttribute",
6182                    "traits": {
6183                        "smithy.api#documentation": "<p>The attribute to use to sort the list.</p>",
6184                        "smithy.api#required": {}
6185                    }
6186                },
6187                "order": {
6188                    "target": "com.amazonaws.lexmodelsv2#SortOrder",
6189                    "traits": {
6190                        "smithy.api#documentation": "<p>The order to sort the list. You can choose ascending or\n         descending.</p>",
6191                        "smithy.api#required": {}
6192                    }
6193                }
6194            },
6195            "traits": {
6196                "smithy.api#documentation": "<p>Specifies attributes for sorting a list of bots.</p>"
6197            }
6198        },
6199        "com.amazonaws.lexmodelsv2#SlotSummary": {
6200            "type": "structure",
6201            "members": {
6202                "slotId": {
6203                    "target": "com.amazonaws.lexmodelsv2#Id",
6204                    "traits": {
6205                        "smithy.api#documentation": "<p>The unique identifier of the slot.</p>"
6206                    }
6207                },
6208                "slotName": {
6209                    "target": "com.amazonaws.lexmodelsv2#Name",
6210                    "traits": {
6211                        "smithy.api#documentation": "<p>The name given to the slot.</p>"
6212                    }
6213                },
6214                "description": {
6215                    "target": "com.amazonaws.lexmodelsv2#Description",
6216                    "traits": {
6217                        "smithy.api#documentation": "<p>The description of the slot.</p>"
6218                    }
6219                },
6220                "slotConstraint": {
6221                    "target": "com.amazonaws.lexmodelsv2#SlotConstraint",
6222                    "traits": {
6223                        "smithy.api#documentation": "<p>Whether the slot is required or optional. An intent is complete when\n         all required slots are filled.</p>"
6224                    }
6225                },
6226                "slotTypeId": {
6227                    "target": "com.amazonaws.lexmodelsv2#BuiltInOrCustomSlotTypeId",
6228                    "traits": {
6229                        "smithy.api#documentation": "<p>The unique identifier for the slot type that defines the values for\n         the slot.</p>"
6230                    }
6231                },
6232                "valueElicitationPromptSpecification": {
6233                    "target": "com.amazonaws.lexmodelsv2#PromptSpecification",
6234                    "traits": {
6235                        "smithy.api#documentation": "<p>Prompts that are sent to the user to elicit a value for the\n         slot.</p>"
6236                    }
6237                },
6238                "lastUpdatedDateTime": {
6239                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
6240                    "traits": {
6241                        "smithy.api#documentation": "<p>The timestamp of the last date and time that the slot was\n         updated.</p>"
6242                    }
6243                }
6244            },
6245            "traits": {
6246                "smithy.api#documentation": "<p>Summary information about a slot, a value that the bot elicits from\n         the user.</p>"
6247            }
6248        },
6249        "com.amazonaws.lexmodelsv2#SlotSummaryList": {
6250            "type": "list",
6251            "member": {
6252                "target": "com.amazonaws.lexmodelsv2#SlotSummary"
6253            }
6254        },
6255        "com.amazonaws.lexmodelsv2#SlotTypeFilter": {
6256            "type": "structure",
6257            "members": {
6258                "name": {
6259                    "target": "com.amazonaws.lexmodelsv2#SlotTypeFilterName",
6260                    "traits": {
6261                        "smithy.api#documentation": "<p>The name of the field to use for filtering.</p>",
6262                        "smithy.api#required": {}
6263                    }
6264                },
6265                "values": {
6266                    "target": "com.amazonaws.lexmodelsv2#FilterValues",
6267                    "traits": {
6268                        "smithy.api#documentation": "<p>The value to use to filter the response.</p>",
6269                        "smithy.api#required": {}
6270                    }
6271                },
6272                "operator": {
6273                    "target": "com.amazonaws.lexmodelsv2#SlotTypeFilterOperator",
6274                    "traits": {
6275                        "smithy.api#documentation": "<p>The operator to use for the filter. Specify <code>EQ</code> when the\n            <code>ListSlotTypes</code> operation should return only aliases that\n         equal the specified value. Specify <code>CO</code> when the\n            <code>ListSlotTypes</code> operation should return aliases that\n         contain the specified value.</p>",
6276                        "smithy.api#required": {}
6277                    }
6278                }
6279            },
6280            "traits": {
6281                "smithy.api#documentation": "<p>Filters the response from the <code>ListSlotTypes</code>\n         operation.</p>"
6282            }
6283        },
6284        "com.amazonaws.lexmodelsv2#SlotTypeFilterName": {
6285            "type": "string",
6286            "traits": {
6287                "smithy.api#enum": [
6288                    {
6289                        "value": "SlotTypeName",
6290                        "name": "SlotTypeName"
6291                    }
6292                ]
6293            }
6294        },
6295        "com.amazonaws.lexmodelsv2#SlotTypeFilterOperator": {
6296            "type": "string",
6297            "traits": {
6298                "smithy.api#enum": [
6299                    {
6300                        "value": "CO",
6301                        "name": "Contains"
6302                    },
6303                    {
6304                        "value": "EQ",
6305                        "name": "Equals"
6306                    }
6307                ]
6308            }
6309        },
6310        "com.amazonaws.lexmodelsv2#SlotTypeFilters": {
6311            "type": "list",
6312            "member": {
6313                "target": "com.amazonaws.lexmodelsv2#SlotTypeFilter"
6314            },
6315            "traits": {
6316                "smithy.api#length": {
6317                    "min": 1,
6318                    "max": 1
6319                }
6320            }
6321        },
6322        "com.amazonaws.lexmodelsv2#SlotTypeSignature": {
6323            "type": "string"
6324        },
6325        "com.amazonaws.lexmodelsv2#SlotTypeSortAttribute": {
6326            "type": "string",
6327            "traits": {
6328                "smithy.api#enum": [
6329                    {
6330                        "value": "SlotTypeName",
6331                        "name": "SlotTypeName"
6332                    },
6333                    {
6334                        "value": "LastUpdatedDateTime",
6335                        "name": "LastUpdatedDateTime"
6336                    }
6337                ]
6338            }
6339        },
6340        "com.amazonaws.lexmodelsv2#SlotTypeSortBy": {
6341            "type": "structure",
6342            "members": {
6343                "attribute": {
6344                    "target": "com.amazonaws.lexmodelsv2#SlotTypeSortAttribute",
6345                    "traits": {
6346                        "smithy.api#documentation": "<p>The attribute to use to sort the list of slot types.</p>",
6347                        "smithy.api#required": {}
6348                    }
6349                },
6350                "order": {
6351                    "target": "com.amazonaws.lexmodelsv2#SortOrder",
6352                    "traits": {
6353                        "smithy.api#documentation": "<p>The order to sort the list. You can say ascending or\n         descending.</p>",
6354                        "smithy.api#required": {}
6355                    }
6356                }
6357            },
6358            "traits": {
6359                "smithy.api#documentation": "<p>Specifies attributes for sorting a list of slot types.</p>"
6360            }
6361        },
6362        "com.amazonaws.lexmodelsv2#SlotTypeSummary": {
6363            "type": "structure",
6364            "members": {
6365                "slotTypeId": {
6366                    "target": "com.amazonaws.lexmodelsv2#Id",
6367                    "traits": {
6368                        "smithy.api#documentation": "<p>The unique identifier assigned to the slot type.</p>"
6369                    }
6370                },
6371                "slotTypeName": {
6372                    "target": "com.amazonaws.lexmodelsv2#Name",
6373                    "traits": {
6374                        "smithy.api#documentation": "<p>The name of the slot type.</p>"
6375                    }
6376                },
6377                "description": {
6378                    "target": "com.amazonaws.lexmodelsv2#Description",
6379                    "traits": {
6380                        "smithy.api#documentation": "<p>The description of the slot type.</p>"
6381                    }
6382                },
6383                "parentSlotTypeSignature": {
6384                    "target": "com.amazonaws.lexmodelsv2#SlotTypeSignature",
6385                    "traits": {
6386                        "smithy.api#documentation": "<p>If the slot type is derived from a built-on slot type, the name of\n         the parent slot type.</p>"
6387                    }
6388                },
6389                "lastUpdatedDateTime": {
6390                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
6391                    "traits": {
6392                        "smithy.api#documentation": "<p>A timestamp of the date and time that the slot type was last\n         updated.</p>"
6393                    }
6394                }
6395            },
6396            "traits": {
6397                "smithy.api#documentation": "<p>Provides summary information about a slot type.</p>"
6398            }
6399        },
6400        "com.amazonaws.lexmodelsv2#SlotTypeSummaryList": {
6401            "type": "list",
6402            "member": {
6403                "target": "com.amazonaws.lexmodelsv2#SlotTypeSummary"
6404            }
6405        },
6406        "com.amazonaws.lexmodelsv2#SlotTypeValue": {
6407            "type": "structure",
6408            "members": {
6409                "sampleValue": {
6410                    "target": "com.amazonaws.lexmodelsv2#SampleValue",
6411                    "traits": {
6412                        "smithy.api#documentation": "<p>The value of the slot type entry.</p>"
6413                    }
6414                },
6415                "synonyms": {
6416                    "target": "com.amazonaws.lexmodelsv2#SynonymList",
6417                    "traits": {
6418                        "smithy.api#documentation": "<p>Additional values releated to the slot type entry.</p>"
6419                    }
6420                }
6421            },
6422            "traits": {
6423                "smithy.api#documentation": "<p>Each slot type can have a set of values. Each\n            <code>SlotTypeValue</code> represents a value that the slot type can\n         take.</p>"
6424            }
6425        },
6426        "com.amazonaws.lexmodelsv2#SlotTypeValues": {
6427            "type": "list",
6428            "member": {
6429                "target": "com.amazonaws.lexmodelsv2#SlotTypeValue"
6430            },
6431            "traits": {
6432                "smithy.api#length": {
6433                    "min": 1,
6434                    "max": 10000
6435                }
6436            }
6437        },
6438        "com.amazonaws.lexmodelsv2#SlotValueElicitationSetting": {
6439            "type": "structure",
6440            "members": {
6441                "defaultValueSpecification": {
6442                    "target": "com.amazonaws.lexmodelsv2#SlotDefaultValueSpecification",
6443                    "traits": {
6444                        "smithy.api#documentation": "<p>A list of default values for a slot. Default values are used when\n         Amazon Lex hasn't determined a value for a slot. You can specify default\n         values from context variables, sesion attributes, and defined\n         values.</p>"
6445                    }
6446                },
6447                "slotConstraint": {
6448                    "target": "com.amazonaws.lexmodelsv2#SlotConstraint",
6449                    "traits": {
6450                        "smithy.api#documentation": "<p>Specifies whether the slot is required or optional.</p>",
6451                        "smithy.api#required": {}
6452                    }
6453                },
6454                "promptSpecification": {
6455                    "target": "com.amazonaws.lexmodelsv2#PromptSpecification",
6456                    "traits": {
6457                        "smithy.api#documentation": "<p>The prompt that Amazon Lex uses to elicit the slot value from the\n         user.</p>"
6458                    }
6459                },
6460                "sampleUtterances": {
6461                    "target": "com.amazonaws.lexmodelsv2#SampleUtterancesList",
6462                    "traits": {
6463                        "smithy.api#documentation": "<p>If you know a specific pattern that users might respond to an Amazon Lex\n         request for a slot value, you can provide those utterances to improve\n         accuracy. This is optional. In most cases, Amazon Lex is capable of\n         understanding user utterances.</p>"
6464                    }
6465                },
6466                "waitAndContinueSpecification": {
6467                    "target": "com.amazonaws.lexmodelsv2#WaitAndContinueSpecification"
6468                }
6469            },
6470            "traits": {
6471                "smithy.api#documentation": "<p>Settings that you can use for eliciting a slot value.</p>"
6472            }
6473        },
6474        "com.amazonaws.lexmodelsv2#SlotValueRegexFilter": {
6475            "type": "structure",
6476            "members": {
6477                "pattern": {
6478                    "target": "com.amazonaws.lexmodelsv2#RegexPattern",
6479                    "traits": {
6480                        "smithy.api#documentation": "<p>A regular expression used to validate the value of a slot.</p>\n         <p> Use a standard regular expression. Amazon Lex supports the\n         following characters in the regular expression: </p>\n         <ul>\n            <li>\n               <p>A-Z, a-z</p>\n            </li>\n            <li>\n               <p>0-9</p>\n            </li>\n            <li>\n               <p>Unicode characters (\"\\ u<Unicode>\")</p>\n            </li>\n         </ul>\n         <p> Represent Unicode characters with four digits, for example \"\\u0041\"\n         or \"\\u005A\". </p>\n         <p> The following regular expression operators are not supported: </p>\n         <ul>\n            <li>\n               <p>Infinite repeaters: *, +, or {x,} with no upper bound.</p>\n            </li>\n            <li>\n               <p>Wild card (.)</p>\n            </li>\n         </ul>",
6481                        "smithy.api#required": {}
6482                    }
6483                }
6484            },
6485            "traits": {
6486                "smithy.api#documentation": "<p>Provides a regular expression used to validate the value of a\n         slot.</p>"
6487            }
6488        },
6489        "com.amazonaws.lexmodelsv2#SlotValueResolutionStrategy": {
6490            "type": "string",
6491            "traits": {
6492                "smithy.api#enum": [
6493                    {
6494                        "value": "OriginalValue",
6495                        "name": "OriginalValue"
6496                    },
6497                    {
6498                        "value": "TopResolution",
6499                        "name": "TopResolution"
6500                    }
6501                ]
6502            }
6503        },
6504        "com.amazonaws.lexmodelsv2#SlotValueSelectionSetting": {
6505            "type": "structure",
6506            "members": {
6507                "resolutionStrategy": {
6508                    "target": "com.amazonaws.lexmodelsv2#SlotValueResolutionStrategy",
6509                    "traits": {
6510                        "smithy.api#documentation": "<p>Determines the slot resolution strategy that Amazon Lex uses to\n         return slot type values. The field can be set to one of the following\n         values:</p>\n\n         <ul>\n            <li>\n               <p>OriginalValue - Returns the value entered by the user, if the\n               user value is similar to the slot value.</p>\n            </li>\n            <li>\n               <p>TopResolution - If there is a resolution list for the slot,\n               return the first value in the resolution list as the slot type\n               value. If there is no resolution list, null is returned.</p>\n            </li>\n         </ul>\n\n         <p>If you don't specify the valueSelectionStrategy, the default is\n         OriginalValue. </p>",
6511                        "smithy.api#required": {}
6512                    }
6513                },
6514                "regexFilter": {
6515                    "target": "com.amazonaws.lexmodelsv2#SlotValueRegexFilter",
6516                    "traits": {
6517                        "smithy.api#documentation": "<p>A regular expression used to validate the value of a slot.</p>"
6518                    }
6519                }
6520            },
6521            "traits": {
6522                "smithy.api#documentation": "<p>Contains settings used by Amazon Lex to select a slot value.</p>"
6523            }
6524        },
6525        "com.amazonaws.lexmodelsv2#SortOrder": {
6526            "type": "string",
6527            "traits": {
6528                "smithy.api#enum": [
6529                    {
6530                        "value": "Ascending",
6531                        "name": "Ascending"
6532                    },
6533                    {
6534                        "value": "Descending",
6535                        "name": "Descending"
6536                    }
6537                ]
6538            }
6539        },
6540        "com.amazonaws.lexmodelsv2#StillWaitingResponseFrequency": {
6541            "type": "integer",
6542            "traits": {
6543                "smithy.api#box": {},
6544                "smithy.api#range": {
6545                    "min": 1,
6546                    "max": 300
6547                }
6548            }
6549        },
6550        "com.amazonaws.lexmodelsv2#StillWaitingResponseSpecification": {
6551            "type": "structure",
6552            "members": {
6553                "messageGroups": {
6554                    "target": "com.amazonaws.lexmodelsv2#MessageGroupsList",
6555                    "traits": {
6556                        "smithy.api#documentation": "<p>One or more message groups, each containing one or more messages,\n         that define the prompts that Amazon Lex sends to the user.</p>",
6557                        "smithy.api#required": {}
6558                    }
6559                },
6560                "frequencyInSeconds": {
6561                    "target": "com.amazonaws.lexmodelsv2#StillWaitingResponseFrequency",
6562                    "traits": {
6563                        "smithy.api#documentation": "<p>How often a message should be sent to the user. Minimum of 1 second,\n         maximum of 5 minutes.</p>",
6564                        "smithy.api#required": {}
6565                    }
6566                },
6567                "timeoutInSeconds": {
6568                    "target": "com.amazonaws.lexmodelsv2#StillWaitingResponseTimeout",
6569                    "traits": {
6570                        "smithy.api#documentation": "<p>If Amazon Lex waits longer than this length of time for a response, it\n         will stop sending messages.</p>",
6571                        "smithy.api#required": {}
6572                    }
6573                },
6574                "allowInterrupt": {
6575                    "target": "com.amazonaws.lexmodelsv2#BoxedBoolean",
6576                    "traits": {
6577                        "smithy.api#documentation": "<p>Indicates that the user can interrupt the response by speaking while\n         the message is being played.</p>"
6578                    }
6579                }
6580            },
6581            "traits": {
6582                "smithy.api#documentation": "<p>Defines the messages that Amazon Lex sends to a user to remind them that\n         the bot is waiting for a response.</p>"
6583            }
6584        },
6585        "com.amazonaws.lexmodelsv2#StillWaitingResponseTimeout": {
6586            "type": "integer",
6587            "traits": {
6588                "smithy.api#box": {},
6589                "smithy.api#range": {
6590                    "min": 1,
6591                    "max": 900
6592                }
6593            }
6594        },
6595        "com.amazonaws.lexmodelsv2#SynonymList": {
6596            "type": "list",
6597            "member": {
6598                "target": "com.amazonaws.lexmodelsv2#SampleValue"
6599            },
6600            "traits": {
6601                "smithy.api#length": {
6602                    "min": 1,
6603                    "max": 10000
6604                }
6605            }
6606        },
6607        "com.amazonaws.lexmodelsv2#TagKey": {
6608            "type": "string",
6609            "traits": {
6610                "smithy.api#length": {
6611                    "min": 1,
6612                    "max": 128
6613                }
6614            }
6615        },
6616        "com.amazonaws.lexmodelsv2#TagKeyList": {
6617            "type": "list",
6618            "member": {
6619                "target": "com.amazonaws.lexmodelsv2#TagKey"
6620            },
6621            "traits": {
6622                "smithy.api#length": {
6623                    "min": 0,
6624                    "max": 200
6625                }
6626            }
6627        },
6628        "com.amazonaws.lexmodelsv2#TagMap": {
6629            "type": "map",
6630            "key": {
6631                "target": "com.amazonaws.lexmodelsv2#TagKey"
6632            },
6633            "value": {
6634                "target": "com.amazonaws.lexmodelsv2#TagValue"
6635            },
6636            "traits": {
6637                "smithy.api#length": {
6638                    "min": 0,
6639                    "max": 200
6640                }
6641            }
6642        },
6643        "com.amazonaws.lexmodelsv2#TagResource": {
6644            "type": "operation",
6645            "input": {
6646                "target": "com.amazonaws.lexmodelsv2#TagResourceRequest"
6647            },
6648            "output": {
6649                "target": "com.amazonaws.lexmodelsv2#TagResourceResponse"
6650            },
6651            "errors": [
6652                {
6653                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
6654                },
6655                {
6656                    "target": "com.amazonaws.lexmodelsv2#ResourceNotFoundException"
6657                },
6658                {
6659                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
6660                },
6661                {
6662                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
6663                }
6664            ],
6665            "traits": {
6666                "smithy.api#documentation": "<p>Adds the specified tags to the specified resource. If a tag key\n         already exists, the existing value is replaced with the new\n         value.</p>",
6667                "smithy.api#http": {
6668                    "method": "POST",
6669                    "uri": "/tags/{resourceARN}",
6670                    "code": 200
6671                }
6672            }
6673        },
6674        "com.amazonaws.lexmodelsv2#TagResourceRequest": {
6675            "type": "structure",
6676            "members": {
6677                "resourceARN": {
6678                    "target": "com.amazonaws.lexmodelsv2#AmazonResourceName",
6679                    "traits": {
6680                        "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the bot, bot alias, or bot channel\n         to tag.</p>",
6681                        "smithy.api#httpLabel": {},
6682                        "smithy.api#required": {}
6683                    }
6684                },
6685                "tags": {
6686                    "target": "com.amazonaws.lexmodelsv2#TagMap",
6687                    "traits": {
6688                        "smithy.api#documentation": "<p>A list of tag keys to add to the resource. If a tag key already\n         exists, the existing value is replaced with the new value.</p>",
6689                        "smithy.api#required": {}
6690                    }
6691                }
6692            }
6693        },
6694        "com.amazonaws.lexmodelsv2#TagResourceResponse": {
6695            "type": "structure",
6696            "members": {}
6697        },
6698        "com.amazonaws.lexmodelsv2#TagValue": {
6699            "type": "string",
6700            "traits": {
6701                "smithy.api#length": {
6702                    "min": 0,
6703                    "max": 256
6704                }
6705            }
6706        },
6707        "com.amazonaws.lexmodelsv2#TextLogDestination": {
6708            "type": "structure",
6709            "members": {
6710                "cloudWatch": {
6711                    "target": "com.amazonaws.lexmodelsv2#CloudWatchLogGroupLogDestination",
6712                    "traits": {
6713                        "smithy.api#documentation": "<p>Defines the Amazon CloudWatch Logs log group where text and metadata logs are\n         delivered.</p>",
6714                        "smithy.api#required": {}
6715                    }
6716                }
6717            },
6718            "traits": {
6719                "smithy.api#documentation": "<p>Defines the Amazon CloudWatch Logs destination log group for\n         conversation text logs.</p>"
6720            }
6721        },
6722        "com.amazonaws.lexmodelsv2#TextLogSetting": {
6723            "type": "structure",
6724            "members": {
6725                "enabled": {
6726                    "target": "com.amazonaws.lexmodelsv2#Boolean",
6727                    "traits": {
6728                        "smithy.api#documentation": "<p>Determines whether conversation logs should be stored for an\n         alias.</p>",
6729                        "smithy.api#required": {}
6730                    }
6731                },
6732                "destination": {
6733                    "target": "com.amazonaws.lexmodelsv2#TextLogDestination",
6734                    "traits": {
6735                        "smithy.api#required": {}
6736                    }
6737                }
6738            },
6739            "traits": {
6740                "smithy.api#documentation": "<p>Defines settings to enable text conversation logs.</p>"
6741            }
6742        },
6743        "com.amazonaws.lexmodelsv2#TextLogSettingsList": {
6744            "type": "list",
6745            "member": {
6746                "target": "com.amazonaws.lexmodelsv2#TextLogSetting"
6747            },
6748            "traits": {
6749                "smithy.api#length": {
6750                    "min": 1,
6751                    "max": 1
6752                }
6753            }
6754        },
6755        "com.amazonaws.lexmodelsv2#ThrottlingException": {
6756            "type": "structure",
6757            "members": {
6758                "retryAfterSeconds": {
6759                    "target": "com.amazonaws.lexmodelsv2#RetryAfterSeconds",
6760                    "traits": {
6761                        "smithy.api#httpHeader": "Retry-After"
6762                    }
6763                },
6764                "message": {
6765                    "target": "com.amazonaws.lexmodelsv2#ExceptionMessage"
6766                }
6767            },
6768            "traits": {
6769                "smithy.api#documentation": "<p></p>",
6770                "smithy.api#error": "client",
6771                "smithy.api#httpError": 429
6772            }
6773        },
6774        "com.amazonaws.lexmodelsv2#Timestamp": {
6775            "type": "timestamp"
6776        },
6777        "com.amazonaws.lexmodelsv2#UntagResource": {
6778            "type": "operation",
6779            "input": {
6780                "target": "com.amazonaws.lexmodelsv2#UntagResourceRequest"
6781            },
6782            "output": {
6783                "target": "com.amazonaws.lexmodelsv2#UntagResourceResponse"
6784            },
6785            "errors": [
6786                {
6787                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
6788                },
6789                {
6790                    "target": "com.amazonaws.lexmodelsv2#ResourceNotFoundException"
6791                },
6792                {
6793                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
6794                },
6795                {
6796                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
6797                }
6798            ],
6799            "traits": {
6800                "smithy.api#documentation": "<p>Removes tags from a bot, bot alias, or bot channel.</p>",
6801                "smithy.api#http": {
6802                    "method": "DELETE",
6803                    "uri": "/tags/{resourceARN}",
6804                    "code": 200
6805                }
6806            }
6807        },
6808        "com.amazonaws.lexmodelsv2#UntagResourceRequest": {
6809            "type": "structure",
6810            "members": {
6811                "resourceARN": {
6812                    "target": "com.amazonaws.lexmodelsv2#AmazonResourceName",
6813                    "traits": {
6814                        "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the resource to remove the tags\n         from.</p>",
6815                        "smithy.api#httpLabel": {},
6816                        "smithy.api#required": {}
6817                    }
6818                },
6819                "tagKeys": {
6820                    "target": "com.amazonaws.lexmodelsv2#TagKeyList",
6821                    "traits": {
6822                        "smithy.api#documentation": "<p>A list of tag keys to remove from the resource. If a tag key does\n         not exist on the resource, it is ignored.</p>",
6823                        "smithy.api#httpQuery": "tagKeys",
6824                        "smithy.api#required": {}
6825                    }
6826                }
6827            }
6828        },
6829        "com.amazonaws.lexmodelsv2#UntagResourceResponse": {
6830            "type": "structure",
6831            "members": {}
6832        },
6833        "com.amazonaws.lexmodelsv2#UpdateBot": {
6834            "type": "operation",
6835            "input": {
6836                "target": "com.amazonaws.lexmodelsv2#UpdateBotRequest"
6837            },
6838            "output": {
6839                "target": "com.amazonaws.lexmodelsv2#UpdateBotResponse"
6840            },
6841            "errors": [
6842                {
6843                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
6844                },
6845                {
6846                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
6847                },
6848                {
6849                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
6850                },
6851                {
6852                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
6853                },
6854                {
6855                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
6856                },
6857                {
6858                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
6859                }
6860            ],
6861            "traits": {
6862                "smithy.api#documentation": "<p>Updates the configuration of an existing bot. </p>",
6863                "smithy.api#http": {
6864                    "method": "PUT",
6865                    "uri": "/bots/{botId}",
6866                    "code": 202
6867                }
6868            }
6869        },
6870        "com.amazonaws.lexmodelsv2#UpdateBotAlias": {
6871            "type": "operation",
6872            "input": {
6873                "target": "com.amazonaws.lexmodelsv2#UpdateBotAliasRequest"
6874            },
6875            "output": {
6876                "target": "com.amazonaws.lexmodelsv2#UpdateBotAliasResponse"
6877            },
6878            "errors": [
6879                {
6880                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
6881                },
6882                {
6883                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
6884                },
6885                {
6886                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
6887                },
6888                {
6889                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
6890                },
6891                {
6892                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
6893                },
6894                {
6895                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
6896                }
6897            ],
6898            "traits": {
6899                "smithy.api#documentation": "<p>Updates the configuration of an existing bot alias.</p>",
6900                "smithy.api#http": {
6901                    "method": "PUT",
6902                    "uri": "/bots/{botId}/botaliases/{botAliasId}",
6903                    "code": 202
6904                }
6905            }
6906        },
6907        "com.amazonaws.lexmodelsv2#UpdateBotAliasRequest": {
6908            "type": "structure",
6909            "members": {
6910                "botAliasId": {
6911                    "target": "com.amazonaws.lexmodelsv2#BotAliasId",
6912                    "traits": {
6913                        "smithy.api#documentation": "<p>The unique identifier of the bot alias.</p>",
6914                        "smithy.api#httpLabel": {},
6915                        "smithy.api#required": {}
6916                    }
6917                },
6918                "botAliasName": {
6919                    "target": "com.amazonaws.lexmodelsv2#Name",
6920                    "traits": {
6921                        "smithy.api#documentation": "<p>The new name to assign to the bot alias.</p>",
6922                        "smithy.api#required": {}
6923                    }
6924                },
6925                "description": {
6926                    "target": "com.amazonaws.lexmodelsv2#Description",
6927                    "traits": {
6928                        "smithy.api#documentation": "<p>The new description to assign to the bot alias.</p>"
6929                    }
6930                },
6931                "botVersion": {
6932                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
6933                    "traits": {
6934                        "smithy.api#documentation": "<p>The new bot version to assign to the bot alias.</p>"
6935                    }
6936                },
6937                "botAliasLocaleSettings": {
6938                    "target": "com.amazonaws.lexmodelsv2#BotAliasLocaleSettingsMap",
6939                    "traits": {
6940                        "smithy.api#documentation": "<p>The new Lambda functions to use in each locale for the bot\n         alias.</p>"
6941                    }
6942                },
6943                "conversationLogSettings": {
6944                    "target": "com.amazonaws.lexmodelsv2#ConversationLogSettings",
6945                    "traits": {
6946                        "smithy.api#documentation": "<p>The new settings for storing conversation logs in Amazon CloudWatch Logs and\n         Amazon S3 buckets.</p>"
6947                    }
6948                },
6949                "sentimentAnalysisSettings": {
6950                    "target": "com.amazonaws.lexmodelsv2#SentimentAnalysisSettings"
6951                },
6952                "botId": {
6953                    "target": "com.amazonaws.lexmodelsv2#Id",
6954                    "traits": {
6955                        "smithy.api#documentation": "<p>The identifier of the bot with the updated alias.</p>",
6956                        "smithy.api#httpLabel": {},
6957                        "smithy.api#required": {}
6958                    }
6959                }
6960            }
6961        },
6962        "com.amazonaws.lexmodelsv2#UpdateBotAliasResponse": {
6963            "type": "structure",
6964            "members": {
6965                "botAliasId": {
6966                    "target": "com.amazonaws.lexmodelsv2#BotAliasId",
6967                    "traits": {
6968                        "smithy.api#documentation": "<p>The identifier of the updated bot alias.</p>"
6969                    }
6970                },
6971                "botAliasName": {
6972                    "target": "com.amazonaws.lexmodelsv2#Name",
6973                    "traits": {
6974                        "smithy.api#documentation": "<p>The updated name of the bot alias.</p>"
6975                    }
6976                },
6977                "description": {
6978                    "target": "com.amazonaws.lexmodelsv2#Description",
6979                    "traits": {
6980                        "smithy.api#documentation": "<p>The updated description of the bot alias.</p>"
6981                    }
6982                },
6983                "botVersion": {
6984                    "target": "com.amazonaws.lexmodelsv2#BotVersion",
6985                    "traits": {
6986                        "smithy.api#documentation": "<p>The updated version of the bot that the alias points to.</p>"
6987                    }
6988                },
6989                "botAliasLocaleSettings": {
6990                    "target": "com.amazonaws.lexmodelsv2#BotAliasLocaleSettingsMap",
6991                    "traits": {
6992                        "smithy.api#documentation": "<p>The updated Lambda functions to use in each locale for the bot\n         alias.</p>"
6993                    }
6994                },
6995                "conversationLogSettings": {
6996                    "target": "com.amazonaws.lexmodelsv2#ConversationLogSettings",
6997                    "traits": {
6998                        "smithy.api#documentation": "<p>The updated settings for storing conversation logs in Amazon CloudWatch Logs and\n         Amazon S3 buckets.</p>"
6999                    }
7000                },
7001                "sentimentAnalysisSettings": {
7002                    "target": "com.amazonaws.lexmodelsv2#SentimentAnalysisSettings"
7003                },
7004                "botAliasStatus": {
7005                    "target": "com.amazonaws.lexmodelsv2#BotAliasStatus",
7006                    "traits": {
7007                        "smithy.api#documentation": "<p>The current status of the bot alias. When the status is\n            <code>Available</code> the alias is ready for use.</p>"
7008                    }
7009                },
7010                "botId": {
7011                    "target": "com.amazonaws.lexmodelsv2#Id",
7012                    "traits": {
7013                        "smithy.api#documentation": "<p>The identifier of the bot with the updated alias.</p>"
7014                    }
7015                },
7016                "creationDateTime": {
7017                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
7018                    "traits": {
7019                        "smithy.api#documentation": "<p>A timestamp of the date and time that the bot was created.</p>"
7020                    }
7021                },
7022                "lastUpdatedDateTime": {
7023                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
7024                    "traits": {
7025                        "smithy.api#documentation": "<p>A timestamp of the date and time that the bot was last\n         updated.</p>"
7026                    }
7027                }
7028            }
7029        },
7030        "com.amazonaws.lexmodelsv2#UpdateBotLocale": {
7031            "type": "operation",
7032            "input": {
7033                "target": "com.amazonaws.lexmodelsv2#UpdateBotLocaleRequest"
7034            },
7035            "output": {
7036                "target": "com.amazonaws.lexmodelsv2#UpdateBotLocaleResponse"
7037            },
7038            "errors": [
7039                {
7040                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
7041                },
7042                {
7043                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
7044                },
7045                {
7046                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
7047                },
7048                {
7049                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
7050                },
7051                {
7052                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
7053                },
7054                {
7055                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
7056                }
7057            ],
7058            "traits": {
7059                "smithy.api#documentation": "<p>Updates the settings that a bot has for a specific locale.</p>",
7060                "smithy.api#http": {
7061                    "method": "PUT",
7062                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}",
7063                    "code": 202
7064                }
7065            }
7066        },
7067        "com.amazonaws.lexmodelsv2#UpdateBotLocaleRequest": {
7068            "type": "structure",
7069            "members": {
7070                "botId": {
7071                    "target": "com.amazonaws.lexmodelsv2#Id",
7072                    "traits": {
7073                        "smithy.api#documentation": "<p>The unique identifier of the bot that contains the locale.</p>",
7074                        "smithy.api#httpLabel": {},
7075                        "smithy.api#required": {}
7076                    }
7077                },
7078                "botVersion": {
7079                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
7080                    "traits": {
7081                        "smithy.api#documentation": "<p>The version of the bot that contains the locale to be updated. The\n         version can only be the <code>DRAFT</code> version.</p>",
7082                        "smithy.api#httpLabel": {},
7083                        "smithy.api#required": {}
7084                    }
7085                },
7086                "localeId": {
7087                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
7088                    "traits": {
7089                        "smithy.api#documentation": "<p>The identifier of the language and locale to update. The string must\n         match one of the supported locales. For more information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
7090                        "smithy.api#httpLabel": {},
7091                        "smithy.api#required": {}
7092                    }
7093                },
7094                "description": {
7095                    "target": "com.amazonaws.lexmodelsv2#Description",
7096                    "traits": {
7097                        "smithy.api#documentation": "<p>The new description of the locale.</p>"
7098                    }
7099                },
7100                "nluIntentConfidenceThreshold": {
7101                    "target": "com.amazonaws.lexmodelsv2#ConfidenceThreshold",
7102                    "traits": {
7103                        "smithy.api#documentation": "<p>The new confidence threshold where Amazon Lex inserts the\n            <code>AMAZON.FallbackIntent</code> and\n            <code>AMAZON.KendraSearchIntent</code> intents in the list of\n         possible intents for an utterance.</p>",
7104                        "smithy.api#required": {}
7105                    }
7106                },
7107                "voiceSettings": {
7108                    "target": "com.amazonaws.lexmodelsv2#VoiceSettings",
7109                    "traits": {
7110                        "smithy.api#documentation": "<p>The new Amazon Polly voice Amazon Lex should use for voice interaction with the\n         user.</p>"
7111                    }
7112                }
7113            }
7114        },
7115        "com.amazonaws.lexmodelsv2#UpdateBotLocaleResponse": {
7116            "type": "structure",
7117            "members": {
7118                "botId": {
7119                    "target": "com.amazonaws.lexmodelsv2#Id",
7120                    "traits": {
7121                        "smithy.api#documentation": "<p>The identifier of the bot that contains the updated locale.</p>"
7122                    }
7123                },
7124                "botVersion": {
7125                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
7126                    "traits": {
7127                        "smithy.api#documentation": "<p>The version of the bot that contains the updated locale.</p>"
7128                    }
7129                },
7130                "localeId": {
7131                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
7132                    "traits": {
7133                        "smithy.api#documentation": "<p>The language and locale of the updated bot locale.</p>"
7134                    }
7135                },
7136                "localeName": {
7137                    "target": "com.amazonaws.lexmodelsv2#LocaleName",
7138                    "traits": {
7139                        "smithy.api#documentation": "<p>The updated locale name for the locale.</p>"
7140                    }
7141                },
7142                "description": {
7143                    "target": "com.amazonaws.lexmodelsv2#Description",
7144                    "traits": {
7145                        "smithy.api#documentation": "<p>The updated description of the locale.</p>"
7146                    }
7147                },
7148                "nluIntentConfidenceThreshold": {
7149                    "target": "com.amazonaws.lexmodelsv2#ConfidenceThreshold",
7150                    "traits": {
7151                        "smithy.api#documentation": "<p>The updated confidence threshold for inserting the\n            <code>AMAZON.FallbackIntent</code> and\n            <code>AMAZON.KendraSearchIntent</code> intents in the list of\n         possible intents for an utterance.</p>"
7152                    }
7153                },
7154                "voiceSettings": {
7155                    "target": "com.amazonaws.lexmodelsv2#VoiceSettings",
7156                    "traits": {
7157                        "smithy.api#documentation": "<p>The updated Amazon Polly voice to use for voice interaction with the\n         user.</p>"
7158                    }
7159                },
7160                "botLocaleStatus": {
7161                    "target": "com.amazonaws.lexmodelsv2#BotLocaleStatus",
7162                    "traits": {
7163                        "smithy.api#documentation": "<p>The current status of the locale. When the bot status is\n            <code>Built</code> the locale is ready for use.</p>"
7164                    }
7165                },
7166                "failureReasons": {
7167                    "target": "com.amazonaws.lexmodelsv2#FailureReasons",
7168                    "traits": {
7169                        "smithy.api#documentation": "<p>If the <code>botLocaleStatus</code> is <code>Failed</code>, the\n            <code>failureReasons</code> field lists the errors that occurred\n         while building the bot.</p>"
7170                    }
7171                },
7172                "creationDateTime": {
7173                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
7174                    "traits": {
7175                        "smithy.api#documentation": "<p>A timestamp of the date and time that the locale was created.</p>"
7176                    }
7177                },
7178                "lastUpdatedDateTime": {
7179                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
7180                    "traits": {
7181                        "smithy.api#documentation": "<p>A timestamp of the date and time that the locale was last\n         updated.</p>"
7182                    }
7183                }
7184            }
7185        },
7186        "com.amazonaws.lexmodelsv2#UpdateBotRequest": {
7187            "type": "structure",
7188            "members": {
7189                "botId": {
7190                    "target": "com.amazonaws.lexmodelsv2#Id",
7191                    "traits": {
7192                        "smithy.api#documentation": "<p>The unique identifier of the bot to update. This identifier is\n         returned by the <a>CreateBot</a> operation.</p>",
7193                        "smithy.api#httpLabel": {},
7194                        "smithy.api#required": {}
7195                    }
7196                },
7197                "botName": {
7198                    "target": "com.amazonaws.lexmodelsv2#Name",
7199                    "traits": {
7200                        "smithy.api#documentation": "<p>The new name of the bot. The name must be unique in the account that\n         creates the bot.</p>",
7201                        "smithy.api#required": {}
7202                    }
7203                },
7204                "description": {
7205                    "target": "com.amazonaws.lexmodelsv2#Description",
7206                    "traits": {
7207                        "smithy.api#documentation": "<p>A description of the bot.</p>"
7208                    }
7209                },
7210                "roleArn": {
7211                    "target": "com.amazonaws.lexmodelsv2#RoleArn",
7212                    "traits": {
7213                        "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of an IAM role that has permissions\n         to access the bot.</p>",
7214                        "smithy.api#required": {}
7215                    }
7216                },
7217                "dataPrivacy": {
7218                    "target": "com.amazonaws.lexmodelsv2#DataPrivacy",
7219                    "traits": {
7220                        "smithy.api#documentation": "<p>Provides information on additional privacy protections Amazon Lex should\n         use with the bot's data.</p>",
7221                        "smithy.api#required": {}
7222                    }
7223                },
7224                "idleSessionTTLInSeconds": {
7225                    "target": "com.amazonaws.lexmodelsv2#SessionTTL",
7226                    "traits": {
7227                        "smithy.api#documentation": "<p>The time, in seconds, that Amazon Lex should keep information about a\n         user's conversation with the bot.</p>\n         <p>A user interaction remains active for the amount of time specified.\n         If no conversation occurs during this time, the session expires and\n         Amazon Lex deletes any data provided before the timeout.</p>\n         <p>You can specify between 60 (1 minute) and 86,400 (24 hours)\n         seconds.</p>",
7228                        "smithy.api#required": {}
7229                    }
7230                }
7231            }
7232        },
7233        "com.amazonaws.lexmodelsv2#UpdateBotResponse": {
7234            "type": "structure",
7235            "members": {
7236                "botId": {
7237                    "target": "com.amazonaws.lexmodelsv2#Id",
7238                    "traits": {
7239                        "smithy.api#documentation": "<p>The unique identifier of the bot that was updated.</p>"
7240                    }
7241                },
7242                "botName": {
7243                    "target": "com.amazonaws.lexmodelsv2#Name",
7244                    "traits": {
7245                        "smithy.api#documentation": "<p>The name of the bot after the update.</p>"
7246                    }
7247                },
7248                "description": {
7249                    "target": "com.amazonaws.lexmodelsv2#Description",
7250                    "traits": {
7251                        "smithy.api#documentation": "<p>The description of the bot after the update.</p>"
7252                    }
7253                },
7254                "roleArn": {
7255                    "target": "com.amazonaws.lexmodelsv2#RoleArn",
7256                    "traits": {
7257                        "smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the IAM role used by the bot after\n         the update.</p>"
7258                    }
7259                },
7260                "dataPrivacy": {
7261                    "target": "com.amazonaws.lexmodelsv2#DataPrivacy",
7262                    "traits": {
7263                        "smithy.api#documentation": "<p>The data privacy settings for the bot after the update.</p>"
7264                    }
7265                },
7266                "idleSessionTTLInSeconds": {
7267                    "target": "com.amazonaws.lexmodelsv2#SessionTTL",
7268                    "traits": {
7269                        "smithy.api#documentation": "<p>The session timeout, in seconds, for the bot after the\n         update.</p>"
7270                    }
7271                },
7272                "botStatus": {
7273                    "target": "com.amazonaws.lexmodelsv2#BotStatus",
7274                    "traits": {
7275                        "smithy.api#documentation": "<p>Shows the current status of the bot. The bot is first in the\n            <code>Creating</code> status. Once the bot is read for use, it\n         changes to the <code>Available</code> status. After the bot is created,\n         you can use the <code>DRAFT</code> version of the bot.</p>"
7276                    }
7277                },
7278                "creationDateTime": {
7279                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
7280                    "traits": {
7281                        "smithy.api#documentation": "<p>A timestamp of the date and time that the bot was created.</p>"
7282                    }
7283                },
7284                "lastUpdatedDateTime": {
7285                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
7286                    "traits": {
7287                        "smithy.api#documentation": "<p>A timestamp of the date and time that the bot was last\n         updated.</p>"
7288                    }
7289                }
7290            }
7291        },
7292        "com.amazonaws.lexmodelsv2#UpdateIntent": {
7293            "type": "operation",
7294            "input": {
7295                "target": "com.amazonaws.lexmodelsv2#UpdateIntentRequest"
7296            },
7297            "output": {
7298                "target": "com.amazonaws.lexmodelsv2#UpdateIntentResponse"
7299            },
7300            "errors": [
7301                {
7302                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
7303                },
7304                {
7305                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
7306                },
7307                {
7308                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
7309                },
7310                {
7311                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
7312                },
7313                {
7314                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
7315                },
7316                {
7317                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
7318                }
7319            ],
7320            "traits": {
7321                "smithy.api#documentation": "<p>Updates the settings for an intent.</p>",
7322                "smithy.api#http": {
7323                    "method": "PUT",
7324                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}",
7325                    "code": 200
7326                }
7327            }
7328        },
7329        "com.amazonaws.lexmodelsv2#UpdateIntentRequest": {
7330            "type": "structure",
7331            "members": {
7332                "intentId": {
7333                    "target": "com.amazonaws.lexmodelsv2#Id",
7334                    "traits": {
7335                        "smithy.api#documentation": "<p>The unique identifier of the intent to update.</p>",
7336                        "smithy.api#httpLabel": {},
7337                        "smithy.api#required": {}
7338                    }
7339                },
7340                "intentName": {
7341                    "target": "com.amazonaws.lexmodelsv2#Name",
7342                    "traits": {
7343                        "smithy.api#documentation": "<p>The new name for the intent.</p>",
7344                        "smithy.api#required": {}
7345                    }
7346                },
7347                "description": {
7348                    "target": "com.amazonaws.lexmodelsv2#Description",
7349                    "traits": {
7350                        "smithy.api#documentation": "<p>The new description of the intent.</p>"
7351                    }
7352                },
7353                "parentIntentSignature": {
7354                    "target": "com.amazonaws.lexmodelsv2#IntentSignature",
7355                    "traits": {
7356                        "smithy.api#documentation": "<p>The signature of the new built-in intent to use as the parent of\n         this intent.</p>"
7357                    }
7358                },
7359                "sampleUtterances": {
7360                    "target": "com.amazonaws.lexmodelsv2#SampleUtterancesList",
7361                    "traits": {
7362                        "smithy.api#documentation": "<p>New utterances used to invoke the intent.</p>"
7363                    }
7364                },
7365                "dialogCodeHook": {
7366                    "target": "com.amazonaws.lexmodelsv2#DialogCodeHookSettings",
7367                    "traits": {
7368                        "smithy.api#documentation": "<p>The new Lambda function to use between each turn of the conversation\n         with the bot.</p>"
7369                    }
7370                },
7371                "fulfillmentCodeHook": {
7372                    "target": "com.amazonaws.lexmodelsv2#FulfillmentCodeHookSettings",
7373                    "traits": {
7374                        "smithy.api#documentation": "<p>The new Lambda function to call when all of the intents required\n         slots are provided and the intent is ready for fulfillment.</p>"
7375                    }
7376                },
7377                "slotPriorities": {
7378                    "target": "com.amazonaws.lexmodelsv2#SlotPrioritiesList",
7379                    "traits": {
7380                        "smithy.api#documentation": "<p>A new list of slots and their priorities that are contained by the\n         intent.</p>"
7381                    }
7382                },
7383                "intentConfirmationSetting": {
7384                    "target": "com.amazonaws.lexmodelsv2#IntentConfirmationSetting",
7385                    "traits": {
7386                        "smithy.api#documentation": "<p>New prompts that Amazon Lex sends to the user to confirm the completion\n         of an intent.</p>"
7387                    }
7388                },
7389                "intentClosingSetting": {
7390                    "target": "com.amazonaws.lexmodelsv2#IntentClosingSetting",
7391                    "traits": {
7392                        "smithy.api#documentation": "<p>The new response that Amazon Lex sends the user when the intent is\n         closed.</p>"
7393                    }
7394                },
7395                "inputContexts": {
7396                    "target": "com.amazonaws.lexmodelsv2#InputContextsList",
7397                    "traits": {
7398                        "smithy.api#documentation": "<p>A new list of contexts that must be active in order for Amazon Lex to\n         consider the intent.</p>"
7399                    }
7400                },
7401                "outputContexts": {
7402                    "target": "com.amazonaws.lexmodelsv2#OutputContextsList",
7403                    "traits": {
7404                        "smithy.api#documentation": "<p>A new list of contexts that Amazon Lex activates when the intent is\n         fulfilled.</p>"
7405                    }
7406                },
7407                "kendraConfiguration": {
7408                    "target": "com.amazonaws.lexmodelsv2#KendraConfiguration",
7409                    "traits": {
7410                        "smithy.api#documentation": "<p>New configuration settings for connecting to an Amazon Kendra index.</p>"
7411                    }
7412                },
7413                "botId": {
7414                    "target": "com.amazonaws.lexmodelsv2#Id",
7415                    "traits": {
7416                        "smithy.api#documentation": "<p>The identifier of the bot that contains the intent.</p>",
7417                        "smithy.api#httpLabel": {},
7418                        "smithy.api#required": {}
7419                    }
7420                },
7421                "botVersion": {
7422                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
7423                    "traits": {
7424                        "smithy.api#documentation": "<p>The version of the bot that contains the intent. Must be\n            <code>DRAFT</code>.</p>",
7425                        "smithy.api#httpLabel": {},
7426                        "smithy.api#required": {}
7427                    }
7428                },
7429                "localeId": {
7430                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
7431                    "traits": {
7432                        "smithy.api#documentation": "<p>The identifier of the language and locale where this intent is used.\n         The string must match one of the supported locales. For more\n         information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
7433                        "smithy.api#httpLabel": {},
7434                        "smithy.api#required": {}
7435                    }
7436                }
7437            }
7438        },
7439        "com.amazonaws.lexmodelsv2#UpdateIntentResponse": {
7440            "type": "structure",
7441            "members": {
7442                "intentId": {
7443                    "target": "com.amazonaws.lexmodelsv2#Id",
7444                    "traits": {
7445                        "smithy.api#documentation": "<p>The identifier of the intent that was updated.</p>"
7446                    }
7447                },
7448                "intentName": {
7449                    "target": "com.amazonaws.lexmodelsv2#Name",
7450                    "traits": {
7451                        "smithy.api#documentation": "<p>The updated name of the intent.</p>"
7452                    }
7453                },
7454                "description": {
7455                    "target": "com.amazonaws.lexmodelsv2#Description",
7456                    "traits": {
7457                        "smithy.api#documentation": "<p>The updated description of the intent.</p>"
7458                    }
7459                },
7460                "parentIntentSignature": {
7461                    "target": "com.amazonaws.lexmodelsv2#IntentSignature",
7462                    "traits": {
7463                        "smithy.api#documentation": "<p>The updated built-in intent that is the parent of this\n         intent.</p>"
7464                    }
7465                },
7466                "sampleUtterances": {
7467                    "target": "com.amazonaws.lexmodelsv2#SampleUtterancesList",
7468                    "traits": {
7469                        "smithy.api#documentation": "<p>The updated list of sample utterances for the intent.</p>"
7470                    }
7471                },
7472                "dialogCodeHook": {
7473                    "target": "com.amazonaws.lexmodelsv2#DialogCodeHookSettings",
7474                    "traits": {
7475                        "smithy.api#documentation": "<p>The updated Lambda function called during each turn of the\n         conversation with the user.</p>"
7476                    }
7477                },
7478                "fulfillmentCodeHook": {
7479                    "target": "com.amazonaws.lexmodelsv2#FulfillmentCodeHookSettings",
7480                    "traits": {
7481                        "smithy.api#documentation": "<p>The updated Lambda function called when the intent is ready for\n         fulfillment.</p>"
7482                    }
7483                },
7484                "slotPriorities": {
7485                    "target": "com.amazonaws.lexmodelsv2#SlotPrioritiesList",
7486                    "traits": {
7487                        "smithy.api#documentation": "<p>The updated list of slots and their priorities that are elicited\n         from the user for the intent.</p>"
7488                    }
7489                },
7490                "intentConfirmationSetting": {
7491                    "target": "com.amazonaws.lexmodelsv2#IntentConfirmationSetting",
7492                    "traits": {
7493                        "smithy.api#documentation": "<p>The updated prompts that Amazon Lex sends to the user to confirm the\n         completion of an intent.</p>"
7494                    }
7495                },
7496                "intentClosingSetting": {
7497                    "target": "com.amazonaws.lexmodelsv2#IntentClosingSetting",
7498                    "traits": {
7499                        "smithy.api#documentation": "<p>The updated response that Amazon Lex sends the user when the intent is\n         closed.</p>"
7500                    }
7501                },
7502                "inputContexts": {
7503                    "target": "com.amazonaws.lexmodelsv2#InputContextsList",
7504                    "traits": {
7505                        "smithy.api#documentation": "<p>The updated list of contexts that must be active for the intent to\n         be considered by Amazon Lex.</p>"
7506                    }
7507                },
7508                "outputContexts": {
7509                    "target": "com.amazonaws.lexmodelsv2#OutputContextsList",
7510                    "traits": {
7511                        "smithy.api#documentation": "<p>The updated list of contexts that Amazon Lex activates when the intent is\n         fulfilled.</p>"
7512                    }
7513                },
7514                "kendraConfiguration": {
7515                    "target": "com.amazonaws.lexmodelsv2#KendraConfiguration",
7516                    "traits": {
7517                        "smithy.api#documentation": "<p>The updated configuration for connecting to an Amazon Kendra index with the\n            <code>AMAZON.KendraSearchIntent</code> intent.</p>"
7518                    }
7519                },
7520                "botId": {
7521                    "target": "com.amazonaws.lexmodelsv2#Id",
7522                    "traits": {
7523                        "smithy.api#documentation": "<p>The identifier of the bot that contains the intent.</p>"
7524                    }
7525                },
7526                "botVersion": {
7527                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
7528                    "traits": {
7529                        "smithy.api#documentation": "<p>The version of the bot that contains the intent. Will always be\n            <code>DRAFT</code>.</p>"
7530                    }
7531                },
7532                "localeId": {
7533                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
7534                    "traits": {
7535                        "smithy.api#documentation": "<p>The updated language and locale of the intent.</p>"
7536                    }
7537                },
7538                "creationDateTime": {
7539                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
7540                    "traits": {
7541                        "smithy.api#documentation": "<p>A timestamp of when the intent was created.</p>"
7542                    }
7543                },
7544                "lastUpdatedDateTime": {
7545                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
7546                    "traits": {
7547                        "smithy.api#documentation": "<p>A timestamp of the last time that the intent was modified.</p>"
7548                    }
7549                }
7550            }
7551        },
7552        "com.amazonaws.lexmodelsv2#UpdateSlot": {
7553            "type": "operation",
7554            "input": {
7555                "target": "com.amazonaws.lexmodelsv2#UpdateSlotRequest"
7556            },
7557            "output": {
7558                "target": "com.amazonaws.lexmodelsv2#UpdateSlotResponse"
7559            },
7560            "errors": [
7561                {
7562                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
7563                },
7564                {
7565                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
7566                },
7567                {
7568                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
7569                },
7570                {
7571                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
7572                },
7573                {
7574                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
7575                },
7576                {
7577                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
7578                }
7579            ],
7580            "traits": {
7581                "smithy.api#documentation": "<p>Updates the settings for a slot.</p>",
7582                "smithy.api#http": {
7583                    "method": "PUT",
7584                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots/{slotId}",
7585                    "code": 200
7586                }
7587            }
7588        },
7589        "com.amazonaws.lexmodelsv2#UpdateSlotRequest": {
7590            "type": "structure",
7591            "members": {
7592                "slotId": {
7593                    "target": "com.amazonaws.lexmodelsv2#Id",
7594                    "traits": {
7595                        "smithy.api#documentation": "<p>The unique identifier for the slot to update.</p>",
7596                        "smithy.api#httpLabel": {},
7597                        "smithy.api#required": {}
7598                    }
7599                },
7600                "slotName": {
7601                    "target": "com.amazonaws.lexmodelsv2#Name",
7602                    "traits": {
7603                        "smithy.api#documentation": "<p>The new name for the slot.</p>",
7604                        "smithy.api#required": {}
7605                    }
7606                },
7607                "description": {
7608                    "target": "com.amazonaws.lexmodelsv2#Description",
7609                    "traits": {
7610                        "smithy.api#documentation": "<p>The new description for the slot.</p>"
7611                    }
7612                },
7613                "slotTypeId": {
7614                    "target": "com.amazonaws.lexmodelsv2#BuiltInOrCustomSlotTypeId",
7615                    "traits": {
7616                        "smithy.api#documentation": "<p>The unique identifier of the new slot type to associate with this\n         slot. </p>",
7617                        "smithy.api#required": {}
7618                    }
7619                },
7620                "valueElicitationSetting": {
7621                    "target": "com.amazonaws.lexmodelsv2#SlotValueElicitationSetting",
7622                    "traits": {
7623                        "smithy.api#documentation": "<p>A new set of prompts that Amazon Lex sends to the user to elicit a\n         response the provides a value for the slot.</p>",
7624                        "smithy.api#required": {}
7625                    }
7626                },
7627                "obfuscationSetting": {
7628                    "target": "com.amazonaws.lexmodelsv2#ObfuscationSetting",
7629                    "traits": {
7630                        "smithy.api#documentation": "<p>New settings that determine how slot values are formatted in Amazon CloudWatch\n         logs. </p>"
7631                    }
7632                },
7633                "botId": {
7634                    "target": "com.amazonaws.lexmodelsv2#Id",
7635                    "traits": {
7636                        "smithy.api#documentation": "<p>The unique identifier of the bot that contains the slot.</p>",
7637                        "smithy.api#httpLabel": {},
7638                        "smithy.api#required": {}
7639                    }
7640                },
7641                "botVersion": {
7642                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
7643                    "traits": {
7644                        "smithy.api#documentation": "<p>The version of the bot that contains the slot. Must always be\n            <code>DRAFT</code>.</p>",
7645                        "smithy.api#httpLabel": {},
7646                        "smithy.api#required": {}
7647                    }
7648                },
7649                "localeId": {
7650                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
7651                    "traits": {
7652                        "smithy.api#documentation": "<p>The identifier of the language and locale that contains the slot.\n         The string must match one of the supported locales. For more\n         information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
7653                        "smithy.api#httpLabel": {},
7654                        "smithy.api#required": {}
7655                    }
7656                },
7657                "intentId": {
7658                    "target": "com.amazonaws.lexmodelsv2#Id",
7659                    "traits": {
7660                        "smithy.api#documentation": "<p>The identifier of the intent that contains the slot.</p>",
7661                        "smithy.api#httpLabel": {},
7662                        "smithy.api#required": {}
7663                    }
7664                }
7665            }
7666        },
7667        "com.amazonaws.lexmodelsv2#UpdateSlotResponse": {
7668            "type": "structure",
7669            "members": {
7670                "slotId": {
7671                    "target": "com.amazonaws.lexmodelsv2#Id",
7672                    "traits": {
7673                        "smithy.api#documentation": "<p>The unique identifier of the slot that was updated.</p>"
7674                    }
7675                },
7676                "slotName": {
7677                    "target": "com.amazonaws.lexmodelsv2#Name",
7678                    "traits": {
7679                        "smithy.api#documentation": "<p>The updated name of the slot.</p>"
7680                    }
7681                },
7682                "description": {
7683                    "target": "com.amazonaws.lexmodelsv2#Description",
7684                    "traits": {
7685                        "smithy.api#documentation": "<p>The updated description of the bot.</p>"
7686                    }
7687                },
7688                "slotTypeId": {
7689                    "target": "com.amazonaws.lexmodelsv2#BuiltInOrCustomSlotTypeId",
7690                    "traits": {
7691                        "smithy.api#documentation": "<p>The updated identifier of the slot type that provides values for the\n         slot.</p>"
7692                    }
7693                },
7694                "valueElicitationSetting": {
7695                    "target": "com.amazonaws.lexmodelsv2#SlotValueElicitationSetting",
7696                    "traits": {
7697                        "smithy.api#documentation": "<p>The updated prompts that Amazon Lex sends to the user to elicit a\n         response that provides a value for the slot.</p>"
7698                    }
7699                },
7700                "obfuscationSetting": {
7701                    "target": "com.amazonaws.lexmodelsv2#ObfuscationSetting",
7702                    "traits": {
7703                        "smithy.api#documentation": "<p>The updated setting that determines whether the slot value is\n         obfuscated in the Amazon CloudWatch logs.</p>"
7704                    }
7705                },
7706                "botId": {
7707                    "target": "com.amazonaws.lexmodelsv2#Id",
7708                    "traits": {
7709                        "smithy.api#documentation": "<p>The identifier of the bot that contains the slot.</p>"
7710                    }
7711                },
7712                "botVersion": {
7713                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
7714                    "traits": {
7715                        "smithy.api#documentation": "<p>The identifier of the slot version that contains the slot. Will\n         always be <code>DRAFT</code>.</p>"
7716                    }
7717                },
7718                "localeId": {
7719                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
7720                    "traits": {
7721                        "smithy.api#documentation": "<p>The locale that contains the slot.</p>"
7722                    }
7723                },
7724                "intentId": {
7725                    "target": "com.amazonaws.lexmodelsv2#Id",
7726                    "traits": {
7727                        "smithy.api#documentation": "<p>The intent that contains the slot.</p>"
7728                    }
7729                },
7730                "creationDateTime": {
7731                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
7732                    "traits": {
7733                        "smithy.api#documentation": "<p>The timestamp of the date and time that the slot was created.</p>"
7734                    }
7735                },
7736                "lastUpdatedDateTime": {
7737                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
7738                    "traits": {
7739                        "smithy.api#documentation": "<p>The timestamp of the date and time that the slot was last\n         updated.</p>"
7740                    }
7741                }
7742            }
7743        },
7744        "com.amazonaws.lexmodelsv2#UpdateSlotType": {
7745            "type": "operation",
7746            "input": {
7747                "target": "com.amazonaws.lexmodelsv2#UpdateSlotTypeRequest"
7748            },
7749            "output": {
7750                "target": "com.amazonaws.lexmodelsv2#UpdateSlotTypeResponse"
7751            },
7752            "errors": [
7753                {
7754                    "target": "com.amazonaws.lexmodelsv2#ConflictException"
7755                },
7756                {
7757                    "target": "com.amazonaws.lexmodelsv2#InternalServerException"
7758                },
7759                {
7760                    "target": "com.amazonaws.lexmodelsv2#PreconditionFailedException"
7761                },
7762                {
7763                    "target": "com.amazonaws.lexmodelsv2#ServiceQuotaExceededException"
7764                },
7765                {
7766                    "target": "com.amazonaws.lexmodelsv2#ThrottlingException"
7767                },
7768                {
7769                    "target": "com.amazonaws.lexmodelsv2#ValidationException"
7770                }
7771            ],
7772            "traits": {
7773                "smithy.api#documentation": "<p>Updates the configuration of an existing slot type.</p>",
7774                "smithy.api#http": {
7775                    "method": "PUT",
7776                    "uri": "/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes/{slotTypeId}",
7777                    "code": 202
7778                }
7779            }
7780        },
7781        "com.amazonaws.lexmodelsv2#UpdateSlotTypeRequest": {
7782            "type": "structure",
7783            "members": {
7784                "slotTypeId": {
7785                    "target": "com.amazonaws.lexmodelsv2#Id",
7786                    "traits": {
7787                        "smithy.api#documentation": "<p>The unique identifier of the slot type to update.</p>",
7788                        "smithy.api#httpLabel": {},
7789                        "smithy.api#required": {}
7790                    }
7791                },
7792                "slotTypeName": {
7793                    "target": "com.amazonaws.lexmodelsv2#Name",
7794                    "traits": {
7795                        "smithy.api#documentation": "<p>The new name of the slot type.</p>",
7796                        "smithy.api#required": {}
7797                    }
7798                },
7799                "description": {
7800                    "target": "com.amazonaws.lexmodelsv2#Description",
7801                    "traits": {
7802                        "smithy.api#documentation": "<p>The new description of the slot type.</p>"
7803                    }
7804                },
7805                "slotTypeValues": {
7806                    "target": "com.amazonaws.lexmodelsv2#SlotTypeValues",
7807                    "traits": {
7808                        "smithy.api#documentation": "<p>A new list of values and their optional synonyms that define the\n         values that the slot type can take.</p>"
7809                    }
7810                },
7811                "valueSelectionSetting": {
7812                    "target": "com.amazonaws.lexmodelsv2#SlotValueSelectionSetting",
7813                    "traits": {
7814                        "smithy.api#documentation": "<p>The strategy that Amazon Lex should use when deciding on a value from the\n         list of slot type values.</p>",
7815                        "smithy.api#required": {}
7816                    }
7817                },
7818                "parentSlotTypeSignature": {
7819                    "target": "com.amazonaws.lexmodelsv2#SlotTypeSignature",
7820                    "traits": {
7821                        "smithy.api#documentation": "<p>The new built-in slot type that should be used as the parent of this\n         slot type.</p>"
7822                    }
7823                },
7824                "botId": {
7825                    "target": "com.amazonaws.lexmodelsv2#Id",
7826                    "traits": {
7827                        "smithy.api#documentation": "<p>The identifier of the bot that contains the slot type.</p>",
7828                        "smithy.api#httpLabel": {},
7829                        "smithy.api#required": {}
7830                    }
7831                },
7832                "botVersion": {
7833                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
7834                    "traits": {
7835                        "smithy.api#documentation": "<p>The version of the bot that contains the slot type. Must be\n            <code>DRAFT</code>.</p>",
7836                        "smithy.api#httpLabel": {},
7837                        "smithy.api#required": {}
7838                    }
7839                },
7840                "localeId": {
7841                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
7842                    "traits": {
7843                        "smithy.api#documentation": "<p>The identifier of the language and locale that contains the slot\n         type. The string must match one of the supported locales. For more\n         information, see <a href=\"https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html\">https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html</a>.</p>",
7844                        "smithy.api#httpLabel": {},
7845                        "smithy.api#required": {}
7846                    }
7847                }
7848            }
7849        },
7850        "com.amazonaws.lexmodelsv2#UpdateSlotTypeResponse": {
7851            "type": "structure",
7852            "members": {
7853                "slotTypeId": {
7854                    "target": "com.amazonaws.lexmodelsv2#Id",
7855                    "traits": {
7856                        "smithy.api#documentation": "<p>The unique identifier of the updated slot type.</p>"
7857                    }
7858                },
7859                "slotTypeName": {
7860                    "target": "com.amazonaws.lexmodelsv2#Name",
7861                    "traits": {
7862                        "smithy.api#documentation": "<p>The updated name of the slot type.</p>"
7863                    }
7864                },
7865                "description": {
7866                    "target": "com.amazonaws.lexmodelsv2#Description",
7867                    "traits": {
7868                        "smithy.api#documentation": "<p>The updated description of the slot type.</p>"
7869                    }
7870                },
7871                "slotTypeValues": {
7872                    "target": "com.amazonaws.lexmodelsv2#SlotTypeValues",
7873                    "traits": {
7874                        "smithy.api#documentation": "<p>The updated values that the slot type provides.</p>"
7875                    }
7876                },
7877                "valueSelectionSetting": {
7878                    "target": "com.amazonaws.lexmodelsv2#SlotValueSelectionSetting",
7879                    "traits": {
7880                        "smithy.api#documentation": "<p>The updated strategy that Amazon Lex uses to determine which value to\n         select from the slot type.</p>"
7881                    }
7882                },
7883                "parentSlotTypeSignature": {
7884                    "target": "com.amazonaws.lexmodelsv2#SlotTypeSignature",
7885                    "traits": {
7886                        "smithy.api#documentation": "<p>The updated signature of the built-in slot type that is the parent\n         of this slot type.</p>"
7887                    }
7888                },
7889                "botId": {
7890                    "target": "com.amazonaws.lexmodelsv2#Id",
7891                    "traits": {
7892                        "smithy.api#documentation": "<p>The identifier of the bot that contains the slot type.</p>"
7893                    }
7894                },
7895                "botVersion": {
7896                    "target": "com.amazonaws.lexmodelsv2#DraftBotVersion",
7897                    "traits": {
7898                        "smithy.api#documentation": "<p>The version of the bot that contains the slot type. This is always\n            <code>DRAFT</code>.</p>"
7899                    }
7900                },
7901                "localeId": {
7902                    "target": "com.amazonaws.lexmodelsv2#LocaleId",
7903                    "traits": {
7904                        "smithy.api#documentation": "<p>The language and locale of the updated slot type.</p>"
7905                    }
7906                },
7907                "creationDateTime": {
7908                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
7909                    "traits": {
7910                        "smithy.api#documentation": "<p>The timestamp of the date and time that the slot type was\n         created.</p>"
7911                    }
7912                },
7913                "lastUpdatedDateTime": {
7914                    "target": "com.amazonaws.lexmodelsv2#Timestamp",
7915                    "traits": {
7916                        "smithy.api#documentation": "<p>A timestamp of the date and time that the slot type was last\n         updated.</p>"
7917                    }
7918                }
7919            }
7920        },
7921        "com.amazonaws.lexmodelsv2#Utterance": {
7922            "type": "string"
7923        },
7924        "com.amazonaws.lexmodelsv2#ValidationException": {
7925            "type": "structure",
7926            "members": {
7927                "message": {
7928                    "target": "com.amazonaws.lexmodelsv2#ExceptionMessage"
7929                }
7930            },
7931            "traits": {
7932                "smithy.api#documentation": "<p></p>",
7933                "smithy.api#error": "client",
7934                "smithy.api#httpError": 400
7935            }
7936        },
7937        "com.amazonaws.lexmodelsv2#Value": {
7938            "type": "string",
7939            "traits": {
7940                "smithy.api#length": {
7941                    "min": 1,
7942                    "max": 140
7943                }
7944            }
7945        },
7946        "com.amazonaws.lexmodelsv2#VoiceId": {
7947            "type": "string"
7948        },
7949        "com.amazonaws.lexmodelsv2#VoiceSettings": {
7950            "type": "structure",
7951            "members": {
7952                "voiceId": {
7953                    "target": "com.amazonaws.lexmodelsv2#VoiceId",
7954                    "traits": {
7955                        "smithy.api#documentation": "<p>The identifier of the Amazon Polly voice to use.</p>",
7956                        "smithy.api#required": {}
7957                    }
7958                }
7959            },
7960            "traits": {
7961                "smithy.api#documentation": "<p>Defines settings for using an Amazon Polly voice to communicate with a\n         user.</p>"
7962            }
7963        },
7964        "com.amazonaws.lexmodelsv2#WaitAndContinueSpecification": {
7965            "type": "structure",
7966            "members": {
7967                "waitingResponse": {
7968                    "target": "com.amazonaws.lexmodelsv2#ResponseSpecification",
7969                    "traits": {
7970                        "smithy.api#documentation": "<p>The response that Amazon Lex sends to indicate that the bot is waiting\n         for the conversation to continue.</p>",
7971                        "smithy.api#required": {}
7972                    }
7973                },
7974                "continueResponse": {
7975                    "target": "com.amazonaws.lexmodelsv2#ResponseSpecification",
7976                    "traits": {
7977                        "smithy.api#documentation": "<p>The response that Amazon Lex sends to indicate that the bot is ready to\n         continue the conversation.</p>",
7978                        "smithy.api#required": {}
7979                    }
7980                },
7981                "stillWaitingResponse": {
7982                    "target": "com.amazonaws.lexmodelsv2#StillWaitingResponseSpecification",
7983                    "traits": {
7984                        "smithy.api#documentation": "<p>A response that Amazon Lex sends periodically to the user to indicate\n         that the bot is still waiting for input from the user.</p>"
7985                    }
7986                }
7987            },
7988            "traits": {
7989                "smithy.api#documentation": "<p>Specifies the prompts that Amazon Lex uses while a bot is waiting for\n         customer input. </p>"
7990            }
7991        }
7992    }
7993}
7994