cdk-docker-image-deployment 0.0.159 → 0.0.160

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,27 +12,27 @@ declare class LexModelsV2 extends Service {
12
12
  constructor(options?: LexModelsV2.Types.ClientConfiguration)
13
13
  config: Config & LexModelsV2.Types.ClientConfiguration;
14
14
  /**
15
- * Batch create custom vocabulary item for the specified locale in the specified bot.
15
+ * Create a batch of custom vocabulary items for a given bot locale's custom vocabulary.
16
16
  */
17
17
  batchCreateCustomVocabularyItem(params: LexModelsV2.Types.BatchCreateCustomVocabularyItemRequest, callback?: (err: AWSError, data: LexModelsV2.Types.BatchCreateCustomVocabularyItemResponse) => void): Request<LexModelsV2.Types.BatchCreateCustomVocabularyItemResponse, AWSError>;
18
18
  /**
19
- * Batch create custom vocabulary item for the specified locale in the specified bot.
19
+ * Create a batch of custom vocabulary items for a given bot locale's custom vocabulary.
20
20
  */
21
21
  batchCreateCustomVocabularyItem(callback?: (err: AWSError, data: LexModelsV2.Types.BatchCreateCustomVocabularyItemResponse) => void): Request<LexModelsV2.Types.BatchCreateCustomVocabularyItemResponse, AWSError>;
22
22
  /**
23
- * Batch delete custom vocabulary item for the specified locale in the specified bot.
23
+ * Delete a batch of custom vocabulary items for a given bot locale's custom vocabulary.
24
24
  */
25
25
  batchDeleteCustomVocabularyItem(params: LexModelsV2.Types.BatchDeleteCustomVocabularyItemRequest, callback?: (err: AWSError, data: LexModelsV2.Types.BatchDeleteCustomVocabularyItemResponse) => void): Request<LexModelsV2.Types.BatchDeleteCustomVocabularyItemResponse, AWSError>;
26
26
  /**
27
- * Batch delete custom vocabulary item for the specified locale in the specified bot.
27
+ * Delete a batch of custom vocabulary items for a given bot locale's custom vocabulary.
28
28
  */
29
29
  batchDeleteCustomVocabularyItem(callback?: (err: AWSError, data: LexModelsV2.Types.BatchDeleteCustomVocabularyItemResponse) => void): Request<LexModelsV2.Types.BatchDeleteCustomVocabularyItemResponse, AWSError>;
30
30
  /**
31
- * Batch update custom vocabulary item for the specified locale in the specified bot.
31
+ * Update a batch of custom vocabulary items for a given bot locale's custom vocabulary.
32
32
  */
33
33
  batchUpdateCustomVocabularyItem(params: LexModelsV2.Types.BatchUpdateCustomVocabularyItemRequest, callback?: (err: AWSError, data: LexModelsV2.Types.BatchUpdateCustomVocabularyItemResponse) => void): Request<LexModelsV2.Types.BatchUpdateCustomVocabularyItemResponse, AWSError>;
34
34
  /**
35
- * Batch update custom vocabulary item for the specified locale in the specified bot.
35
+ * Update a batch of custom vocabulary items for a given bot locale's custom vocabulary.
36
36
  */
37
37
  batchUpdateCustomVocabularyItem(callback?: (err: AWSError, data: LexModelsV2.Types.BatchUpdateCustomVocabularyItemResponse) => void): Request<LexModelsV2.Types.BatchUpdateCustomVocabularyItemResponse, AWSError>;
38
38
  /**
@@ -156,11 +156,11 @@ declare class LexModelsV2 extends Service {
156
156
  */
157
157
  deleteBotLocale(callback?: (err: AWSError, data: LexModelsV2.Types.DeleteBotLocaleResponse) => void): Request<LexModelsV2.Types.DeleteBotLocaleResponse, AWSError>;
158
158
  /**
159
- * Deletes a specific version of a bot. To delete all version of a bot, use the DeleteBot operation.
159
+ * Deletes a specific version of a bot. To delete all versions of a bot, use the DeleteBot operation.
160
160
  */
161
161
  deleteBotVersion(params: LexModelsV2.Types.DeleteBotVersionRequest, callback?: (err: AWSError, data: LexModelsV2.Types.DeleteBotVersionResponse) => void): Request<LexModelsV2.Types.DeleteBotVersionResponse, AWSError>;
162
162
  /**
163
- * Deletes a specific version of a bot. To delete all version of a bot, use the DeleteBot operation.
163
+ * Deletes a specific version of a bot. To delete all versions of a bot, use the DeleteBot operation.
164
164
  */
165
165
  deleteBotVersion(callback?: (err: AWSError, data: LexModelsV2.Types.DeleteBotVersionResponse) => void): Request<LexModelsV2.Types.DeleteBotVersionResponse, AWSError>;
166
166
  /**
@@ -396,11 +396,11 @@ declare class LexModelsV2 extends Service {
396
396
  */
397
397
  listBuiltInSlotTypes(callback?: (err: AWSError, data: LexModelsV2.Types.ListBuiltInSlotTypesResponse) => void): Request<LexModelsV2.Types.ListBuiltInSlotTypesResponse, AWSError>;
398
398
  /**
399
- * List custom vocabulary items for the specified locale in the specified bot.
399
+ * Paginated list of custom vocabulary items for a given bot locale's custom vocabulary.
400
400
  */
401
401
  listCustomVocabularyItems(params: LexModelsV2.Types.ListCustomVocabularyItemsRequest, callback?: (err: AWSError, data: LexModelsV2.Types.ListCustomVocabularyItemsResponse) => void): Request<LexModelsV2.Types.ListCustomVocabularyItemsResponse, AWSError>;
402
402
  /**
403
- * List custom vocabulary items for the specified locale in the specified bot.
403
+ * Paginated list of custom vocabulary items for a given bot locale's custom vocabulary.
404
404
  */
405
405
  listCustomVocabularyItems(callback?: (err: AWSError, data: LexModelsV2.Types.ListCustomVocabularyItemsResponse) => void): Request<LexModelsV2.Types.ListCustomVocabularyItemsResponse, AWSError>;
406
406
  /**
@@ -715,121 +715,121 @@ declare namespace LexModelsV2 {
715
715
  }
716
716
  export interface BatchCreateCustomVocabularyItemRequest {
717
717
  /**
718
- * The unique identifier of the bot to batch create the custom vocabulary item for.
718
+ * The identifier of the bot associated with this custom vocabulary.
719
719
  */
720
720
  botId: Id;
721
721
  /**
722
- * The bot version of the bot to batch create the custom vocabulary item for.
722
+ * The identifier of the version of the bot associated with this custom vocabulary.
723
723
  */
724
724
  botVersion: BotVersion;
725
725
  /**
726
- * The unique locale identifier of the bot to batch create the custom vocabulary item for.
726
+ * The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported Languages .
727
727
  */
728
728
  localeId: LocaleId;
729
729
  /**
730
- * The custom vocabulary item list of the bot to batch create the custom vocabulary item for.
730
+ * A list of new custom vocabulary items. Each entry must contain a phrase and can optionally contain a displayAs and/or a weight.
731
731
  */
732
732
  customVocabularyItemList: CreateCustomVocabularyItemsList;
733
733
  }
