aws-sdk-core 2.11.560 → 2.11.561

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e150e41eb2375eb2d0b6050636f680a0f15289f834b16c20974c4bdaa9ba61b
4
- data.tar.gz: b7492989b03940e6f377f2eec6ff1fca50e6ee163f96344bfb8cf38796024aad
3
+ metadata.gz: d5050f14d690f411d87a10ccdf1843f07528861025af706cb0ddbf7abe89cc8d
4
+ data.tar.gz: 1ce9a33ef12b78d240d04bc4be836e4c717e597da2db26e3df7a29d84b5b5cb4
5
5
  SHA512:
6
- metadata.gz: c87794ffa76eb68377e54eb46fb13ba28f891c66a285a08f71b6c6d653a06427ff61f8efad56e1c7a48b4d72bc321ff5fd9eea6a0b53a8be31a805f5a2c926d2
7
- data.tar.gz: 6e06a21f3b3181a56dca371b3fa3503757557051733100f15e7bc6da9ae821aa8bf395d20e2e8e212e31305d80e4132dba6e48d0975a27b735ada40dbc7d8f95
6
+ metadata.gz: f8e66b0d8e1baa581727f8a418bc24bea364bf692cbd64a842e4ca3b080c9918dad0aea6c6a2dfa190b2e7660c651cd5dfad01a3247c8f20c45c612c39736bfb
7
+ data.tar.gz: 8fffb38e724ee0d5b8aec899004b90dbd03508209bf5cae266309966070175cdaca96695509b827e8966105192743caba30bda9cdb889798ba4d3a6166dcc840
@@ -384,6 +384,15 @@
384
384
  "input":{"shape":"CreateCapacityReservationRequest"},
385
385
  "output":{"shape":"CreateCapacityReservationResult"}
386
386
  },
387
+ "CreateCarrierGateway":{
388
+ "name":"CreateCarrierGateway",
389
+ "http":{
390
+ "method":"POST",
391
+ "requestUri":"/"
392
+ },
393
+ "input":{"shape":"CreateCarrierGatewayRequest"},
394
+ "output":{"shape":"CreateCarrierGatewayResult"}
395
+ },
387
396
  "CreateClientVpnEndpoint":{
388
397
  "name":"CreateClientVpnEndpoint",
389
398
  "http":{
@@ -858,6 +867,15 @@
858
867
  "input":{"shape":"CreateVpnGatewayRequest"},
859
868
  "output":{"shape":"CreateVpnGatewayResult"}
860
869
  },
870
+ "DeleteCarrierGateway":{
871
+ "name":"DeleteCarrierGateway",
872
+ "http":{
873
+ "method":"POST",
874
+ "requestUri":"/"
875
+ },
876
+ "input":{"shape":"DeleteCarrierGatewayRequest"},
877
+ "output":{"shape":"DeleteCarrierGatewayResult"}
878
+ },
861
879
  "DeleteClientVpnEndpoint":{
862
880
  "name":"DeleteClientVpnEndpoint",
863
881
  "http":{
@@ -1377,6 +1395,15 @@
1377
1395
  "input":{"shape":"DescribeCapacityReservationsRequest"},
1378
1396
  "output":{"shape":"DescribeCapacityReservationsResult"}
1379
1397
  },
1398
+ "DescribeCarrierGateways":{
1399
+ "name":"DescribeCarrierGateways",
1400
+ "http":{
1401
+ "method":"POST",
1402
+ "requestUri":"/"
1403
+ },
1404
+ "input":{"shape":"DescribeCarrierGatewaysRequest"},
1405
+ "output":{"shape":"DescribeCarrierGatewaysResult"}
1406
+ },
1380
1407
  "DescribeClassicLinkInstances":{
1381
1408
  "name":"DescribeClassicLinkInstances",
1382
1409
  "http":{
@@ -3912,6 +3939,10 @@
3912
3939
  "CustomerOwnedIpv4Pool":{
3913
3940
  "shape":"String",
3914
3941
  "locationName":"customerOwnedIpv4Pool"
3942
+ },
3943
+ "CarrierIp":{
3944
+ "shape":"String",
3945
+ "locationName":"carrierIp"
3915
3946
  }
3916
3947
  }
3917
3948
  },
@@ -3990,6 +4021,10 @@
3990
4021
  "CustomerOwnedIpv4Pool":{
3991
4022
  "shape":"String",
3992
4023
  "locationName":"customerOwnedIpv4Pool"
4024
+ },
4025
+ "CarrierIp":{
4026
+ "shape":"String",
4027
+ "locationName":"carrierIp"
3993
4028
  }
3994
4029
  }
3995
4030
  },
