aws-sdk 2.1604.0 → 2.1606.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. package/README.md +1 -1
  2. package/apis/bedrock-2023-04-20.min.json +1059 -90
  3. package/apis/bedrock-2023-04-20.paginators.json +12 -0
  4. package/apis/bedrock-agent-2023-06-05.min.json +41 -34
  5. package/apis/bedrock-agent-runtime-2023-07-26.min.json +68 -7
  6. package/apis/bedrock-runtime-2023-09-30.min.json +24 -0
  7. package/apis/ce-2017-10-25.min.json +2 -1
  8. package/apis/datasync-2018-11-09.min.json +46 -35
  9. package/apis/ec2-2016-11-15.min.json +146 -82
  10. package/apis/emr-containers-2020-10-01.min.json +182 -19
  11. package/apis/emr-containers-2020-10-01.paginators.json +6 -0
  12. package/apis/entityresolution-2018-05-10.min.json +165 -93
  13. package/apis/gamelift-2015-10-01.min.json +586 -188
  14. package/apis/gamelift-2015-10-01.paginators.json +6 -0
  15. package/apis/ssm-2014-11-06.min.json +235 -129
  16. package/apis/ssm-2014-11-06.paginators.json +6 -0
  17. package/apis/workspaces-web-2020-07-08.min.json +84 -43
  18. package/clients/bedrock.d.ts +1082 -118
  19. package/clients/bedrockagent.d.ts +24 -2
  20. package/clients/bedrockagentruntime.d.ts +65 -1
  21. package/clients/bedrockruntime.d.ts +37 -10
  22. package/clients/costexplorer.d.ts +11 -7
  23. package/clients/datasync.d.ts +67 -42
  24. package/clients/ec2.d.ts +112 -40
  25. package/clients/emrcontainers.d.ts +205 -0
  26. package/clients/entityresolution.d.ts +64 -0
  27. package/clients/gamelift.d.ts +592 -88
  28. package/clients/pi.d.ts +5 -5
  29. package/clients/rds.d.ts +1 -1
  30. package/clients/ssm.d.ts +186 -6
  31. package/clients/workspacesweb.d.ts +89 -23
  32. package/dist/aws-sdk-core-react-native.js +1 -1
  33. package/dist/aws-sdk-react-native.js +17 -17
  34. package/dist/aws-sdk.js +984 -403
  35. package/dist/aws-sdk.min.js +78 -78
  36. package/lib/core.js +1 -1
  37. package/package.json +1 -1
@@ -127,6 +127,39 @@
127
127
  }
128
128
  }
129
129
  },
130
+ "CreateSecurityConfiguration": {
131
+ "http": {
132
+ "requestUri": "/securityconfigurations"
133
+ },
134
+ "input": {
135
+ "type": "structure",
136
+ "required": [
137
+ "clientToken",
138
+ "name",
139
+ "securityConfigurationData"
140
+ ],
141
+ "members": {
142
+ "clientToken": {
143
+ "idempotencyToken": true
144
+ },
145
+ "name": {},
146
+ "securityConfigurationData": {
147
+ "shape": "S1l"
148
+ },
149
+ "tags": {
150
+ "shape": "Sx"
151
+ }
152
+ }
153
+ },
154
+ "output": {
155
+ "type": "structure",
156
+ "members": {
157
+ "id": {},
158
+ "name": {},
159
+ "arn": {}
160
+ }
161
+ }
162
+ },
130
163
  "CreateVirtualCluster": {
131
164
  "http": {
132
165
  "requestUri": "/virtualclusters"
@@ -141,14 +174,15 @@
141
174
  "members": {
142
175
  "name": {},
143
176
  "containerProvider": {
144
- "shape": "S1l"
177
+ "shape": "S20"
145
178
  },
146
179
  "clientToken": {
147
180
  "idempotencyToken": true
148
181
  },
149
182
  "tags": {
150
183
  "shape": "Sx"
151
- }
184
+ },
185
+ "securityConfigurationId": {}
152
186
  }
153
187
  },
154
188
  "output": {
@@ -264,7 +298,7 @@
264
298
  "type": "structure",
265
299
  "members": {
266
300
  "jobRun": {
267
- "shape": "S21"
301
+ "shape": "S2e"
268
302
  }
269
303
  }
270
304
  }
@@ -290,7 +324,7 @@
290
324
  "type": "structure",