734
734
  export interface BatchCreateCustomVocabularyItemResponse {
735
735
  /**
736
- * The unique identifier of the bot to batch create response for the custom vocabulary item.
736
+ * The identifier of the bot associated with this custom vocabulary.
737
737
  */
738
738
  botId?: Id;
739
739
  /**
740
- * The bot version of the bot to batch create the custom vocabulary item response for.
740
+ * The identifier of the version of the bot associated with this custom vocabulary.
741
741
  */
742
742
  botVersion?: BotVersion;
743
743
  /**
744
- * The unique locale identifier of the bot to batch create the custom vocabulary item response for.
744
+ * The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported Languages .
745
745
  */
746
746
  localeId?: LocaleId;
747
747
  /**
748
- * The errors of the action to batch create the custom vocabulary item response for a bot.
748
+ * A list of custom vocabulary items that failed to create during the operation. The reason for the error is contained within each error object.
749
749
  */
750
750
  errors?: FailedCustomVocabularyItems;
751
751
  /**
752
- * The resources of the action to batch create the custom vocabulary item response for a bot.
752
+ * A list of custom vocabulary items that were successfully created during the operation.
753
753
  */
754
754
  resources?: CustomVocabularyItems;
755
755
  }
756
756
  export interface BatchDeleteCustomVocabularyItemRequest {
757
757
  /**
758
- * The unique identifier of the bot to batch delete request for the custom vocabulary item.
758
+ * The identifier of the bot associated with this custom vocabulary.
759
759
  */
760
760
  botId: Id;
761
761
  /**
762
- * The version of the bot to batch delete request for the custom vocabulary item.
762
+ * The identifier of the version of the bot associated with this custom vocabulary.
763
763
  */
764
764
  botVersion: BotVersion;
765
765
  /**
766
- * The locale identifier of the bot to batch delete request for the custom vocabulary item.
766
+ * The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported Languages .
767
767
  */
768
768
  localeId: LocaleId;
769
769
  /**
770
- * The custom vocabulary list to batch delete request for the custom vocabulary item.
770
+ * A list of custom vocabulary items requested to be deleted. Each entry must contain the unique custom vocabulary entry identifier.
771
771
  */
772
772
  customVocabularyItemList: DeleteCustomVocabularyItemsList;
773
773
  }