@@ -5605,6 +5640,57 @@
5605
5640
  "dedicated"
5606
5641
  ]
5607
5642
  },
5643
+ "CarrierGateway":{
5644
+ "type":"structure",
5645
+ "members":{
5646
+ "CarrierGatewayId":{
5647
+ "shape":"CarrierGatewayId",
5648
+ "locationName":"carrierGatewayId"
5649
+ },
5650
+ "VpcId":{
5651
+ "shape":"VpcId",
5652
+ "locationName":"vpcId"
5653
+ },
5654
+ "State":{
5655
+ "shape":"CarrierGatewayState",
5656
+ "locationName":"state"
5657
+ },
5658
+ "OwnerId":{
5659
+ "shape":"String",
5660
+ "locationName":"ownerId"
5661
+ },
5662
+ "Tags":{
5663
+ "shape":"TagList",
5664
+ "locationName":"tagSet"
5665
+ }
5666
+ }
5667
+ },
5668
+ "CarrierGatewayId":{"type":"string"},
5669
+ "CarrierGatewayIdSet":{
5670
+ "type":"list",
5671
+ "member":{"shape":"CarrierGatewayId"}
5672
+ },
5673
+ "CarrierGatewayMaxResults":{
5674
+ "type":"integer",
5675
+ "max":1000,
5676
+ "min":5
5677
+ },
5678
+ "CarrierGatewaySet":{
5679
+ "type":"list",
5680
+ "member":{
5681
+ "shape":"CarrierGateway",
5682
+ "locationName":"item"
5683
+ }
5684
+ },
5685
+ "CarrierGatewayState":{
5686
+ "type":"string",
5687
+ "enum":[
5688
+ "pending",
5689
+ "available",
5690
+ "deleting",
5691
+ "deleted"
5692
+ ]
5693
+ },
5608
5694
  "CertificateAuthentication":{
5609
5695
  "type":"structure",
5610
5696
  "members":{
@@ -6495,6 +6581,31 @@
6495
6581
  }
6496
6582
  }
6497
6583
  },
6584
+ "CreateCarrierGatewayRequest":{
6585
+ "type":"structure",
6586
+ "required":["VpcId"],
6587
+ "members":{
6588
+ "VpcId":{"shape":"VpcId"},
6589
+ "TagSpecifications":{
6590
+ "shape":"TagSpecificationList",
6591
+ "locationName":"TagSpecification"
6592
+ },
6593
+ "DryRun":{"shape":"Boolean"},
6594
+ "ClientToken":{
6595
+ "shape":"String",
6596
+ "idempotencyToken":true
6597
+ }
6598
+ }
6599
+ },
6600
+ "CreateCarrierGatewayResult":{
6601
+ "type":"structure",
6602
+ "members":{
6603
+ "CarrierGateway":{
6604
+ "shape":"CarrierGateway",
6605
+ "locationName":"carrierGateway"
6606
+ }
6607
+ }
6608
+ },
6498
6609
  "CreateClientVpnEndpointRequest":{
6499
6610
  "type":"structure",
6500
6611
  "required":[
@@ -7419,6 +7530,7 @@
7419
7530
  },
7420
7531
  "TransitGatewayId":{"shape":"TransitGatewayId"},
7421
7532
  "LocalGatewayId":{"shape":"LocalGatewayId"},
7533
+ "CarrierGatewayId":{"shape":"CarrierGatewayId"},
7422
7534
  "NetworkInterfaceId":{
7423
7535
  "shape":"NetworkInterfaceId",
7424
7536
  "locationName":"networkInterfaceId"
@@ -8320,6 +8432,23 @@
8320
8432
  ]
8321
8433
  },