291
325
  "members": {
292
326
  "jobTemplate": {
293
- "shape": "S2b"
327
+ "shape": "S2o"
294
328
  }
295
329
  }
296
330
  }
@@ -321,7 +355,33 @@
321
355
  "type": "structure",
322
356
  "members": {
323
357
  "endpoint": {
324
- "shape": "S2f"
358
+ "shape": "S2s"
359
+ }
360
+ }
361
+ }
362
+ },
363
+ "DescribeSecurityConfiguration": {
364
+ "http": {
365
+ "method": "GET",
366
+ "requestUri": "/securityconfigurations/{securityConfigurationId}"
367
+ },
368
+ "input": {
369
+ "type": "structure",
370
+ "required": [
371
+ "id"
372
+ ],
373
+ "members": {
374
+ "id": {
375
+ "location": "uri",
376
+ "locationName": "securityConfigurationId"
377
+ }
378
+ }
379
+ },
380
+ "output": {
381
+ "type": "structure",
382
+ "members": {
383
+ "securityConfiguration": {
384
+ "shape": "S2z"
325
385
  }
326
386
  }
327
387
  }
@@ -347,7 +407,7 @@
347
407
  "type": "structure",
348
408
  "members": {
349
409
  "virtualCluster": {
350
- "shape": "S2m"
410
+ "shape": "S32"
351
411
  }
352
412
  }
353
413
  }
@@ -456,7 +516,7 @@
456
516
  "jobRuns": {
457
517
  "type": "list",
458
518
  "member": {
459
- "shape": "S21"
519
+ "shape": "S2e"
460
520
  }
461
521
  },
462
522
  "nextToken": {}
@@ -498,7 +558,7 @@
498
558
  "templates": {
499
559
  "type": "list",
500
560
  "member": {
501
- "shape": "S2b"
561
+ "shape": "S2o"
502
562
  }
503
563
  },
504
564
  "nextToken": {}
@@ -559,7 +619,49 @@
559
619
  "endpoints": {
560
620
  "type": "list",
561
621
  "member": {
562
- "shape": "S2f"
622
+ "shape": "S2s"
623
+ }
624
+ },
625
+ "nextToken": {}
626
+ }
627
+ }
628
+ },
629
+ "ListSecurityConfigurations": {
630
+ "http": {
631
+ "method": "GET",
632
+ "requestUri": "/securityconfigurations"
633
+ },
634
+ "input": {
635
+ "type": "structure",
636
+ "members": {
637
+ "createdAfter": {
638
+ "shape": "S13",
639
+ "location": "querystring",
640
+ "locationName": "createdAfter"
641
+ },
642
+ "createdBefore": {
643
+ "shape": "S13",
644
+ "location": "querystring",
645
+ "locationName": "createdBefore"
646
+ },
647
+ "maxResults": {
648
+ "location": "querystring",
649
+ "locationName": "maxResults",
650
+ "type": "integer"
651
+ },
652
+ "nextToken": {
653
+ "location": "querystring",
654
+ "locationName": "nextToken"
655
+ }
656
+ }
657
+ },
658
+ "output": {
659
+ "type": "structure",
660
+ "members": {
661
+ "securityConfigurations": {
662
+ "type": "list",
663
+ "member": {
664
+ "shape": "S2z"
563
665
  }
564
666
  },
565
667
  "nextToken": {}
@@ -646,7 +748,7 @@
646
748
  "virtualClusters": {
647
749
  "type": "list",
648
750
  "member": {
649
- "shape": "S2m"
751
+ "shape": "S32"
650
752
  }
651
753
  },
652
754
  "nextToken": {}
@@ -690,7 +792,7 @@
690
792
  "value": {}
691
793
  },
692
794
  "retryPolicyConfiguration": {
693
- "shape": "S26"
795
+ "shape": "S2j"
694
796
  }
695
797
  }
696
798
  },
@@ -936,6 +1038,48 @@
936
1038
  }
937
1039
  },