774
774
  export interface BatchDeleteCustomVocabularyItemResponse {
775
775
  /**
776
- * The unique identifier of the bot to batch delete response for the custom vocabulary item.
776
+ * The identifier of the bot associated with this custom vocabulary.
777
777
  */
778
778
  botId?: Id;
779
779
  /**
780
- * The version of the bot to batch delete response for the custom vocabulary item.
780
+ * The identifier of the version of the bot associated with this custom vocabulary.
781
781
  */
782
782
  botVersion?: BotVersion;
783
783
  /**
784
- * The locale identifier of the bot to batch delete response for the custom vocabulary item.
784
+ * The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported languages (https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html).
785
785
  */
786
786
  localeId?: LocaleId;
787
787
  /**
788
- * The errors of the action to batch delete response for the custom vocabulary item.
788
+ * A list of custom vocabulary items that failed to delete during the operation. The reason for the error is contained within each error object.
789
789
  */
790
790
  errors?: FailedCustomVocabularyItems;
791
791
  /**
792
- * The resources of the action to batch delete response for the custom vocabulary item.
792
+ * A list of custom vocabulary items that were successfully deleted during the operation.
793
793
  */
794
794
  resources?: CustomVocabularyItems;
795
795
  }
796
796
  export interface BatchUpdateCustomVocabularyItemRequest {
797
797
  /**
798
- * The unique identifier of the bot to the batch update request for the custom vocabulary item.
798
+ * The identifier of the bot associated with this custom vocabulary
799
799
  */
800
800
  botId: Id;
801
801
  /**
802
- * The bot version of the bot to the batch update request for the custom vocabulary item.
802
+ * The identifier of the version of the bot associated with this custom vocabulary.
803
803
  */
804
804
  botVersion: BotVersion;
805
805
  /**
806
- * The locale identifier of the bot to the batch update request for the custom vocabulary item.
806
+ * The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported Languages .
807
807
  */
808
808
  localeId: LocaleId;
809
809
  /**
810
- * The custom vocabulary item list of the bot to the batch update request for the custom vocabulary item.
810
+ * A list of custom vocabulary items with updated fields. Each entry must contain a phrase and can optionally contain a displayAs and/or a weight.
811
811
  */
812
812
  customVocabularyItemList: UpdateCustomVocabularyItemsList;
813
813
  }
814
814
  export interface BatchUpdateCustomVocabularyItemResponse {
815
815
  /**
816
- * The unique identifier of the bot to the batch update response for the custom vocabulary item.
816
+ * The identifier of the bot associated with this custom vocabulary.
817
817
  */
818
818
  botId?: Id;
819
819
  /**
820
- * The bot version of the bot to the batch update response for the custom vocabulary item.
820
+ * The identifier of the version of the bot associated with this custom vocabulary.
821
821
  */
822
822
  botVersion?: BotVersion;
823
823
  /**
824
- * The locale identifier of the bot to the batch update response for the custom vocabulary item.
824
+ * The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported Languages .
825
825
  */
826
826
  localeId?: LocaleId;
827
827
  /**
828
- * The errors of the action to batch update response for the custom vocabulary item.
828
+ * A list of custom vocabulary items that failed to update during the operation. The reason for the error is contained within each error object.
829
829
  */
830
830
  errors?: FailedCustomVocabularyItems;
831
831
  /**
832
- * The resources of the action to batch update response for the custom vocabulary item.
832
+ * A list of custom vocabulary items that were successfully updated during the operation.
833
833
  */
834
834
  resources?: CustomVocabularyItems;
835
835
  }
@@ -861,6 +861,7 @@ declare namespace LexModelsV2 {
861
861
  codeHookSpecification?: CodeHookSpecification;
862
862
  }
863
863
  export type BotAliasLocaleSettingsMap = {[key: string]: BotAliasLocaleSettings};
864
+ export type BotAliasName = string;
864
865
  export type BotAliasStatus = "Creating"|"Available"|"Deleting"|"Failed"|string;
865
866
  export interface BotAliasSummary {
866
867
  /**
@@ -917,8 +918,8 @@ declare namespace LexModelsV2 {
917
918
  */
918
919
  operator: BotFilterOperator;
919
920
  }