8322
8434
  "DefaultingDhcpOptionsId":{"type":"string"},
8435
+ "DeleteCarrierGatewayRequest":{
8436
+ "type":"structure",
8437
+ "required":["CarrierGatewayId"],
8438
+ "members":{
8439
+ "CarrierGatewayId":{"shape":"CarrierGatewayId"},
8440
+ "DryRun":{"shape":"Boolean"}
8441
+ }
8442
+ },
8443
+ "DeleteCarrierGatewayResult":{
8444
+ "type":"structure",
8445
+ "members":{
8446
+ "CarrierGateway":{
8447
+ "shape":"CarrierGateway",
8448
+ "locationName":"carrierGateway"
8449
+ }
8450
+ }
8451
+ },
8323
8452
  "DeleteClientVpnEndpointRequest":{
8324
8453
  "type":"structure",
8325
8454
  "required":["ClientVpnEndpointId"],
@@ -9549,6 +9678,35 @@
9549
9678
  }
9550
9679
  }
9551
9680
  },
9681
+ "DescribeCarrierGatewaysRequest":{
9682
+ "type":"structure",
9683
+ "members":{
9684
+ "CarrierGatewayIds":{
9685
+ "shape":"CarrierGatewayIdSet",
9686
+ "locationName":"CarrierGatewayId"
9687
+ },
9688
+ "Filters":{
9689
+ "shape":"FilterList",
9690
+ "locationName":"Filter"
9691
+ },
9692
+ "MaxResults":{"shape":"CarrierGatewayMaxResults"},
9693
+ "NextToken":{"shape":"String"},
9694
+ "DryRun":{"shape":"Boolean"}
9695
+ }
9696
+ },
9697
+ "DescribeCarrierGatewaysResult":{
9698
+ "type":"structure",
9699
+ "members":{
9700
+ "CarrierGateways":{
9701
+ "shape":"CarrierGatewaySet",
9702
+ "locationName":"carrierGatewaySet"
9703
+ },
9704
+ "NextToken":{
9705
+ "shape":"String",
9706
+ "locationName":"nextToken"
9707
+ }
9708
+ }
9709
+ },
9552
9710
  "DescribeClassicLinkInstancesMaxResults":{
9553
9711
  "type":"integer",
9554
9712
  "max":1000,
@@ -17892,6 +18050,10 @@
17892
18050
  "InstanceNetworkInterfaceAssociation":{
17893
18051
  "type":"structure",
17894
18052
  "members":{
18053
+ "CarrierIp":{
18054
+ "shape":"String",
18055
+ "locationName":"carrierIp"
18056
+ },
17895
18057
  "IpOwnerId":{
17896
18058
  "shape":"String",
17897
18059
  "locationName":"ipOwnerId"
@@ -17991,6 +18153,7 @@
17991
18153
  "shape":"String",
17992
18154
  "locationName":"subnetId"
17993
18155
  },
18156
+ "AssociateCarrierIpAddress":{"shape":"Boolean"},
17994
18157
  "InterfaceType":{"shape":"String"}
17995
18158
  }
17996
18159
  },
@@ -19518,6 +19681,10 @@
19518
19681
  "LaunchTemplateInstanceNetworkInterfaceSpecification":{
19519
19682
  "type":"structure",
19520
19683
  "members":{
19684
+ "AssociateCarrierIpAddress":{
19685
+ "shape":"Boolean",
19686
+ "locationName":"associateCarrierIpAddress"
19687
+ },
19521
19688
  "AssociatePublicIpAddress":{
19522
19689
  "shape":"Boolean",
19523
19690
  "locationName":"associatePublicIpAddress"
@@ -19582,6 +19749,7 @@
19582
19749
  "LaunchTemplateInstanceNetworkInterfaceSpecificationRequest":{
19583
19750
  "type":"structure",
19584
19751
  "members":{
19752
+ "AssociateCarrierIpAddress":{"shape":"Boolean"},
19585
19753
  "AssociatePublicIpAddress":{"shape":"Boolean"},
19586
19754
  "DeleteOnTermination":{"shape":"Boolean"},
19587
19755
  "Description":{"shape":"String"},
@@ -21895,6 +22063,10 @@
21895
22063
  "PublicIp":{
21896
22064
  "shape":"String",
21897
22065
  "locationName":"publicIp"
22066
+ },
22067
+ "CarrierIp":{
22068
+ "shape":"String",
22069
+ "locationName":"carrierIp"
21898
22070
  }
21899
22071
  }
21900
22072
  },
@@ -23762,6 +23934,7 @@
23762
23934
  },
23763
23935
  "TransitGatewayId":{"shape":"TransitGatewayId"},
23764
23936
  "LocalGatewayId":{"shape":"LocalGatewayId"},
23937
+ "CarrierGatewayId":{"shape":"CarrierGatewayId"},
23765
23938
  "NetworkInterfaceId":{
23766
23939
  "shape":"NetworkInterfaceId",
23767
23940
  "locationName":"networkInterfaceId"
@@ -25092,6 +25265,10 @@
25092
25265
  "shape":"String",
25093
25266
  "locationName":"localGatewayId"
25094
25267
  },
25268
+ "CarrierGatewayId":{
25269
+ "shape":"CarrierGatewayId",
25270
+ "locationName":"carrierGatewayId"
25271
+ },
25095
25272
  "NetworkInterfaceId":{
25096
25273
  "shape":"String",
25097
25274
  "locationName":"networkInterfaceId"
@@ -24,6 +24,12 @@
24
24
  "output_token": "NextToken",
25
25
  "result_key": "CapacityReservations"
26
26
  },
27
+ "DescribeCarrierGateways": {
28
+ "input_token": "NextToken",
29
+ "limit_key": "MaxResults",
30
+ "output_token": "NextToken",
31
+ "result_key": "CarrierGateways"
32
+ },
27
33
  "DescribeClassicLinkInstances": {
28
34
  "input_token": "NextToken",
29
35
  "limit_key": "MaxResults",
@@ -815,6 +815,11 @@
815
815
  "messageVersion":{"shape":"MessageVersion"}
816
816
  }
817
817
  },
818
+ "ConfidenceThreshold":{
819
+ "type":"double",
820
+ "max":1,
821
+ "min":0
822
+ },
818
823
  "ConflictException":{
819
824
  "type":"structure",
820
825
  "members":{
@@ -885,6 +890,7 @@
885
890
  "version":{"shape":"Version"},
886
891
  "locale":{"shape":"Locale"},
887
892
  "childDirected":{"shape":"Boolean"},
893
+ "enableModelImprovements":{"shape":"Boolean"},
888
894
  "detectSentiment":{"shape":"Boolean"}
889
895
  }
890
896
  },
@@ -1344,6 +1350,8 @@
1344
1350
  "name":{"shape":"BotName"},
1345
1351
  "description":{"shape":"Description"},
1346
1352
  "intents":{"shape":"IntentList"},
1353
+ "enableModelImprovements":{"shape":"Boolean"},
1354
+ "nluIntentConfidenceThreshold":{"shape":"ConfidenceThreshold"},
1347
1355
  "clarificationPrompt":{"shape":"Prompt"},
1348
1356
  "abortStatement":{"shape":"Statement"},
1349
1357
  "status":{"shape":"Status"},
@@ -2123,6 +2131,8 @@
2123
2131
  },
2124
2132
  "description":{"shape":"Description"},
2125
2133
  "intents":{"shape":"IntentList"},
2134
+ "enableModelImprovements":{"shape":"Boolean"},
2135
+ "nluIntentConfidenceThreshold":{"shape":"ConfidenceThreshold"},
2126
2136
  "clarificationPrompt":{"shape":"Prompt"},
2127
2137
  "abortStatement":{"shape":"Statement"},
2128
2138
  "idleSessionTTLInSeconds":{"shape":"SessionTTL"},
@@ -2142,6 +2152,8 @@
2142
2152
  "name":{"shape":"BotName"},
2143
2153
  "description":{"shape":"Description"},
2144
2154
  "intents":{"shape":"IntentList"},
2155
+ "enableModelImprovements":{"shape":"Boolean"},
2156
+ "nluIntentConfidenceThreshold":{"shape":"ConfidenceThreshold"},
2145
2157
  "clarificationPrompt":{"shape":"Prompt"},
2146
2158
  "abortStatement":{"shape":"Statement"},
2147
2159
  "status":{"shape":"Status"},
@@ -31,17 +31,20 @@
31
31
  "type":"structure",
32
32
  "required":[
33
33
  "eventType",
34
- "properties",
35
34
  "sentAt"
36
35
  ],
37
36
  "members":{
38
37
  "eventId":{"shape":"StringType"},
39
38
  "eventType":{"shape":"StringType"},
39
+ "eventValue":{"shape":"FloatType"},
40
+ "itemId":{"shape":"ItemId"},
40
41
  "properties":{
41
42
  "shape":"EventPropertiesJSON",
42
43
  "jsonvalue":true
43
44
  },
44
- "sentAt":{"shape":"Date"}
45
+ "sentAt":{"shape":"Date"},
46
+ "recommendationId":{"shape":"RecommendationId"},
47
+ "impression":{"shape":"Impression"}
45
48
  }
46
49
  },