938
1040
  "S1l": {
1041
+ "type": "structure",
1042
+ "members": {
1043
+ "authorizationConfiguration": {
1044
+ "type": "structure",
1045
+ "members": {
1046
+ "lakeFormationConfiguration": {
1047
+ "type": "structure",
1048
+ "members": {
1049
+ "authorizedSessionTagValue": {},
1050
+ "secureNamespaceInfo": {
1051
+ "type": "structure",
1052
+ "members": {
1053
+ "clusterId": {},
1054
+ "namespace": {}
1055
+ }
1056
+ },
1057
+ "queryEngineRoleArn": {}
1058
+ }
1059
+ },
1060
+ "encryptionConfiguration": {
1061
+ "type": "structure",
1062
+ "members": {
1063
+ "inTransitEncryptionConfiguration": {
1064
+ "type": "structure",
1065
+ "members": {
1066
+ "tlsCertificateConfiguration": {
1067
+ "type": "structure",
1068
+ "members": {
1069
+ "certificateProviderType": {},
1070
+ "publicCertificateSecretArn": {},
1071
+ "privateCertificateSecretArn": {}
1072
+ }
1073
+ }
1074
+ }
1075
+ }
1076
+ }
1077
+ }
1078
+ }
1079
+ }
1080
+ }
1081
+ },
1082
+ "S20": {
939
1083
  "type": "structure",
940
1084
  "required": [
941
1085
  "type",
@@ -958,7 +1102,7 @@
958
1102
  }
959
1103
  }
960
1104
  },
961
- "S21": {
1105
+ "S2e": {
962
1106
  "type": "structure",
963
1107
  "members": {
964
1108
  "id": {},
@@ -988,7 +1132,7 @@
988
1132
  "shape": "Sx"
989
1133
  },
990
1134
  "retryPolicyConfiguration": {
991
- "shape": "S26"
1135
+ "shape": "S2j"
992
1136
  },
993
1137
  "retryPolicyExecution": {
994
1138
  "type": "structure",
@@ -1003,7 +1147,7 @@
1003
1147
  }
1004
1148
  }
1005
1149
  },
1006
- "S26": {
1150
+ "S2j": {
1007
1151
  "type": "structure",
1008
1152
  "required": [
1009
1153
  "maxAttempts"
@@ -1014,7 +1158,7 @@
1014
1158
  }
1015
1159
  }
1016
1160
  },
1017
- "S2b": {
1161
+ "S2o": {
1018
1162
  "type": "structure",
1019
1163
  "required": [
1020
1164
  "jobTemplateData"
@@ -1037,7 +1181,7 @@
1037
1181
  "decryptionError": {}
1038
1182
  }
1039
1183
  },
1040
- "S2f": {
1184
+ "S2s": {
1041
1185
  "type": "structure",
1042
1186
  "members": {
1043
1187
  "id": {},
@@ -1078,7 +1222,25 @@
1078
1222
  }
1079
1223
  }
1080
1224
  },
1081
- "S2m": {
1225
+ "S2z": {
1226
+ "type": "structure",
1227
+ "members": {
1228
+ "id": {},
1229
+ "name": {},
1230
+ "arn": {},
1231
+ "createdAt": {
1232
+ "shape": "S13"
1233
+ },
1234
+ "createdBy": {},
1235
+ "securityConfigurationData": {
1236
+ "shape": "S1l"
1237
+ },
1238
+ "tags": {
1239
+ "shape": "Sx"
1240
+ }
1241
+ }
1242
+ },
1243
+ "S32": {
1082
1244
  "type": "structure",
1083
1245
  "members": {
1084
1246
  "id": {},
@@ -1086,14 +1248,15 @@
1086
1248
  "arn": {},
1087
1249
  "state": {},
1088
1250
  "containerProvider": {
1089
- "shape": "S1l"
1251
+ "shape": "S20"
1090
1252
  },
1091
1253
  "createdAt": {
1092
1254
  "shape": "S13"
1093
1255
  },
1094
1256
  "tags": {
1095
1257
  "shape": "Sx"
1096
- }
1258
+ },
1259
+ "securityConfigurationId": {}
1097
1260
  }
1098
1261
  }
1099
1262
  }
@@ -18,6 +18,12 @@
18
18
  "limit_key": "maxResults",
19
19
  "result_key": "endpoints"
20
20
  },
21
+ "ListSecurityConfigurations": {
22
+ "input_token": "nextToken",
23
+ "output_token": "nextToken",
24
+ "limit_key": "maxResults",
25
+ "result_key": "securityConfigurations"
26
+ },
21
27
  "ListVirtualClusters": {
22
28
  "input_token": "nextToken",
23
29
  "output_token": "nextToken",