920
- export type BotFilterName = "BotName"|string;
921
- export type BotFilterOperator = "CO"|"EQ"|string;
921
+ export type BotFilterName = "BotName"|"BotType"|string;
922
+ export type BotFilterOperator = "CO"|"EQ"|"NE"|string;
922
923
  export type BotFilters = BotFilter[];
923
924
  export interface BotImportSpecification {
924
925
  /**
@@ -1044,6 +1045,29 @@ declare namespace LexModelsV2 {
1044
1045
  lastBuildSubmittedDateTime?: Timestamp;
1045
1046
  }
1046
1047
  export type BotLocaleSummaryList = BotLocaleSummary[];
1048
+ export interface BotMember {
1049
+ /**
1050
+ * The unique ID of a bot that is a member of this network of bots.
1051
+ */
1052
+ botMemberId: Id;
1053
+ /**
1054
+ * The unique name of a bot that is a member of this network of bots.
1055
+ */
1056
+ botMemberName: Name;
1057
+ /**
1058
+ * The alias ID of a bot that is a member of this network of bots.
1059
+ */
1060
+ botMemberAliasId: BotAliasId;
1061
+ /**
1062
+ * The alias name of a bot that is a member of this network of bots.
1063
+ */
1064
+ botMemberAliasName: BotAliasName;
1065
+ /**
1066
+ * The version of a bot that is a member of this network of bots.
1067
+ */
1068
+ botMemberVersion: BotVersion;
1069
+ }
1070
+ export type BotMembers = BotMember[];
1047
1071
  export interface BotRecommendationResultStatistics {
1048
1072
  /**
1049
1073
  * Statistical information about about the intents associated with the bot recommendation results.
@@ -1099,7 +1123,7 @@ declare namespace LexModelsV2 {
1099
1123
  */
1100
1124
  order: SortOrder;
1101
1125
  }
1102
- export type BotStatus = "Creating"|"Available"|"Inactive"|"Deleting"|"Failed"|"Versioning"|"Importing"|string;
1126
+ export type BotStatus = "Creating"|"Available"|"Inactive"|"Deleting"|"Failed"|"Versioning"|"Importing"|"Updating"|string;
1103
1127
  export interface BotSummary {
1104
1128
  /**
1105
1129
  * The unique identifier assigned to the bot. Use this ID to get detailed information about the bot with the DescribeBot operation.
@@ -1125,8 +1149,13 @@ declare namespace LexModelsV2 {
1125
1149
  * The date and time that the bot was last updated.
1126
1150
  */
1127
1151
  lastUpdatedDateTime?: Timestamp;
1152
+ /**
1153
+ * The type of the bot.
1154
+ */
1155
+ botType?: BotType;
1128
1156
  }
1129
1157
  export type BotSummaryList = BotSummary[];
1158
+ export type BotType = "Bot"|"BotNetwork"|string;
1130
1159
  export type BotVersion = string;
1131
1160
  export interface BotVersionLocaleDetails {
1132
1161
  /**
@@ -1510,6 +1539,14 @@ declare namespace LexModelsV2 {
1510
1539
  * A list of tags to add to the test alias for a bot. You can only add tags when you create a bot. You can't use the UpdateAlias operation to update tags. To update tags on the test alias, use the TagResource operation.
1511
1540
  */
1512
1541
  testBotAliasTags?: TagMap;
1542
+ /**
1543
+ * The type of a bot to create.
1544
+ */
1545
+ botType?: BotType;
1546
+ /**
1547
+ * The list of bot members in a network to be created.
1548
+ */
1549
+ botMembers?: BotMembers;
1513
1550
  }
1514
1551
  export interface CreateBotResponse {
1515
1552
  /**
@@ -1537,7 +1574,7 @@ declare namespace LexModelsV2 {
1537
1574
  */
1538
1575
  idleSessionTTLInSeconds?: SessionTTL;
1539
1576
  /**
1540
- * Shows the current status of the bot. The bot is first in the Creating status. Once the bot is read for use, it changes to the Available status. After the bot is created, you can use the Draft version of the bot.
1577
+ * Shows the current status of the bot. The bot is first in the Creating status. Once the bot is read for use, it changes to the Available status. After the bot is created, you can use the DRAFT version of the bot.
1541
1578
  */
1542
1579
  botStatus?: BotStatus;
1543
1580
  /**
@@ -1552,6 +1589,14 @@ declare namespace LexModelsV2 {
1552
1589
  * A list of tags associated with the test alias for the bot.
1553
1590
  */
1554
1591
  testBotAliasTags?: TagMap;
1592
+ /**
1593
+ * The type of a bot that was created.
1594
+ */
1595
+ botType?: BotType;
1596
+ /**
1597
+ * The list of bots in a network that was created.
1598
+ */
1599
+ botMembers?: BotMembers;
1555
1600
  }