47
50
  "EventList":{
@@ -55,6 +58,13 @@
55
58
  "max":1024,
56
59
  "min":1
57
60
  },
61
+ "FloatType":{"type":"float"},
62
+ "Impression":{
63
+ "type":"list",
64
+ "member":{"shape":"ItemId"},
65
+ "max":25,
66
+ "min":1
67
+ },
58
68
  "InvalidInputException":{
59
69
  "type":"structure",
60
70
  "members":{
@@ -63,6 +73,11 @@
63
73
  "error":{"httpStatusCode":400},
64
74
  "exception":true
65
75
  },
76
+ "ItemId":{
77
+ "type":"string",
78
+ "max":256,
79
+ "min":1
80
+ },
66
81
  "PutEventsRequest":{
67
82
  "type":"structure",
68
83
  "required":[
@@ -77,6 +92,11 @@
77
92
  "eventList":{"shape":"EventList"}
78
93
  }
79
94
  },
95
+ "RecommendationId":{
96
+ "type":"string",
97
+ "max":40,
98
+ "min":1
99
+ },
80
100
  "StringType":{
81
101
  "type":"string",
82
102
  "max":256,
@@ -82,7 +82,8 @@
82
82
  "GetPersonalizedRankingResponse":{
83
83
  "type":"structure",
84
84
  "members":{
85
- "personalizedRanking":{"shape":"ItemList"}
85
+ "personalizedRanking":{"shape":"ItemList"},
86
+ "recommendationId":{"shape":"RecommendationID"}
86
87
  }
87
88
  },
88
89
  "GetRecommendationsRequest":{
@@ -100,7 +101,8 @@
100
101
  "GetRecommendationsResponse":{
101
102
  "type":"structure",
102
103
  "members":{
103
- "itemList":{"shape":"ItemList"}
104
+ "itemList":{"shape":"ItemList"},
105
+ "recommendationId":{"shape":"RecommendationID"}
104
106
  }
105
107
  },
106
108
  "InputList":{
@@ -134,6 +136,7 @@
134
136
  "score":{"shape":"Score"}
135
137
  }
136
138
  },
139
+ "RecommendationID":{"type":"string"},
137
140
  "ResourceNotFoundException":{
138
141
  "type":"structure",
139
142
  "members":{
@@ -167,6 +167,7 @@
167
167
  "errors":[
168
168
  {"shape":"InvalidInputException"},
169
169
  {"shape":"ResourceNotFoundException"},
170
+ {"shape":"LimitExceededException"},
170
171
  {"shape":"ResourceInUseException"}
171
172
  ]
172
173
  },
@@ -235,7 +236,8 @@
235
236
  "input":{"shape":"DeleteFilterRequest"},
236
237
  "errors":[
237
238
  {"shape":"InvalidInputException"},
238
- {"shape":"ResourceNotFoundException"}
239
+ {"shape":"ResourceNotFoundException"},
240
+ {"shape":"ResourceInUseException"}
239
241
  ]
240
242
  },
241
243
  "DeleteSchema":{
@@ -696,12 +698,19 @@
696
698
  "numResults":{"shape":"NumBatchResults"},
697
699
  "jobInput":{"shape":"BatchInferenceJobInput"},
698
700
  "jobOutput":{"shape":"BatchInferenceJobOutput"},
701
+ "batchInferenceJobConfig":{"shape":"BatchInferenceJobConfig"},
699
702
  "roleArn":{"shape":"RoleArn"},
700
703
  "status":{"shape":"Status"},
701
704
  "creationDateTime":{"shape":"Date"},
702
705
  "lastUpdatedDateTime":{"shape":"Date"}
703
706
  }
704
707
  },
708
+ "BatchInferenceJobConfig":{
709
+ "type":"structure",
710
+ "members":{
711
+ "itemExplorationConfig":{"shape":"HyperParameters"}
712
+ }
713
+ },
705
714
  "BatchInferenceJobInput":{
706
715
  "type":"structure",
707
716
  "required":["s3DataSource"],
@@ -741,6 +750,7 @@
741
750
  "campaignArn":{"shape":"Arn"},
742
751
  "solutionVersionArn":{"shape":"Arn"},
743
752
  "minProvisionedTPS":{"shape":"TransactionsPerSecond"},
753
+ "campaignConfig":{"shape":"CampaignConfig"},
744
754
  "status":{"shape":"Status"},
745
755
  "failureReason":{"shape":"FailureReason"},
746
756
  "creationDateTime":{"shape":"Date"},
@@ -748,6 +758,12 @@
748
758
  "latestCampaignUpdate":{"shape":"CampaignUpdateSummary"}
749
759
  }
750
760
  },