1556
1601
  export interface CreateBotVersionRequest {
1557
1602
  /**
@@ -2081,7 +2126,7 @@ declare namespace LexModelsV2 {
2081
2126
  */
2082
2127
  weight?: Weight;
2083
2128
  /**
2084
- * The display as value for the custom vocabulary item from the custom vocabulary list.
2129
+ * The DisplayAs value for the custom vocabulary item from the custom vocabulary list.
2085
2130
  */
2086
2131
  displayAs?: Phrase;
2087
2132
  }
@@ -2139,7 +2184,7 @@ declare namespace LexModelsV2 {
2139
2184
  */
2140
2185
  botId: Id;
2141
2186
  /**
2142
- * When this parameter is true, Amazon Lex doesn't check to see if any other resource is using the alias before it is deleted.
2187
+ * By default, Amazon Lex checks if any other resource, such as a bot network, is using the bot alias before it is deleted and throws a ResourceInUseException exception if the alias is being used by another resource. Set this parameter to true to skip this check and remove the alias even if it is being used by another resource.
2143
2188
  */
2144
2189
  skipResourceInUseCheck?: SkipResourceInUseCheck;
2145
2190
  }
@@ -2195,7 +2240,7 @@ declare namespace LexModelsV2 {
2195
2240
  */
2196
2241
  botId: Id;
2197
2242
  /**
2198
- * When true, Amazon Lex doesn't check to see if another resource, such as an alias, is using the bot before it is deleted.
2243
+ * By default, Amazon Lex checks if any other resource, such as an alias or bot network, is using the bot version before it is deleted and throws a ResourceInUseException exception if the bot is being used by another resource. Set this parameter to true to skip this check and remove the bot even if it is being used by another resource.
2199
2244
  */
2200
2245
  skipResourceInUseCheck?: SkipResourceInUseCheck;
2201
2246
  }
@@ -2219,7 +2264,7 @@ declare namespace LexModelsV2 {
2219
2264
  */
2220
2265
  botVersion: NumericalBotVersion;
2221
2266
  /**
2222
- * By default, the DeleteBotVersion operations throws a ResourceInUseException exception if you try to delete a bot version that has an alias pointing at it. Set the skipResourceInUseCheck parameter to true to skip this check and remove the version even if an alias points to it.
2267
+ * By default, Amazon Lex checks if any other resource, such as an alias or bot network, is using the bot version before it is deleted and throws a ResourceInUseException exception if the version is being used by another resource. Set this parameter to true to skip this check and remove the version even if it is being used by another resource.
2223
2268
  */
2224
2269
  skipResourceInUseCheck?: SkipResourceInUseCheck;
2225
2270
  }
@@ -2480,6 +2525,10 @@ declare namespace LexModelsV2 {
2480
2525
  * A timestamp of the date and time that the alias was last updated.
2481
2526
  */
2482
2527
  lastUpdatedDateTime?: Timestamp;
2528
+ /**
2529
+ * A list of the networks to which the bot alias you described belongs.
2530
+ */
2531
+ parentBotNetworks?: ParentBotNetworks;
2483
2532
  }
2484
2533
  export interface DescribeBotLocaleRequest {
2485
2534
  /**
@@ -2668,6 +2717,18 @@ declare namespace LexModelsV2 {
2668
2717
  * A timestamp of the date and time that the bot was last updated.
2669
2718
  */
2670
2719
  lastUpdatedDateTime?: Timestamp;
2720
+ /**
2721
+ * The type of the bot that was described.
2722
+ */
2723
+ botType?: BotType;
2724
+ /**
2725
+ * The list of bots in the network that was described.
2726
+ */
2727
+ botMembers?: BotMembers;
2728
+ /**
2729
+ * If the botStatus is Failed, this contains a list of reasons that the bot couldn't be built.
2730
+ */
2731
+ failureReasons?: FailureReasons;
2671
2732
  }
2672
2733
  export interface DescribeBotVersionRequest {
2673
2734
  /**
@@ -2689,7 +2750,7 @@ declare namespace LexModelsV2 {
2689
2750
  */
2690
2751
  botName?: Name;
2691
2752
  /**
2692
- * The version of the bot to describe.
2753
+ * The version of the bot that was described.
2693
2754
  */
2694
2755
  botVersion?: NumericalBotVersion;
2695
2756
  /**
@@ -2720,6 +2781,18 @@ declare namespace LexModelsV2 {
2720
2781
  * A timestamp of the date and time that the bot version was created.
2721
2782
  */
2722
2783
  creationDateTime?: Timestamp;
2784
+ /**
2785
+ * A list of the networks to which the bot version you described belongs.
2786
+ */
2787
+ parentBotNetworks?: ParentBotNetworks;
2788
+ /**
2789
+ * The type of the bot in the version that was described.
2790
+ */
2791
+ botType?: BotType;
2792
+ /**
2793
+ * The members of bot network in the version that was described.
2794
+ */
2795
+ botMembers?: BotMembers;
2723
2796
  }
2724
2797
  export interface DescribeCustomVocabularyMetadataRequest {
2725
2798
  /**
@@ -3979,7 +4052,7 @@ declare namespace LexModelsV2 {
3979
4052
  }
3980
4053
  export interface ListCustomVocabularyItemsRequest {
3981
4054
  /**
3982
- * The unique identifier of the bot to the list custom vocabulary request.
4055
+ * The identifier of the version of the bot associated with this custom vocabulary.
3983
4056
  */
3984
4057
  botId: Id;
3985
4058
  /**
@@ -3987,11 +4060,11 @@ declare namespace LexModelsV2 {
3987
4060
  */
3988
4061
  botVersion: BotVersion;
3989
4062
  /**
3990
- * The locale identifier of the bot to the list custom vocabulary request.
4063
+ * The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported languages (https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html).
3991
4064
  */
3992
4065
  localeId: LocaleId;
3993
4066
  /**
3994
- * The maximum results to the list custom vocabulary request.
4067
+ * The maximum number of items returned by the list operation.
3995
4068
  */
3996
4069
  maxResults?: MaxResults;
3997
4070
  /**
@@ -4001,15 +4074,15 @@ declare namespace LexModelsV2 {
4001
4074
  }
4002
4075
  export interface ListCustomVocabularyItemsResponse {
4003
4076
  /**
4004
- * The unique identifier of the bot to the list custom vocabulary response.
4077
+ * The identifier of the bot associated with this custom vocabulary.
4005
4078
  */
4006
4079
  botId?: Id;
4007
4080
  /**
4008
- * The bot version of the bot to the list custom vocabulary response.
4081
+ * The identifier of the version of the bot associated with this custom vocabulary.
4009
4082
  */
4010
4083
  botVersion?: BotVersion;
4011
4084
  /**
4012
- * The locale identifier of the bot to the list custom vocabulary response.
4085
+ * The identifier of the language and locale where this custom vocabulary is used. The string must match one of the supported locales. For more information, see Supported Languages .
4013
4086
  */
4014
4087
  localeId?: LocaleId;
4015
4088
  /**
@@ -4442,6 +4515,17 @@ declare namespace LexModelsV2 {
4442
4515
  turnsToLive: ContextTurnsToLive;
4443
4516
  }
4444
4517
  export type OutputContextsList = OutputContext[];
4518
+ export interface ParentBotNetwork {
4519
+ /**
4520
+ * The identifier of the network of bots assigned by Amazon Lex.
4521
+ */
4522
+ botId: Id;
4523
+ /**
4524
+ * The version of the network of bots.
4525
+ */
4526
+ botVersion: BotVersion;
4527
+ }
4528
+ export type ParentBotNetworks = ParentBotNetwork[];
4445
4529
  export interface PathFormat {
4446
4530
  /**
4447
4531
  * A list of Amazon S3 prefixes that points to sub-folders in the Amazon S3 bucket. Specify this list if you only want Lex to read the files under this set of sub-folders.
@@ -5506,6 +5590,14 @@ declare namespace LexModelsV2 {
5506
5590
  * The time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. A user interaction remains active for the amount of time specified. If no conversation occurs during this time, the session expires and Amazon Lex deletes any data provided before the timeout. You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
5507
5591
  */
5508
5592
  idleSessionTTLInSeconds: SessionTTL;
5593
+ /**
5594
+ * The type of the bot to be updated.
5595
+ */
5596
+ botType?: BotType;
5597
+ /**
5598
+ * The list of bot members in the network associated with the update action.
5599
+ */
5600
+ botMembers?: BotMembers;
5509
5601
  }
5510
5602
  export interface UpdateBotResponse {
5511
5603
  /**
@@ -5544,6 +5636,14 @@ declare namespace LexModelsV2 {
5544
5636
  * A timestamp of the date and time that the bot was last updated.
5545
5637
  */
5546
5638
  lastUpdatedDateTime?: Timestamp;
5639
+ /**
5640
+ * The type of the bot that was updated.
5641
+ */
5642
+ botType?: BotType;
5643
+ /**
5644
+ * The list of bot members in the network that was updated.
5645
+ */
5646
+ botMembers?: BotMembers;
5547
5647
  }