761
+ "CampaignConfig":{
762
+ "type":"structure",
763
+ "members":{
764
+ "itemExplorationConfig":{"shape":"HyperParameters"}
765
+ }
766
+ },
751
767
  "CampaignSummary":{
752
768
  "type":"structure",
753
769
  "members":{
@@ -764,6 +780,7 @@
764
780
  "members":{
765
781
  "solutionVersionArn":{"shape":"Arn"},
766
782
  "minProvisionedTPS":{"shape":"TransactionsPerSecond"},
783
+ "campaignConfig":{"shape":"CampaignConfig"},
767
784
  "status":{"shape":"Status"},
768
785
  "failureReason":{"shape":"FailureReason"},
769
786
  "creationDateTime":{"shape":"Date"},
@@ -833,7 +850,8 @@
833
850
  "numResults":{"shape":"NumBatchResults"},
834
851
  "jobInput":{"shape":"BatchInferenceJobInput"},
835
852
  "jobOutput":{"shape":"BatchInferenceJobOutput"},
836
- "roleArn":{"shape":"RoleArn"}
853
+ "roleArn":{"shape":"RoleArn"},
854
+ "batchInferenceJobConfig":{"shape":"BatchInferenceJobConfig"}
837
855
  }
838
856
  },
839
857
  "CreateBatchInferenceJobResponse":{
@@ -852,7 +870,8 @@
852
870
  "members":{
853
871
  "name":{"shape":"Name"},
854
872
  "solutionVersionArn":{"shape":"Arn"},
855
- "minProvisionedTPS":{"shape":"TransactionsPerSecond"}
873
+ "minProvisionedTPS":{"shape":"TransactionsPerSecond"},
874
+ "campaignConfig":{"shape":"CampaignConfig"}
856
875
  }
857
876
  },
858
877
  "CreateCampaignResponse":{
@@ -2005,7 +2024,8 @@
2005
2024
  "members":{
2006
2025
  "campaignArn":{"shape":"Arn"},
2007
2026
  "solutionVersionArn":{"shape":"Arn"},
2008
- "minProvisionedTPS":{"shape":"TransactionsPerSecond"}
2027
+ "minProvisionedTPS":{"shape":"TransactionsPerSecond"},
2028
+ "campaignConfig":{"shape":"CampaignConfig"}
2009
2029
  }
2010
2030
  },
2011
2031
  "UpdateCampaignResponse":{
@@ -133,6 +133,12 @@
133
133
  },
134
134
  "BotAlias":{"type":"string"},
135
135
  "BotName":{"type":"string"},
136
+ "BotVersion":{
137
+ "type":"string",
138
+ "max":64,
139
+ "min":1,
140
+ "pattern":"[0-9]+|\\$LATEST"
141
+ },
136
142
  "Button":{
137
143
  "type":"structure",
138
144
  "required":[
@@ -250,6 +256,7 @@
250
256
  "Failed"
251
257
  ]
252
258
  },
259
+ "Double":{"type":"double"},
253
260
  "ErrorMessage":{"type":"string"},
254
261
  "FulfillmentState":{
255
262
  "type":"string",
@@ -309,6 +316,17 @@
309
316
  }
310
317
  },