5548
5648
  export type UpdateCustomVocabularyItemsList = CustomVocabularyItem[];
5549
5649
  export interface UpdateExportRequest {
@@ -390,6 +390,10 @@ declare namespace LexRuntimeV2 {
390
390
  * The identifier of the session in use.
391
391
  */
392
392
  sessionId?: SessionId;
393
+ /**
394
+ * The bot member that recognized the text.
395
+ */
396
+ recognizedBotMember?: RecognizedBotMember;
393
397
  }
394
398
  export interface RecognizeUtteranceRequest {
395
399
  /**
@@ -421,7 +425,7 @@ declare namespace LexRuntimeV2 {
421
425
  */
422
426
  requestContentType: NonEmptyString;
423
427
  /**
424
- * The message that Amazon Lex V2 returns in the response can be either text or speech based on the responseContentType value. If the value is text/plain;charset=utf-8, Amazon Lex V2 returns text in the response. If the value begins with audio/, Amazon Lex V2 returns speech in the response. Amazon Lex V2 uses Amazon Polly to generate the speech using the configuration that you specified in the requestContentType parameter. For example, if you specify audio/mpeg as the value, Amazon Lex V2 returns speech in the MPEG format. If the value is audio/pcm, the speech returned is audio/pcm at 16 KHz in 16-bit, little-endian format. The following are the accepted values: audio/mpeg audio/ogg audio/pcm (16 KHz) audio/* (defaults to mpeg) text/plain; charset=utf-8
428
+ * The message that Amazon Lex V2 returns in the response can be either text or speech based on the responseContentType value. If the value is text/plain;charset=utf-8, Amazon Lex V2 returns text in the response. If the value begins with audio/, Amazon Lex V2 returns speech in the response. Amazon Lex V2 uses Amazon Polly to generate the speech using the configuration that you specified in the responseContentType parameter. For example, if you specify audio/mpeg as the value, Amazon Lex V2 returns speech in the MPEG format. If the value is audio/pcm, the speech returned is audio/pcm at 16 KHz in 16-bit, little-endian format. The following are the accepted values: audio/mpeg audio/ogg audio/pcm (16 KHz) audio/* (defaults to mpeg) text/plain; charset=utf-8
425
429
  */
426
430
  responseContentType?: NonEmptyString;
427
431
  /**
@@ -466,6 +470,20 @@ declare namespace LexRuntimeV2 {
466
470
  * The prompt or statement to send to the user. This is based on the bot configuration and context. For example, if Amazon Lex V2 did not understand the user intent, it sends the clarificationPrompt configured for the bot. If the intent requires confirmation before taking the fulfillment action, it sends the confirmationPrompt. Another example: Suppose that the Lambda function successfully fulfilled the intent, and sent a message to convey to the user. Then Amazon Lex V2 sends that message in the response.
467
471
  */
468
472
  audioStream?: BlobStream;
473
+ /**
474
+ * The bot member that recognized the utterance.
475
+ */
476
+ recognizedBotMember?: NonEmptyString;
477
+ }
478
+ export interface RecognizedBotMember {
479
+ /**
480
+ * The identifier of the bot member that processes the request.
481
+ */
482
+ botId: BotIdentifier;
483
+ /**
484
+ * The name of the bot member that processes the request.
485
+ */
486
+ botName?: Name;
469
487
  }
470
488
  export interface RuntimeHintDetails {
471
489
  /**
@@ -2342,7 +2342,7 @@ declare namespace Lightsail {
2342
2342
  */
2343
2343
  password?: string;
2344
2344
  /**
2345
- * The timestamp of when the container image registry username and password expire. The log in credentials expire 12 hours after they are created, at which point you will need to create a new set of log in credentials using the CreateContainerServiceRegistryLogin action.
2345
+ * The timestamp of when the container image registry sign-in credentials expire. The log in credentials expire 12 hours after they are created, at which point you will need to create a new set of log in credentials using the CreateContainerServiceRegistryLogin action.
2346
2346
  */
2347
2347
  expiresAt?: IsoDate;
2348
2348
  /**
@@ -3721,7 +3721,7 @@ declare namespace Lightsail {
3721
3721
  */
3722
3722
  target?: string;
3723
3723
  /**
3724
- * When true, specifies whether the domain entry is an alias used by the Lightsail load balancer. You can include an alias (A type) record in your request, which points to a load balancer DNS name and routes traffic to your load balancer.
3724
+ * When true, specifies whether the domain entry is an alias used by the Lightsail load balancer, Lightsail container service, Lightsail content delivery network (CDN) distribution, or another Amazon Web Services resource. You can include an alias (A type) record in your request, which points to the DNS name of a load balancer, container service, CDN distribution, or other Amazon Web Services resource and routes traffic to that resource.
3725
3725
  */
3726
3726
  isAlias?: boolean;
3727
3727
  /**
@@ -6355,6 +6355,9 @@ declare namespace Lightsail {
6355
6355
  * An object that describes the state of the name server records that are automatically added to the Route 53 domain by Lightsail.
6356
6356
  */
6357
6357
  nameServersUpdateState?: NameServersUpdateState;
6358
+ /**
6359
+ * Describes the deletion state of an Amazon Route 53 hosted zone for a domain that is being automatically delegated to an Amazon Lightsail DNS zone.
6360
+ */
6358
6361
  r53HostedZoneDeletionState?: R53HostedZoneDeletionState;
6359
6362
  }
6360
6363
  export interface RelationalDatabase {
@@ -7167,6 +7170,9 @@ declare namespace Lightsail {
7167
7170
  httpProtocolIpv6?: HttpProtocolIpv6;
7168
7171
  }
7169
7172
  export interface UpdateInstanceMetadataOptionsResult {
7173
+ /**
7174
+ * An array of objects that describe the result of the action, such as the status of the request, the timestamp of the request, and the resources affected by the request.
7175
+ */
7170
7176
  operation?: Operation;
7171
7177
  }
7172
7178
  export interface UpdateLoadBalancerAttributeRequest {
@@ -20,11 +20,11 @@ declare class MigrationHubRefactorSpaces extends Service {
20
20
  */
21
21
  createApplication(callback?: (err: AWSError, data: MigrationHubRefactorSpaces.Types.CreateApplicationResponse) => void): Request<MigrationHubRefactorSpaces.Types.CreateApplicationResponse, AWSError>;
22
22
  /**
23
- * Creates an Amazon Web Services Migration Hub Refactor Spaces environment. The caller owns the environment resource, and all Refactor Spaces applications, services, and routes created within the environment. They are referred to as the environment owner. The environment owner has cross-account visibility and control of Refactor Spaces resources that are added to the environment by other accounts that the environment is shared with. When creating an environment, Refactor Spaces provisions a transit gateway in your account.
23
+ * Creates an Amazon Web Services Migration Hub Refactor Spaces environment. The caller owns the environment resource, and all Refactor Spaces applications, services, and routes created within the environment. They are referred to as the environment owner. The environment owner has cross-account visibility and control of Refactor Spaces resources that are added to the environment by other accounts that the environment is shared with. When creating an environment with a network fabric type of TRANSIT_GATEWAY, Refactor Spaces provisions a transit gateway in your account.
24
24
  */
25
25
  createEnvironment(params: MigrationHubRefactorSpaces.Types.CreateEnvironmentRequest, callback?: (err: AWSError, data: MigrationHubRefactorSpaces.Types.CreateEnvironmentResponse) => void): Request<MigrationHubRefactorSpaces.Types.CreateEnvironmentResponse, AWSError>;
26
26
  /**
27
- * Creates an Amazon Web Services Migration Hub Refactor Spaces environment. The caller owns the environment resource, and all Refactor Spaces applications, services, and routes created within the environment. They are referred to as the environment owner. The environment owner has cross-account visibility and control of Refactor Spaces resources that are added to the environment by other accounts that the environment is shared with. When creating an environment, Refactor Spaces provisions a transit gateway in your account.
27
+ * Creates an Amazon Web Services Migration Hub Refactor Spaces environment. The caller owns the environment resource, and all Refactor Spaces applications, services, and routes created within the environment. They are referred to as the environment owner. The environment owner has cross-account visibility and control of Refactor Spaces resources that are added to the environment by other accounts that the environment is shared with. When creating an environment with a network fabric type of TRANSIT_GATEWAY, Refactor Spaces provisions a transit gateway in your account.
28
28
  */
29
29
  createEnvironment(callback?: (err: AWSError, data: MigrationHubRefactorSpaces.Types.CreateEnvironmentResponse) => void): Request<MigrationHubRefactorSpaces.Types.CreateEnvironmentResponse, AWSError>;
30
30
  /**
@@ -1427,7 +1427,7 @@ declare namespace MigrationHubRefactorSpaces {
1427
1427
  Tags?: TagMap;
1428
1428
  }
1429
1429
  export type MaxResults = number;
1430
- export type NetworkFabricType = "TRANSIT_GATEWAY"|string;
1430
+ export type NetworkFabricType = "TRANSIT_GATEWAY"|"NONE"|string;
1431
1431
  export type NextToken = string;
1432
1432
  export type NlbArn = string;
1433
1433
  export type NlbName = string;