311
318
  "HttpContentType":{"type":"string"},
319
+ "IntentConfidence":{
320
+ "type":"structure",
321
+ "members":{
322
+ "score":{"shape":"Double"}
323
+ }
324
+ },
325
+ "IntentList":{
326
+ "type":"list",
327
+ "member":{"shape":"PredictedIntent"},
328
+ "max":4
329
+ },
312
330
  "IntentName":{"type":"string"},
313
331
  "IntentSummary":{
314
332
  "type":"structure",
@@ -454,6 +472,18 @@
454
472
  "location":"header",
455
473
  "locationName":"x-amz-lex-intent-name"
456
474
  },
475
+ "nluIntentConfidence":{
476
+ "shape":"String",
477
+ "jsonvalue":true,
478
+ "location":"header",
479
+ "locationName":"x-amz-lex-nlu-intent-confidence"
480
+ },
481
+ "alternativeIntents":{
482
+ "shape":"String",
483
+ "jsonvalue":true,
484
+ "location":"header",
485
+ "locationName":"x-amz-lex-alternative-intents"
486
+ },
457
487
  "slots":{
458
488
  "shape":"String",
459
489
  "jsonvalue":true,
@@ -497,6 +527,11 @@
497
527
  "locationName":"x-amz-lex-input-transcript"
498
528
  },
499
529
  "audioStream":{"shape":"BlobStream"},
530
+ "botVersion":{
531
+ "shape":"BotVersion",
532
+ "location":"header",
533
+ "locationName":"x-amz-lex-bot-version"
534
+ },
500
535
  "sessionId":{
501
536
  "shape":"String",
502
537
  "location":"header",
@@ -538,6 +573,8 @@
538
573
  "type":"structure",
539
574
  "members":{
540
575
  "intentName":{"shape":"IntentName"},
576
+ "nluIntentConfidence":{"shape":"IntentConfidence"},
577
+ "alternativeIntents":{"shape":"IntentList"},
541
578
  "slots":{"shape":"StringMap"},
542
579
  "sessionAttributes":{"shape":"StringMap"},
543
580
  "message":{"shape":"Text"},
@@ -546,7 +583,16 @@
546
583
  "dialogState":{"shape":"DialogState"},
547
584
  "slotToElicit":{"shape":"String"},
548
585
  "responseCard":{"shape":"ResponseCard"},
549
- "sessionId":{"shape":"String"}
586
+ "sessionId":{"shape":"String"},
587
+ "botVersion":{"shape":"BotVersion"}
588
+ }
589
+ },
590
+ "PredictedIntent":{
591
+ "type":"structure",
592
+ "members":{
593
+ "intentName":{"shape":"IntentName"},
594
+ "nluIntentConfidence":{"shape":"IntentConfidence"},
595
+ "slots":{"shape":"StringMap"}
550
596
  }
551
597
  },
552
598
  "PutSessionRequest":{
@@ -727,6 +727,7 @@
727
727
  "ca-central-1" : { },
728
728
  "eu-central-1" : { },
729
729
  "eu-north-1" : { },
730
+ "eu-south-1" : { },
730
731
  "eu-west-1" : { },
731
732
  "eu-west-2" : { },
732
733
  "eu-west-3" : { },
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.560'
2
+ VERSION = '2.11.561'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.560
4
+ version: 2.11.561
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-05 00:00:00.000000000 Z
11
+ date: 2020-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath