aws-sdk 2.1391.0 → 2.1393.0

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.
Files changed (35) hide show
  1. package/CHANGELOG.md +19 -1
  2. package/README.md +1 -1
  3. package/apis/customer-profiles-2020-08-15.min.json +252 -52
  4. package/apis/customer-profiles-2020-08-15.paginators.json +6 -0
  5. package/apis/emr-containers-2020-10-01.min.json +31 -18
  6. package/apis/inspector2-2020-06-08.min.json +29 -12
  7. package/apis/iot-2015-05-28.min.json +714 -214
  8. package/apis/iot-2015-05-28.paginators.json +12 -0
  9. package/apis/logs-2014-03-28.min.json +99 -16
  10. package/apis/models.lex.v2-2020-08-07.min.json +1496 -286
  11. package/apis/models.lex.v2-2020-08-07.paginators.json +20 -0
  12. package/apis/quicksight-2018-04-01.min.json +625 -594
  13. package/apis/signer-2017-08-25.min.json +105 -16
  14. package/apis/sqs-2012-11-05.min.json +120 -31
  15. package/clients/cloudformation.d.ts +24 -24
  16. package/clients/cloudwatchlogs.d.ts +132 -18
  17. package/clients/connect.d.ts +3 -3
  18. package/clients/customerprofiles.d.ts +201 -0
  19. package/clients/directconnect.d.ts +6 -6
  20. package/clients/emr.d.ts +2 -2
  21. package/clients/emrcontainers.d.ts +16 -0
  22. package/clients/iam.d.ts +7 -7
  23. package/clients/inspector2.d.ts +20 -1
  24. package/clients/iot.d.ts +500 -3
  25. package/clients/iotdeviceadvisor.d.ts +2 -2
  26. package/clients/lexmodelsv2.d.ts +1516 -127
  27. package/clients/quicksight.d.ts +50 -14
  28. package/clients/signer.d.ts +90 -5
  29. package/clients/sqs.d.ts +151 -39
  30. package/dist/aws-sdk-core-react-native.js +1 -1
  31. package/dist/aws-sdk-react-native.js +13 -13
  32. package/dist/aws-sdk.js +948 -264
  33. package/dist/aws-sdk.min.js +48 -48
  34. package/lib/core.js +1 -1
  35. package/package.json +1 -1
@@ -766,6 +766,9 @@
766
766
  },
767
767
  "schedulingConfig": {
768
768
  "shape": "S54"
769
+ },
770
+ "destinationPackageVersions": {
771
+ "shape": "S5b"
769
772
  }
770
773
  }
771
774
  },
@@ -818,6 +821,9 @@
818
821
  },
819
822
  "maintenanceWindows": {
820
823
  "shape": "S57"
824
+ },
825
+ "destinationPackageVersions": {
826
+ "shape": "S5b"
821
827
  }
822
828
  }
823
829
  },
@@ -850,7 +856,7 @@
850
856
  "certificateId": {},
851
857
  "certificatePem": {},
852
858
  "keyPair": {
853
- "shape": "S5h"
859
+ "shape": "S5j"
854
860
  }
855
861
  }
856
862
  }
@@ -873,7 +879,7 @@
873
879
  },
874
880
  "roleArn": {},
875
881
  "actionParams": {
876
- "shape": "S5m"
882
+ "shape": "S5o"
877
883
  },
878
884
  "tags": {
879
885
  "shape": "S2e"
@@ -907,17 +913,17 @@
907
913
  },
908
914
  "description": {},
909
915
  "targets": {
910
- "shape": "S66"
916
+ "shape": "S68"
911
917
  },
912
918
  "protocols": {
913
- "shape": "S68"
919
+ "shape": "S6a"
914
920
  },
915
921
  "targetSelection": {},
916
922
  "awsJobExecutionsRolloutConfig": {
917
- "shape": "S6a"
923
+ "shape": "S6c"
918
924
  },
919
925
  "awsJobPresignedUrlConfig": {
920
- "shape": "S6h"
926
+ "shape": "S6j"
921
927
  },
922
928
  "awsJobAbortConfig": {
923
929
  "type": "structure",
@@ -958,11 +964,11 @@
958
964
  }
959
965
  },
960
966
  "files": {
961
- "shape": "S6s"
967
+ "shape": "S6u"
962
968
  },
963
969
  "roleArn": {},
964
970
  "additionalParameters": {
965
- "shape": "S7q"
971
+ "shape": "S7s"
966
972
  },
967
973
  "tags": {
968
974
  "shape": "S2e"
@@ -980,6 +986,102 @@
980
986
  }
981
987
  }
982
988
  },
989
+ "CreatePackage": {
990
+ "http": {
991
+ "method": "PUT",
992
+ "requestUri": "/packages/{packageName}",
993
+ "responseCode": 200
994
+ },
995
+ "input": {
996
+ "type": "structure",
997
+ "required": [
998
+ "packageName"
999
+ ],
1000
+ "members": {
1001
+ "packageName": {
1002
+ "location": "uri",
1003
+ "locationName": "packageName"
1004
+ },
1005
+ "description": {
1006
+ "shape": "S80"
1007
+ },
1008
+ "tags": {
1009
+ "shape": "S81"
1010
+ },
1011
+ "clientToken": {
1012
+ "idempotencyToken": true,
1013
+ "location": "querystring",
1014
+ "locationName": "clientToken"
1015
+ }
1016
+ }
1017
+ },
1018
+ "output": {
1019
+ "type": "structure",
1020
+ "members": {
1021
+ "packageName": {},
1022
+ "packageArn": {},
1023
+ "description": {
1024
+ "shape": "S80"
1025
+ }
1026
+ }
1027
+ },
1028
+ "idempotent": true
1029
+ },
1030
+ "CreatePackageVersion": {
1031
+ "http": {
1032
+ "method": "PUT",
1033
+ "requestUri": "/packages/{packageName}/versions/{versionName}",
1034
+ "responseCode": 200
1035
+ },
1036
+ "input": {
1037
+ "type": "structure",
1038
+ "required": [
1039
+ "packageName",
1040
+ "versionName"
1041
+ ],
1042
+ "members": {
1043
+ "packageName": {
1044
+ "location": "uri",
1045
+ "locationName": "packageName"
1046
+ },
1047
+ "versionName": {
1048
+ "location": "uri",
1049
+ "locationName": "versionName"
1050
+ },
1051
+ "description": {
1052
+ "shape": "S80"
1053
+ },
1054
+ "attributes": {
1055
+ "shape": "S87"
1056
+ },
1057
+ "tags": {
1058
+ "shape": "S81"
1059
+ },
1060
+ "clientToken": {
1061
+ "idempotencyToken": true,
1062
+ "location": "querystring",
1063
+ "locationName": "clientToken"
1064
+ }
1065
+ }
1066
+ },
1067
+ "output": {
1068
+ "type": "structure",
1069
+ "members": {
1070
+ "packageVersionArn": {},
1071
+ "packageName": {},
1072
+ "versionName": {},
1073
+ "description": {
1074
+ "shape": "S80"
1075
+ },
1076
+ "attributes": {
1077
+ "shape": "S87"
1078
+ },
1079
+ "status": {},
1080
+ "errorReason": {}
1081
+ }
1082
+ },
1083
+ "idempotent": true
1084
+ },
983
1085
  "CreatePolicy": {
984
1086
  "http": {
985
1087
  "requestUri": "/policies/{policyName}"
@@ -1068,7 +1170,7 @@
1068
1170
  "certificateId": {},
1069
1171
  "certificatePem": {},
1070
1172
  "keyPair": {
1071
- "shape": "S5h"
1173
+ "shape": "S5j"
1072
1174
  },
1073
1175
  "expiration": {
1074
1176
  "type": "timestamp"
@@ -1096,7 +1198,7 @@
1096
1198
  },
1097
1199
  "provisioningRoleArn": {},
1098
1200
  "preProvisioningHook": {
1099
- "shape": "S8c"
1201
+ "shape": "S8t"
1100
1202
  },
1101
1203
  "tags": {
1102
1204
  "shape": "S2e"
@@ -1200,7 +1302,7 @@
1200
1302
  "dayOfMonth": {},
1201
1303
  "dayOfWeek": {},
1202
1304
  "targetCheckNames": {
1203
- "shape": "S8s"
1305
+ "shape": "S99"
1204
1306
  },
1205
1307
  "scheduledAuditName": {
1206
1308
  "location": "uri",
@@ -1234,18 +1336,18 @@
1234
1336
  },
1235
1337
  "securityProfileDescription": {},
1236
1338
  "behaviors": {
1237
- "shape": "S8y"
1339
+ "shape": "S9f"
1238
1340
  },
1239
1341
  "alertTargets": {
1240
- "shape": "S9o"
1342
+ "shape": "Sa5"
1241
1343
  },
1242
1344
  "additionalMetricsToRetain": {
1243
- "shape": "S9s",
1345
+ "shape": "Sa9",
1244
1346
  "deprecated": true,
1245
1347
  "deprecatedMessage": "Use additionalMetricsToRetainV2."
1246
1348
  },
1247
1349
  "additionalMetricsToRetainV2": {
1248
- "shape": "S9t"
1350
+ "shape": "Saa"
1249
1351
  },
1250
1352
  "tags": {
1251
1353
  "shape": "S2e"
@@ -1278,7 +1380,7 @@
1278
1380
  },
1279
1381
  "description": {},
1280
1382
  "files": {
1281
- "shape": "S9z"
1383
+ "shape": "Sag"
1282
1384
  },
1283
1385
  "roleArn": {},
1284
1386
  "tags": {
@@ -1375,7 +1477,7 @@
1375
1477
  "locationName": "thingTypeName"
1376
1478
  },
1377
1479
  "thingTypeProperties": {
1378
- "shape": "Sab"
1480
+ "shape": "Sas"
1379
1481
  },
1380
1482
  "tags": {
1381
1483
  "shape": "S2e"
@@ -1407,7 +1509,7 @@
1407
1509
  "locationName": "ruleName"
1408
1510
  },
1409
1511
  "topicRulePayload": {
1410
- "shape": "Saj"
1512
+ "shape": "Sb0"
1411
1513
  },
1412
1514
  "tags": {
1413
1515
  "location": "header",
@@ -1448,10 +1550,10 @@
1448
1550
  ],
1449
1551
  "members": {
1450
1552
  "subnetIds": {
1451
- "shape": "Sdw"
1553
+ "shape": "Sed"
1452
1554
  },
1453
1555
  "securityGroups": {
1454
- "shape": "Sdy"
1556
+ "shape": "Sef"
1455
1557
  },
1456
1558
  "vpcId": {},
1457
1559
  "roleArn": {}
@@ -1465,7 +1567,7 @@
1465
1567
  "type": "structure",
1466
1568
  "members": {
1467
1569
  "topicRuleDestination": {
1468
- "shape": "Se2"
1570
+ "shape": "Sej"
1469
1571
  }
1470
1572
  }
1471
1573
  }
@@ -1859,6 +1961,69 @@
1859
1961
  "members": {}
1860
1962
  }
1861
1963
  },
1964
+ "DeletePackage": {
1965
+ "http": {
1966
+ "method": "DELETE",
1967
+ "requestUri": "/packages/{packageName}",
1968
+ "responseCode": 200
1969
+ },
1970
+ "input": {
1971
+ "type": "structure",
1972
+ "required": [
1973
+ "packageName"
1974
+ ],
1975
+ "members": {
1976
+ "packageName": {
1977
+ "location": "uri",
1978
+ "locationName": "packageName"
1979
+ },
1980
+ "clientToken": {
1981
+ "idempotencyToken": true,
1982
+ "location": "querystring",
1983
+ "locationName": "clientToken"
1984
+ }
1985
+ }
1986
+ },
1987
+ "output": {
1988
+ "type": "structure",
1989
+ "members": {}
1990
+ },
1991
+ "idempotent": true
1992
+ },
1993
+ "DeletePackageVersion": {
1994
+ "http": {
1995
+ "method": "DELETE",
1996
+ "requestUri": "/packages/{packageName}/versions/{versionName}",
1997
+ "responseCode": 200
1998
+ },
1999
+ "input": {
2000
+ "type": "structure",
2001
+ "required": [
2002
+ "packageName",
2003
+ "versionName"
2004
+ ],
2005
+ "members": {
2006
+ "packageName": {
2007
+ "location": "uri",
2008
+ "locationName": "packageName"
2009
+ },
2010
+ "versionName": {
2011
+ "location": "uri",
2012
+ "locationName": "versionName"
2013
+ },
2014
+ "clientToken": {
2015
+ "idempotencyToken": true,
2016
+ "location": "querystring",
2017
+ "locationName": "clientToken"
2018
+ }
2019
+ }
2020
+ },
2021
+ "output": {
2022
+ "type": "structure",
2023
+ "members": {}
2024
+ },
2025
+ "idempotent": true
2026
+ },
1862
2027
  "DeletePolicy": {
1863
2028
  "http": {
1864
2029
  "method": "DELETE",
@@ -2234,10 +2399,10 @@
2234
2399
  "members": {
2235
2400
  "roleArn": {},
2236
2401
  "auditNotificationTargetConfigurations": {
2237
- "shape": "Sg2"
2402
+ "shape": "Sgn"
2238
2403
  },
2239
2404
  "auditCheckConfigurations": {
2240
- "shape": "Sg5"
2405
+ "shape": "Sgq"
2241
2406
  }
2242
2407
  }
2243
2408
  }
@@ -2263,7 +2428,7 @@
2263
2428
  "type": "structure",
2264
2429
  "members": {
2265
2430
  "finding": {
2266
- "shape": "Sga"
2431
+ "shape": "Sgv"
2267
2432
  }
2268
2433
  }
2269
2434
  }
@@ -2320,13 +2485,13 @@
2320
2485
  }
2321
2486
  },
2322
2487
  "target": {
2323
- "shape": "Sgu"
2488
+ "shape": "Shf"
2324
2489
  },
2325
2490
  "auditCheckToActionsMapping": {
2326
- "shape": "Sgy"
2491
+ "shape": "Shj"
2327
2492
  },
2328
2493
  "actionsDefinition": {
2329
- "shape": "Sh0"
2494
+ "shape": "Shl"
2330
2495
  }
2331
2496
  }
2332
2497
  }
@@ -2465,7 +2630,7 @@
2465
2630
  "type": "structure",
2466
2631
  "members": {
2467
2632
  "authorizerDescription": {
2468
- "shape": "Shr"
2633
+ "shape": "Sic"
2469
2634
  }
2470
2635
  }
2471
2636
  }
@@ -2550,13 +2715,13 @@
2550
2715
  },
2551
2716
  "generationId": {},
2552
2717
  "validity": {
2553
- "shape": "Si4"
2718
+ "shape": "Sip"
2554
2719
  },
2555
2720
  "certificateMode": {}
2556
2721
  }
2557
2722
  },
2558
2723
  "registrationConfig": {
2559
- "shape": "Si6"
2724
+ "shape": "Sir"
2560
2725
  }
2561
2726
  }
2562
2727
  }
@@ -2618,7 +2783,7 @@
2618
2783
  },
2619
2784
  "generationId": {},
2620
2785
  "validity": {
2621
- "shape": "Si4"
2786
+ "shape": "Sip"
2622
2787
  },
2623
2788
  "certificateMode": {}
2624
2789
  }
@@ -2672,7 +2837,7 @@
2672
2837
  "type": "structure",
2673
2838
  "members": {
2674
2839
  "authorizerDescription": {
2675
- "shape": "Shr"
2840
+ "shape": "Sic"
2676
2841
  }
2677
2842
  }
2678
2843
  }
@@ -2698,7 +2863,7 @@
2698
2863
  "type": "structure",
2699
2864
  "members": {
2700
2865
  "taskSummary": {
2701
- "shape": "Sij"
2866
+ "shape": "Sj4"
2702
2867
  }
2703
2868
  }
2704
2869
  }
@@ -2821,7 +2986,7 @@
2821
2986
  "type": "structure",
2822
2987
  "members": {
2823
2988
  "eventConfigurations": {
2824
- "shape": "Sj9"
2989
+ "shape": "Sju"
2825
2990
  },
2826
2991
  "creationDate": {
2827
2992
  "type": "timestamp"
@@ -3017,6 +3182,9 @@
3017
3182
  "startTime": {}
3018
3183
  }
3019
3184
  }
3185
+ },
3186
+ "destinationPackageVersions": {
3187
+ "shape": "S5b"
3020
3188
  }
3021
3189
  }
3022
3190
  }
@@ -3138,6 +3306,9 @@
3138
3306
  },
3139
3307
  "maintenanceWindows": {
3140
3308
  "shape": "S57"
3309
+ },
3310
+ "destinationPackageVersions": {
3311
+ "shape": "S5b"
3141
3312
  }
3142
3313
  }
3143
3314
  }
@@ -3171,7 +3342,7 @@
3171
3342
  "description": {},
3172
3343
  "templateVersion": {},
3173
3344
  "environments": {
3174
- "shape": "Skf"
3345
+ "shape": "Sl0"
3175
3346
  },
3176
3347
  "documentParameters": {
3177
3348
  "type": "list",
@@ -3218,7 +3389,7 @@
3218
3389
  "actionId": {},
3219
3390
  "roleArn": {},
3220
3391
  "actionParams": {
3221
- "shape": "S5m"
3392
+ "shape": "S5o"
3222
3393
  },
3223
3394
  "creationDate": {
3224
3395
  "type": "timestamp"
@@ -3267,7 +3438,7 @@
3267
3438
  },
3268
3439
  "provisioningRoleArn": {},
3269
3440
  "preProvisioningHook": {
3270
- "shape": "S8c"
3441
+ "shape": "S8t"
3271
3442
  },
3272
3443
  "type": {}
3273
3444
  }
@@ -3377,7 +3548,7 @@
3377
3548
  "dayOfMonth": {},
3378
3549
  "dayOfWeek": {},
3379
3550
  "targetCheckNames": {
3380
- "shape": "S8s"
3551
+ "shape": "S99"
3381
3552
  },
3382
3553
  "scheduledAuditName": {},
3383
3554
  "scheduledAuditArn": {}
@@ -3408,18 +3579,18 @@
3408
3579
  "securityProfileArn": {},
3409
3580
  "securityProfileDescription": {},
3410
3581
  "behaviors": {
3411
- "shape": "S8y"
3582
+ "shape": "S9f"
3412
3583
  },
3413
3584
  "alertTargets": {
3414
- "shape": "S9o"
3585
+ "shape": "Sa5"
3415
3586
  },
3416
3587
  "additionalMetricsToRetain": {
3417
- "shape": "S9s",
3588
+ "shape": "Sa9",
3418
3589
  "deprecated": true,
3419
3590
  "deprecatedMessage": "Use additionalMetricsToRetainV2."
3420
3591
  },
3421
3592
  "additionalMetricsToRetainV2": {
3422
- "shape": "S9t"
3593
+ "shape": "Saa"
3423
3594
  },
3424
3595
  "version": {
3425
3596
  "type": "long"
@@ -3463,7 +3634,7 @@
3463
3634
  },
3464
3635
  "description": {},
3465
3636
  "files": {
3466
- "shape": "S9z"
3637
+ "shape": "Sag"
3467
3638
  },
3468
3639
  "createdAt": {
3469
3640
  "type": "timestamp"
@@ -3546,7 +3717,7 @@
3546
3717
  "members": {
3547
3718
  "parentGroupName": {},
3548
3719
  "rootToParentThingGroups": {
3549
- "shape": "Sl8"
3720
+ "shape": "Slt"
3550
3721
  },
3551
3722
  "creationDate": {
3552
3723
  "type": "timestamp"
@@ -3629,10 +3800,10 @@
3629
3800
  "thingTypeId": {},
3630
3801
  "thingTypeArn": {},
3631
3802
  "thingTypeProperties": {
3632
- "shape": "Sab"
3803
+ "shape": "Sas"
3633
3804
  },
3634
3805
  "thingTypeMetadata": {
3635
- "shape": "Sll"
3806
+ "shape": "Sm6"
3636
3807
  }
3637
3808
  }
3638
3809
  }
@@ -3940,10 +4111,10 @@
3940
4111
  "type": "structure",
3941
4112
  "members": {
3942
4113
  "thingIndexingConfiguration": {
3943
- "shape": "Smk"
4114
+ "shape": "Sn5"
3944
4115
  },
3945
4116
  "thingGroupIndexingConfiguration": {
3946
- "shape": "Smw"
4117
+ "shape": "Snh"
3947
4118
  }
3948
4119
  }
3949
4120
  }
@@ -4022,20 +4193,20 @@
4022
4193
  },
4023
4194
  "description": {},
4024
4195
  "targets": {
4025
- "shape": "S66"
4196
+ "shape": "S68"
4026
4197
  },
4027
4198
  "protocols": {
4028
- "shape": "S68"
4199
+ "shape": "S6a"
4029
4200
  },
4030
4201
  "awsJobExecutionsRolloutConfig": {
4031
- "shape": "S6a"
4202
+ "shape": "S6c"
4032
4203
  },
4033
4204
  "awsJobPresignedUrlConfig": {
4034
- "shape": "S6h"
4205
+ "shape": "S6j"
4035
4206
  },
4036
4207
  "targetSelection": {},
4037
4208
  "otaUpdateFiles": {
4038
- "shape": "S6s"
4209
+ "shape": "S6u"
4039
4210
  },
4040
4211
  "otaUpdateStatus": {},
4041
4212
  "awsIotJobId": {},
@@ -4048,13 +4219,114 @@
4048
4219
  }
4049
4220
  },
4050
4221
  "additionalParameters": {
4051
- "shape": "S7q"
4222
+ "shape": "S7s"
4052
4223
  }
4053
4224
  }
4054
4225
  }
4055
4226
  }
4056
4227
  }
4057
4228
  },
4229
+ "GetPackage": {
4230
+ "http": {
4231
+ "method": "GET",
4232
+ "requestUri": "/packages/{packageName}",
4233
+ "responseCode": 200
4234
+ },
4235
+ "input": {
4236
+ "type": "structure",
4237
+ "required": [
4238
+ "packageName"
4239
+ ],
4240
+ "members": {
4241
+ "packageName": {
4242
+ "location": "uri",
4243
+ "locationName": "packageName"
4244
+ }
4245
+ }
4246
+ },
4247
+ "output": {
4248
+ "type": "structure",
4249
+ "members": {
4250
+ "packageName": {},
4251
+ "packageArn": {},
4252
+ "description": {
4253
+ "shape": "S80"
4254
+ },
4255
+ "defaultVersionName": {},
4256
+ "creationDate": {
4257
+ "type": "timestamp"
4258
+ },
4259
+ "lastModifiedDate": {
4260
+ "type": "timestamp"
4261
+ }
4262
+ }
4263
+ }
4264
+ },
4265
+ "GetPackageConfiguration": {
4266
+ "http": {
4267
+ "method": "GET",
4268
+ "requestUri": "/package-configuration",
4269
+ "responseCode": 200
4270
+ },
4271
+ "input": {
4272
+ "type": "structure",
4273
+ "members": {}
4274
+ },
4275
+ "output": {
4276
+ "type": "structure",
4277
+ "members": {
4278
+ "versionUpdateByJobsConfig": {
4279
+ "shape": "Snx"
4280
+ }
4281
+ }
4282
+ }
4283
+ },
4284
+ "GetPackageVersion": {
4285
+ "http": {
4286
+ "method": "GET",
4287
+ "requestUri": "/packages/{packageName}/versions/{versionName}",
4288
+ "responseCode": 200
4289
+ },
4290
+ "input": {
4291
+ "type": "structure",
4292
+ "required": [
4293
+ "packageName",
4294
+ "versionName"
4295
+ ],
4296
+ "members": {
4297
+ "packageName": {
4298
+ "location": "uri",
4299
+ "locationName": "packageName"
4300
+ },
4301
+ "versionName": {
4302
+ "location": "uri",
4303
+ "locationName": "versionName"
4304
+ }
4305
+ }
4306
+ },
4307
+ "output": {
4308
+ "type": "structure",
4309
+ "members": {
4310
+ "packageVersionArn": {},
4311
+ "packageName": {},
4312
+ "versionName": {},
4313
+ "description": {
4314
+ "shape": "S80"
4315
+ },
4316
+ "attributes": {
4317
+ "shape": "S87"
4318
+ },
4319
+ "status": {},
4320
+ "errorReason": {},
4321
+ "creationDate": {
4322
+ "type": "timestamp"
4323
+ },
4324
+ "lastModifiedDate": {
4325
+ "type": "timestamp"
4326
+ }
4327
+ }
4328
+ }
4329
+ },
4058
4330
  "GetPercentiles": {
4059
4331
  "http": {
4060
4332
  "requestUri": "/indices/percentiles"
@@ -4271,14 +4543,14 @@
4271
4543
  "type": "timestamp"
4272
4544
  },
4273
4545
  "actions": {
4274
- "shape": "Sam"
4546
+ "shape": "Sb3"
4275
4547
  },
4276
4548
  "ruleDisabled": {
4277
4549
  "type": "boolean"
4278
4550
  },
4279
4551
  "awsIotSqlVersion": {},
4280
4552
  "errorAction": {
4281
- "shape": "San"
4553
+ "shape": "Sb4"
4282
4554
  }
4283
4555
  }
4284
4556
  }
@@ -4306,7 +4578,7 @@
4306
4578
  "type": "structure",
4307
4579
  "members": {
4308
4580
  "topicRuleDestination": {
4309
- "shape": "Se2"
4581
+ "shape": "Sej"
4310
4582
  }
4311
4583
  }
4312
4584
  }
@@ -4383,13 +4655,13 @@
4383
4655
  "thingName": {},
4384
4656
  "securityProfileName": {},
4385
4657
  "behavior": {
4386
- "shape": "S8z"
4658
+ "shape": "S9g"
4387
4659
  },
4388
4660
  "lastViolationValue": {
4389
- "shape": "S96"
4661
+ "shape": "S9n"
4390
4662
  },
4391
4663
  "violationEventAdditionalInfo": {
4392
- "shape": "Soe"
4664
+ "shape": "Sp7"
4393
4665
  },
4394
4666
  "verificationState": {},
4395
4667
  "verificationStateDescription": {},
@@ -4440,7 +4712,7 @@
4440
4712
  "type": "structure",
4441
4713
  "members": {
4442
4714
  "policies": {
4443
- "shape": "Sol"
4715
+ "shape": "Spe"
4444
4716
  },
4445
4717
  "nextMarker": {}
4446
4718
  }
@@ -4479,7 +4751,7 @@
4479
4751
  "findings": {
4480
4752
  "type": "list",
4481
4753
  "member": {
4482
- "shape": "Sga"
4754
+ "shape": "Sgv"
4483
4755
  }
4484
4756
  },
4485
4757
  "nextToken": {}
@@ -4797,7 +5069,7 @@
4797
5069
  "billingGroups": {
4798
5070
  "type": "list",
4799
5071
  "member": {
4800
- "shape": "Sl9"
5072
+ "shape": "Slu"
4801
5073
  }
4802
5074
  },
4803
5075
  "nextToken": {}
@@ -4881,7 +5153,7 @@
4881
5153
  "type": "structure",
4882
5154
  "members": {
4883
5155
  "certificates": {
4884
- "shape": "Spn"
5156
+ "shape": "Sqg"
4885
5157
  },
4886
5158
  "nextMarker": {}
4887
5159
  }
@@ -4922,7 +5194,7 @@
4922
5194
  "type": "structure",
4923
5195
  "members": {
4924
5196
  "certificates": {
4925
- "shape": "Spn"
5197
+ "shape": "Sqg"
4926
5198
  },
4927
5199
  "nextMarker": {}
4928
5200
  }
@@ -5066,7 +5338,7 @@
5066
5338
  "tasks": {
5067
5339
  "type": "list",
5068
5340
  "member": {
5069
- "shape": "Sij"
5341
+ "shape": "Sj4"
5070
5342
  }
5071
5343
  },
5072
5344
  "nextToken": {}
@@ -5250,7 +5522,7 @@
5250
5522
  "members": {
5251
5523
  "thingArn": {},
5252
5524
  "jobExecutionSummary": {
5253
- "shape": "Sqn"
5525
+ "shape": "Srg"
5254
5526
  }
5255
5527
  }
5256
5528
  }
@@ -5307,7 +5579,7 @@
5307
5579
  "members": {
5308
5580
  "jobId": {},
5309
5581
  "jobExecutionSummary": {
5310
- "shape": "Sqn"
5582
+ "shape": "Srg"
5311
5583
  }
5312
5584
  }
5313
5585
  }
@@ -5462,7 +5734,7 @@
5462
5734
  "templateName": {},
5463
5735
  "description": {},
5464
5736
  "environments": {
5465
- "shape": "Skf"
5737
+ "shape": "Sl0"
5466
5738
  },
5467
5739
  "templateVersion": {}
5468
5740
  }
@@ -5535,7 +5807,7 @@
5535
5807
  "type": "timestamp"
5536
5808
  },
5537
5809
  "value": {
5538
- "shape": "S96"
5810
+ "shape": "S9n"
5539
5811
  }
5540
5812
  }
5541
5813
  }
@@ -5679,6 +5951,104 @@
5679
5951
  }
5680
5952
  }
5681
5953
  },
5954
+ "ListPackageVersions": {
5955
+ "http": {
5956
+ "method": "GET",
5957
+ "requestUri": "/packages/{packageName}/versions",
5958
+ "responseCode": 200
5959
+ },
5960
+ "input": {
5961
+ "type": "structure",
5962
+ "required": [
5963
+ "packageName"
5964
+ ],
5965
+ "members": {
5966
+ "packageName": {
5967
+ "location": "uri",
5968
+ "locationName": "packageName"
5969
+ },
5970
+ "status": {
5971
+ "location": "querystring",
5972
+ "locationName": "status"
5973
+ },
5974
+ "maxResults": {
5975
+ "location": "querystring",
5976
+ "locationName": "maxResults",
5977
+ "type": "integer"
5978
+ },
5979
+ "nextToken": {
5980
+ "location": "querystring",
5981
+ "locationName": "nextToken"
5982
+ }
5983
+ }
5984
+ },
5985
+ "output": {
5986
+ "type": "structure",
5987
+ "members": {
5988
+ "packageVersionSummaries": {
5989
+ "type": "list",
5990
+ "member": {
5991
+ "type": "structure",
5992
+ "members": {
5993
+ "packageName": {},
5994
+ "versionName": {},
5995
+ "status": {},
5996
+ "creationDate": {
5997
+ "type": "timestamp"
5998
+ },
5999
+ "lastModifiedDate": {
6000
+ "type": "timestamp"
6001
+ }
6002
+ }
6003
+ }
6004
+ },
6005
+ "nextToken": {}
6006
+ }
6007
+ }
6008
+ },
6009
+ "ListPackages": {
6010
+ "http": {
6011
+ "method": "GET",
6012
+ "requestUri": "/packages",
6013
+ "responseCode": 200
6014
+ },
6015
+ "input": {
6016
+ "type": "structure",
6017
+ "members": {
6018
+ "maxResults": {
6019
+ "location": "querystring",
6020
+ "locationName": "maxResults",
6021
+ "type": "integer"
6022
+ },
6023
+ "nextToken": {
6024
+ "location": "querystring",
6025
+ "locationName": "nextToken"
6026
+ }
6027
+ }
6028
+ },
6029
+ "output": {
6030
+ "type": "structure",
6031
+ "members": {
6032
+ "packageSummaries": {
6033
+ "type": "list",
6034
+ "member": {
6035
+ "type": "structure",
6036
+ "members": {
6037
+ "packageName": {},
6038
+ "defaultVersionName": {},
6039
+ "creationDate": {
6040
+ "type": "timestamp"
6041
+ },
6042
+ "lastModifiedDate": {
6043
+ "type": "timestamp"
6044
+ }
6045
+ }
6046
+ }
6047
+ },
6048
+ "nextToken": {}
6049
+ }
6050
+ }
6051
+ },
5682
6052
  "ListPolicies": {
5683
6053
  "http": {
5684
6054
  "method": "GET",
@@ -5707,7 +6077,7 @@
5707
6077
  "type": "structure",
5708
6078
  "members": {
5709
6079
  "policies": {
5710
- "shape": "Sol"
6080
+ "shape": "Spe"
5711
6081
  },
5712
6082
  "nextMarker": {}
5713
6083
  }
@@ -5748,7 +6118,7 @@
5748
6118
  "type": "structure",
5749
6119
  "members": {
5750
6120
  "principals": {
5751
- "shape": "Srp"
6121
+ "shape": "Ssr"
5752
6122
  },
5753
6123
  "nextMarker": {}
5754
6124
  }
@@ -5828,7 +6198,7 @@
5828
6198
  "type": "structure",
5829
6199
  "members": {
5830
6200
  "policies": {
5831
- "shape": "Sol"
6201
+ "shape": "Spe"
5832
6202
  },
5833
6203
  "nextMarker": {}
5834
6204
  }
@@ -5865,7 +6235,7 @@
5865
6235
  "type": "structure",
5866
6236
  "members": {
5867
6237
  "things": {
5868
- "shape": "Srz"
6238
+ "shape": "St1"
5869
6239
  },
5870
6240
  "nextToken": {}
5871
6241
  }
@@ -5998,7 +6368,7 @@
5998
6368
  "type": "structure",
5999
6369
  "members": {
6000
6370
  "relatedResources": {
6001
- "shape": "Sgf"
6371
+ "shape": "Sh0"
6002
6372
  },
6003
6373
  "nextToken": {}
6004
6374
  }
@@ -6111,7 +6481,7 @@
6111
6481
  "securityProfileIdentifiers": {
6112
6482
  "type": "list",
6113
6483
  "member": {
6114
- "shape": "Ssk"
6484
+ "shape": "Stm"
6115
6485
  }
6116
6486
  },
6117
6487
  "nextToken": {}
@@ -6158,10 +6528,10 @@
6158
6528
  "type": "structure",
6159
6529
  "members": {
6160
6530
  "securityProfileIdentifier": {
6161
- "shape": "Ssk"
6531
+ "shape": "Stm"
6162
6532
  },
6163
6533
  "target": {
6164
- "shape": "Ssp"
6534
+ "shape": "Str"
6165
6535
  }
6166
6536
  }
6167
6537
  }
@@ -6314,7 +6684,7 @@
6314
6684
  "securityProfileTargets": {
6315
6685
  "type": "list",
6316
6686
  "member": {
6317
- "shape": "Ssp"
6687
+ "shape": "Str"
6318
6688
  }
6319
6689
  },
6320
6690
  "nextToken": {}
@@ -6357,7 +6727,7 @@
6357
6727
  "type": "structure",
6358
6728
  "members": {
6359
6729
  "thingGroups": {
6360
- "shape": "Sl8"
6730
+ "shape": "Slt"
6361
6731
  },
6362
6732
  "nextToken": {}
6363
6733
  }
@@ -6393,7 +6763,7 @@
6393
6763
  "type": "structure",
6394
6764
  "members": {
6395
6765
  "thingGroups": {
6396
- "shape": "Sl8"
6766
+ "shape": "Slt"
6397
6767
  },
6398
6768
  "nextToken": {}
6399
6769
  }
@@ -6429,7 +6799,7 @@
6429
6799
  "type": "structure",
6430
6800
  "members": {
6431
6801
  "principals": {
6432
- "shape": "Srp"
6802
+ "shape": "Ssr"
6433
6803
  },
6434
6804
  "nextToken": {}
6435
6805
  }
@@ -6546,10 +6916,10 @@
6546
6916
  "thingTypeName": {},
6547
6917
  "thingTypeArn": {},
6548
6918
  "thingTypeProperties": {
6549
- "shape": "Sab"
6919
+ "shape": "Sas"
6550
6920
  },
6551
6921
  "thingTypeMetadata": {
6552
- "shape": "Sll"
6922
+ "shape": "Sm6"
6553
6923
  }
6554
6924
  }
6555
6925
  }
@@ -6648,7 +7018,7 @@
6648
7018
  "type": "structure",
6649
7019
  "members": {
6650
7020
  "things": {
6651
- "shape": "Srz"
7021
+ "shape": "St1"
6652
7022
  },
6653
7023
  "nextToken": {}
6654
7024
  }
@@ -6689,7 +7059,7 @@
6689
7059
  "type": "structure",
6690
7060
  "members": {
6691
7061
  "things": {
6692
- "shape": "Srz"
7062
+ "shape": "St1"
6693
7063
  },
6694
7064
  "nextToken": {}
6695
7065
  }
@@ -6741,10 +7111,10 @@
6741
7111
  "type": "structure",
6742
7112
  "members": {
6743
7113
  "subnetIds": {
6744
- "shape": "Sdw"
7114
+ "shape": "Sed"
6745
7115
  },
6746
7116
  "securityGroups": {
6747
- "shape": "Sdy"
7117
+ "shape": "Sef"
6748
7118
  },
6749
7119
  "vpcId": {},
6750
7120
  "roleArn": {}
@@ -6841,7 +7211,7 @@
6841
7211
  "type": "structure",
6842
7212
  "members": {
6843
7213
  "logTarget": {
6844
- "shape": "Sud"
7214
+ "shape": "Svf"
6845
7215
  },
6846
7216
  "logLevel": {}
6847
7217
  }
@@ -6917,13 +7287,13 @@
6917
7287
  "thingName": {},
6918
7288
  "securityProfileName": {},
6919
7289
  "behavior": {
6920
- "shape": "S8z"
7290
+ "shape": "S9g"
6921
7291
  },
6922
7292
  "metricValue": {
6923
- "shape": "S96"
7293
+ "shape": "S9n"
6924
7294
  },
6925
7295
  "violationEventAdditionalInfo": {
6926
- "shape": "Soe"
7296
+ "shape": "Sp7"
6927
7297
  },
6928
7298
  "violationEventType": {},
6929
7299
  "verificationState": {},
@@ -6985,7 +7355,7 @@
6985
7355
  "type": "boolean"
6986
7356
  },
6987
7357
  "registrationConfig": {
6988
- "shape": "Si6"
7358
+ "shape": "Sir"
6989
7359
  },
6990
7360
  "tags": {
6991
7361
  "shape": "S2e"
@@ -7156,7 +7526,7 @@
7156
7526
  "locationName": "ruleName"
7157
7527
  },
7158
7528
  "topicRulePayload": {
7159
- "shape": "Saj"
7529
+ "shape": "Sb0"
7160
7530
  }
7161
7531
  },
7162
7532
  "payload": "topicRulePayload"
@@ -7194,7 +7564,7 @@
7194
7564
  "thingId": {},
7195
7565
  "thingTypeName": {},
7196
7566
  "thingGroupNames": {
7197
- "shape": "Sv9"
7567
+ "shape": "Swb"
7198
7568
  },
7199
7569
  "attributes": {
7200
7570
  "shape": "S3o"
@@ -7228,7 +7598,7 @@
7228
7598
  "shape": "S3o"
7229
7599
  },
7230
7600
  "parentGroupNames": {
7231
- "shape": "Sv9"
7601
+ "shape": "Swb"
7232
7602
  }
7233
7603
  }
7234
7604
  }
@@ -7316,7 +7686,7 @@
7316
7686
  ],
7317
7687
  "members": {
7318
7688
  "logTarget": {
7319
- "shape": "Sud"
7689
+ "shape": "Svf"
7320
7690
  },
7321
7691
  "logLevel": {}
7322
7692
  }
@@ -7355,10 +7725,10 @@
7355
7725
  "locationName": "taskId"
7356
7726
  },
7357
7727
  "target": {
7358
- "shape": "Sgu"
7728
+ "shape": "Shf"
7359
7729
  },
7360
7730
  "auditCheckToActionsMapping": {
7361
- "shape": "Sgy"
7731
+ "shape": "Shj"
7362
7732
  },
7363
7733
  "clientRequestToken": {
7364
7734
  "idempotencyToken": true
@@ -7391,14 +7761,14 @@
7391
7761
  "locationName": "taskId"
7392
7762
  },
7393
7763
  "target": {
7394
- "shape": "Sil"
7764
+ "shape": "Sj6"
7395
7765
  },
7396
7766
  "actions": {
7397
7767
  "type": "list",
7398
7768
  "member": {}
7399
7769
  },
7400
7770
  "violationEventOccurrenceRange": {
7401
- "shape": "Sio"
7771
+ "shape": "Sj9"
7402
7772
  },
7403
7773
  "includeOnlyActiveViolations": {
7404
7774
  "type": "boolean"
@@ -7429,7 +7799,7 @@
7429
7799
  ],
7430
7800
  "members": {
7431
7801
  "targetCheckNames": {
7432
- "shape": "S8s"
7802
+ "shape": "S99"
7433
7803
  }
7434
7804
  }
7435
7805
  },
@@ -7525,7 +7895,7 @@
7525
7895
  "authInfos": {
7526
7896
  "type": "list",
7527
7897
  "member": {
7528
- "shape": "Sw2"
7898
+ "shape": "Sx4"
7529
7899
  }
7530
7900
  },
7531
7901
  "clientId": {
@@ -7533,10 +7903,10 @@
7533
7903
  "locationName": "clientId"
7534
7904
  },
7535
7905
  "policyNamesToAdd": {
7536
- "shape": "Sw6"
7906
+ "shape": "Sx8"
7537
7907
  },
7538
7908
  "policyNamesToSkip": {
7539
- "shape": "Sw6"
7909
+ "shape": "Sx8"
7540
7910
  }
7541
7911
  }
7542
7912
  },
@@ -7549,13 +7919,13 @@
7549
7919
  "type": "structure",
7550
7920
  "members": {
7551
7921
  "authInfo": {
7552
- "shape": "Sw2"
7922
+ "shape": "Sx4"
7553
7923
  },
7554
7924
  "allowed": {
7555
7925
  "type": "structure",
7556
7926
  "members": {
7557
7927
  "policies": {
7558
- "shape": "Sol"
7928
+ "shape": "Spe"
7559
7929
  }
7560
7930
  }
7561
7931
  },
@@ -7566,7 +7936,7 @@
7566
7936
  "type": "structure",
7567
7937
  "members": {
7568
7938
  "policies": {
7569
- "shape": "Sol"
7939
+ "shape": "Spe"
7570
7940
  }
7571
7941
  }
7572
7942
  },
@@ -7574,7 +7944,7 @@
7574
7944
  "type": "structure",
7575
7945
  "members": {
7576
7946
  "policies": {
7577
- "shape": "Sol"
7947
+ "shape": "Spe"
7578
7948
  }
7579
7949
  }
7580
7950
  }
@@ -7719,10 +8089,10 @@
7719
8089
  "members": {
7720
8090
  "roleArn": {},
7721
8091
  "auditNotificationTargetConfigurations": {
7722
- "shape": "Sg2"
8092
+ "shape": "Sgn"
7723
8093
  },
7724
8094
  "auditCheckConfigurations": {
7725
- "shape": "Sg5"
8095
+ "shape": "Sgq"
7726
8096
  }
7727
8097
  }
7728
8098
  },
@@ -7852,7 +8222,7 @@
7852
8222
  "locationName": "newAutoRegistrationStatus"
7853
8223
  },
7854
8224
  "registrationConfig": {
7855
- "shape": "Si6"
8225
+ "shape": "Sir"
7856
8226
  },
7857
8227
  "removeAutoRegistration": {
7858
8228
  "type": "boolean"
@@ -8037,7 +8407,7 @@
8037
8407
  "type": "structure",
8038
8408
  "members": {
8039
8409
  "eventConfigurations": {
8040
- "shape": "Sj9"
8410
+ "shape": "Sju"
8041
8411
  }
8042
8412
  }
8043
8413
  },
@@ -8088,10 +8458,10 @@
8088
8458
  "type": "structure",
8089
8459
  "members": {
8090
8460
  "thingIndexingConfiguration": {
8091
- "shape": "Smk"
8461
+ "shape": "Sn5"
8092
8462
  },
8093
8463
  "thingGroupIndexingConfiguration": {
8094
- "shape": "Smw"
8464
+ "shape": "Snh"
8095
8465
  }
8096
8466
  }
8097
8467
  },
@@ -8155,7 +8525,7 @@
8155
8525
  },
8156
8526
  "roleArn": {},
8157
8527
  "actionParams": {
8158
- "shape": "S5m"
8528
+ "shape": "S5o"
8159
8529
  }
8160
8530
  }
8161
8531
  },
@@ -8167,6 +8537,108 @@
8167
8537
  }
8168
8538
  }
8169
8539
  },
8540
+ "UpdatePackage": {
8541
+ "http": {
8542
+ "method": "PATCH",
8543
+ "requestUri": "/packages/{packageName}",
8544
+ "responseCode": 200
8545
+ },
8546
+ "input": {
8547
+ "type": "structure",
8548
+ "required": [
8549
+ "packageName"
8550
+ ],
8551
+ "members": {
8552
+ "packageName": {
8553
+ "location": "uri",
8554
+ "locationName": "packageName"
8555
+ },
8556
+ "description": {
8557
+ "shape": "S80"
8558
+ },
8559
+ "defaultVersionName": {},
8560
+ "unsetDefaultVersion": {
8561
+ "type": "boolean"
8562
+ },
8563
+ "clientToken": {
8564
+ "idempotencyToken": true,
8565
+ "location": "querystring",
8566
+ "locationName": "clientToken"
8567
+ }
8568
+ }
8569
+ },
8570
+ "output": {
8571
+ "type": "structure",
8572
+ "members": {}
8573
+ },
8574
+ "idempotent": true
8575
+ },
8576
+ "UpdatePackageConfiguration": {
8577
+ "http": {
8578
+ "method": "PATCH",
8579
+ "requestUri": "/package-configuration",
8580
+ "responseCode": 200
8581
+ },
8582
+ "input": {
8583
+ "type": "structure",
8584
+ "members": {
8585
+ "versionUpdateByJobsConfig": {
8586
+ "shape": "Snx"
8587
+ },
8588
+ "clientToken": {
8589
+ "idempotencyToken": true,
8590
+ "location": "querystring",
8591
+ "locationName": "clientToken"
8592
+ }
8593
+ }
8594
+ },
8595
+ "output": {
8596
+ "type": "structure",
8597
+ "members": {}
8598
+ },
8599
+ "idempotent": true
8600
+ },
8601
+ "UpdatePackageVersion": {
8602
+ "http": {
8603
+ "method": "PATCH",
8604
+ "requestUri": "/packages/{packageName}/versions/{versionName}",
8605
+ "responseCode": 200
8606
+ },
8607
+ "input": {
8608
+ "type": "structure",
8609
+ "required": [
8610
+ "packageName",
8611
+ "versionName"
8612
+ ],
8613
+ "members": {
8614
+ "packageName": {
8615
+ "location": "uri",
8616
+ "locationName": "packageName"
8617
+ },
8618
+ "versionName": {
8619
+ "location": "uri",
8620
+ "locationName": "versionName"
8621
+ },
8622
+ "description": {
8623
+ "shape": "S80"
8624
+ },
8625
+ "attributes": {
8626
+ "shape": "S87"
8627
+ },
8628
+ "action": {},
8629
+ "clientToken": {
8630
+ "idempotencyToken": true,
8631
+ "location": "querystring",
8632
+ "locationName": "clientToken"
8633
+ }
8634
+ }
8635
+ },
8636
+ "output": {
8637
+ "type": "structure",
8638
+ "members": {}
8639
+ },
8640
+ "idempotent": true
8641
+ },
8170
8642
  "UpdateProvisioningTemplate": {
8171
8643
  "http": {
8172
8644
  "method": "PATCH",
@@ -8191,7 +8663,7 @@
8191
8663
  },
8192
8664
  "provisioningRoleArn": {},
8193
8665
  "preProvisioningHook": {
8194
- "shape": "S8c"
8666
+ "shape": "S8t"
8195
8667
  },
8196
8668
  "removePreProvisioningHook": {
8197
8669
  "type": "boolean"
@@ -8247,7 +8719,7 @@
8247
8719
  "dayOfMonth": {},
8248
8720
  "dayOfWeek": {},
8249
8721
  "targetCheckNames": {
8250
- "shape": "S8s"
8722
+ "shape": "S99"
8251
8723
  },
8252
8724
  "scheduledAuditName": {
8253
8725
  "location": "uri",
@@ -8279,18 +8751,18 @@
8279
8751
  },
8280
8752
  "securityProfileDescription": {},
8281
8753
  "behaviors": {
8282
- "shape": "S8y"
8754
+ "shape": "S9f"
8283
8755
  },
8284
8756
  "alertTargets": {
8285
- "shape": "S9o"
8757
+ "shape": "Sa5"
8286
8758
  },
8287
8759
  "additionalMetricsToRetain": {
8288
- "shape": "S9s",
8760
+ "shape": "Sa9",
8289
8761
  "deprecated": true,
8290
8762
  "deprecatedMessage": "Use additionalMetricsToRetainV2."
8291
8763
  },
8292
8764
  "additionalMetricsToRetainV2": {
8293
- "shape": "S9t"
8765
+ "shape": "Saa"
8294
8766
  },
8295
8767
  "deleteBehaviors": {
8296
8768
  "type": "boolean"
@@ -8315,18 +8787,18 @@
8315
8787
  "securityProfileArn": {},
8316
8788
  "securityProfileDescription": {},
8317
8789
  "behaviors": {
8318
- "shape": "S8y"
8790
+ "shape": "S9f"
8319
8791
  },
8320
8792
  "alertTargets": {
8321
- "shape": "S9o"
8793
+ "shape": "Sa5"
8322
8794
  },
8323
8795
  "additionalMetricsToRetain": {
8324
- "shape": "S9s",
8796
+ "shape": "Sa9",
8325
8797
  "deprecated": true,
8326
8798
  "deprecatedMessage": "Use additionalMetricsToRetainV2."
8327
8799
  },
8328
8800
  "additionalMetricsToRetainV2": {
8329
- "shape": "S9t"
8801
+ "shape": "Saa"
8330
8802
  },
8331
8803
  "version": {
8332
8804
  "type": "long"
@@ -8357,7 +8829,7 @@
8357
8829
  },
8358
8830
  "description": {},
8359
8831
  "files": {
8360
- "shape": "S9z"
8832
+ "shape": "Sag"
8361
8833
  },
8362
8834
  "roleArn": {}
8363
8835
  }
@@ -8449,10 +8921,10 @@
8449
8921
  "members": {
8450
8922
  "thingName": {},
8451
8923
  "thingGroupsToAdd": {
8452
- "shape": "Syh"
8924
+ "shape": "Szr"
8453
8925
  },
8454
8926
  "thingGroupsToRemove": {
8455
- "shape": "Syh"
8927
+ "shape": "Szr"
8456
8928
  },
8457
8929
  "overrideDynamicGroups": {
8458
8930
  "type": "boolean"
@@ -8496,7 +8968,7 @@
8496
8968
  ],
8497
8969
  "members": {
8498
8970
  "behaviors": {
8499
- "shape": "S8y"
8971
+ "shape": "S9f"
8500
8972
  }
8501
8973
  }
8502
8974
  },
@@ -8776,7 +9248,11 @@
8776
9248
  }
8777
9249
  }
8778
9250
  },
8779
- "S5h": {
9251
+ "S5b": {
9252
+ "type": "list",
9253
+ "member": {}
9254
+ },
9255
+ "S5j": {
8780
9256
  "type": "structure",
8781
9257
  "members": {
8782
9258
  "PublicKey": {},
@@ -8786,7 +9262,7 @@
8786
9262
  }
8787
9263
  }
8788
9264
  },
8789
- "S5m": {
9265
+ "S5o": {
8790
9266
  "type": "structure",
8791
9267
  "members": {
8792
9268
  "updateDeviceCertificateParams": {
@@ -8853,15 +9329,15 @@
8853
9329
  }
8854
9330
  }
8855
9331
  },
8856
- "S66": {
9332
+ "S68": {
8857
9333
  "type": "list",
8858
9334
  "member": {}
8859
9335
  },
8860
- "S68": {
9336
+ "S6a": {
8861
9337
  "type": "list",
8862
9338
  "member": {}
8863
9339
  },
8864
- "S6a": {
9340
+ "S6c": {
8865
9341
  "type": "structure",
8866
9342
  "members": {
8867
9343
  "maximumPerMinute": {
@@ -8896,7 +9372,7 @@
8896
9372
  }
8897
9373
  }
8898
9374
  },
8899
- "S6h": {
9375
+ "S6j": {
8900
9376
  "type": "structure",
8901
9377
  "members": {
8902
9378
  "expiresInSec": {
@@ -8904,7 +9380,7 @@
8904
9380
  }
8905
9381
  }
8906
9382
  },
8907
- "S6s": {
9383
+ "S6u": {
8908
9384
  "type": "list",
8909
9385
  "member": {
8910
9386
  "type": "structure",
@@ -8927,7 +9403,7 @@
8927
9403
  }
8928
9404
  },
8929
9405
  "s3Location": {
8930
- "shape": "S71"
9406
+ "shape": "S73"
8931
9407
  }
8932
9408
  }
8933
9409
  },
@@ -8993,7 +9469,7 @@
8993
9469
  }
8994
9470
  }
8995
9471
  },
8996
- "S71": {
9472
+ "S73": {
8997
9473
  "type": "structure",
8998
9474
  "members": {
8999
9475
  "bucket": {},
@@ -9001,12 +9477,27 @@
9001
9477
  "version": {}
9002
9478
  }
9003
9479
  },
9004
- "S7q": {
9480
+ "S7s": {
9005
9481
  "type": "map",
9006
9482
  "key": {},
9007
9483
  "value": {}
9008
9484
  },
9009
- "S8c": {
9485
+ "S80": {
9486
+ "type": "string",
9487
+ "sensitive": true
9488
+ },
9489
+ "S81": {
9490
+ "type": "map",
9491
+ "key": {},
9492
+ "value": {}
9493
+ },
9494
+ "S87": {
9495
+ "type": "map",
9496
+ "key": {},
9497
+ "value": {},
9498
+ "sensitive": true
9499
+ },
9500
+ "S8t": {
9010
9501
  "type": "structure",
9011
9502
  "required": [
9012
9503
  "targetArn"
@@ -9016,17 +9507,17 @@
9016
9507
  "targetArn": {}
9017
9508
  }
9018
9509
  },
9019
- "S8s": {
9510
+ "S99": {
9020
9511
  "type": "list",
9021
9512
  "member": {}
9022
9513
  },
9023
- "S8y": {
9514
+ "S9f": {
9024
9515
  "type": "list",
9025
9516
  "member": {
9026
- "shape": "S8z"
9517
+ "shape": "S9g"
9027
9518
  }
9028
9519
  },
9029
- "S8z": {
9520
+ "S9g": {
9030
9521
  "type": "structure",
9031
9522
  "required": [
9032
9523
  "name"
@@ -9035,14 +9526,14 @@
9035
9526
  "name": {},
9036
9527
  "metric": {},
9037
9528
  "metricDimension": {
9038
- "shape": "S92"
9529
+ "shape": "S9j"
9039
9530
  },
9040
9531
  "criteria": {
9041
9532
  "type": "structure",
9042
9533
  "members": {
9043
9534
  "comparisonOperator": {},
9044
9535
  "value": {
9045
- "shape": "S96"
9536
+ "shape": "S9n"
9046
9537
  },
9047
9538
  "durationSeconds": {
9048
9539
  "type": "integer"
@@ -9075,7 +9566,7 @@
9075
9566
  }
9076
9567
  }
9077
9568
  },
9078
- "S92": {
9569
+ "S9j": {
9079
9570
  "type": "structure",
9080
9571
  "required": [
9081
9572
  "dimensionName"
@@ -9085,7 +9576,7 @@
9085
9576
  "operator": {}
9086
9577
  }
9087
9578
  },
9088
- "S96": {
9579
+ "S9n": {
9089
9580
  "type": "structure",
9090
9581
  "members": {
9091
9582
  "count": {
@@ -9116,7 +9607,7 @@
9116
9607
  }
9117
9608
  }
9118
9609
  },
9119
- "S9o": {
9610
+ "Sa5": {
9120
9611
  "type": "map",
9121
9612
  "key": {},
9122
9613
  "value": {
@@ -9131,11 +9622,11 @@
9131
9622
  }
9132
9623
  }
9133
9624
  },
9134
- "S9s": {
9625
+ "Sa9": {
9135
9626
  "type": "list",
9136
9627
  "member": {}
9137
9628
  },
9138
- "S9t": {
9629
+ "Saa": {
9139
9630
  "type": "list",
9140
9631
  "member": {
9141
9632
  "type": "structure",
@@ -9145,12 +9636,12 @@
9145
9636
  "members": {
9146
9637
  "metric": {},
9147
9638
  "metricDimension": {
9148
- "shape": "S92"
9639
+ "shape": "S9j"
9149
9640
  }
9150
9641
  }
9151
9642
  }
9152
9643
  },
9153
- "S9z": {
9644
+ "Sag": {
9154
9645
  "type": "list",
9155
9646
  "member": {
9156
9647
  "type": "structure",
@@ -9159,12 +9650,12 @@
9159
9650
  "type": "integer"
9160
9651
  },
9161
9652
  "s3Location": {
9162
- "shape": "S71"
9653
+ "shape": "S73"
9163
9654
  }
9164
9655
  }
9165
9656
  }
9166
9657
  },
9167
- "Sab": {
9658
+ "Sas": {
9168
9659
  "type": "structure",
9169
9660
  "members": {
9170
9661
  "thingTypeDescription": {},
@@ -9174,7 +9665,7 @@
9174
9665
  }
9175
9666
  }
9176
9667
  },
9177
- "Saj": {
9668
+ "Sb0": {
9178
9669
  "type": "structure",
9179
9670
  "required": [
9180
9671
  "sql",
@@ -9184,24 +9675,24 @@
9184
9675
  "sql": {},
9185
9676
  "description": {},
9186
9677
  "actions": {
9187
- "shape": "Sam"
9678
+ "shape": "Sb3"
9188
9679
  },
9189
9680
  "ruleDisabled": {
9190
9681
  "type": "boolean"
9191
9682
  },
9192
9683
  "awsIotSqlVersion": {},
9193
9684
  "errorAction": {
9194
- "shape": "San"
9685
+ "shape": "Sb4"
9195
9686
  }
9196
9687
  }
9197
9688
  },
9198
- "Sam": {
9689
+ "Sb3": {
9199
9690
  "type": "list",
9200
9691
  "member": {
9201
- "shape": "San"
9692
+ "shape": "Sb4"
9202
9693
  }
9203
9694
  },
9204
- "San": {
9695
+ "Sb4": {
9205
9696
  "type": "structure",
9206
9697
  "members": {
9207
9698
  "dynamoDB": {
@@ -9674,15 +10165,15 @@
9674
10165
  }
9675
10166
  }
9676
10167
  },
9677
- "Sdw": {
10168
+ "Sed": {
9678
10169
  "type": "list",
9679
10170
  "member": {}
9680
10171
  },
9681
- "Sdy": {
10172
+ "Sef": {
9682
10173
  "type": "list",
9683
10174
  "member": {}
9684
10175
  },
9685
- "Se2": {
10176
+ "Sej": {
9686
10177
  "type": "structure",
9687
10178
  "members": {
9688
10179
  "arn": {},
@@ -9704,10 +10195,10 @@
9704
10195
  "type": "structure",
9705
10196
  "members": {
9706
10197
  "subnetIds": {
9707
- "shape": "Sdw"
10198
+ "shape": "Sed"
9708
10199
  },
9709
10200
  "securityGroups": {
9710
- "shape": "Sdy"
10201
+ "shape": "Sef"
9711
10202
  },
9712
10203
  "vpcId": {},
9713
10204
  "roleArn": {}
@@ -9715,7 +10206,7 @@
9715
10206
  }
9716
10207
  }
9717
10208
  },
9718
- "Sg2": {
10209
+ "Sgn": {
9719
10210
  "type": "map",
9720
10211
  "key": {},
9721
10212
  "value": {
@@ -9729,7 +10220,7 @@
9729
10220
  }
9730
10221
  }
9731
10222
  },
9732
- "Sg5": {
10223
+ "Sgq": {
9733
10224
  "type": "map",
9734
10225
  "key": {},
9735
10226
  "value": {
@@ -9741,7 +10232,7 @@
9741
10232
  }
9742
10233
  }
9743
10234
  },
9744
- "Sga": {
10235
+ "Sgv": {
9745
10236
  "type": "structure",
9746
10237
  "members": {
9747
10238
  "findingId": {},
@@ -9762,12 +10253,12 @@
9762
10253
  "shape": "S1o"
9763
10254
  },
9764
10255
  "additionalInfo": {
9765
- "shape": "Sge"
10256
+ "shape": "Sgz"
9766
10257
  }
9767
10258
  }
9768
10259
  },
9769
10260
  "relatedResources": {
9770
- "shape": "Sgf"
10261
+ "shape": "Sh0"
9771
10262
  },
9772
10263
  "reasonForNonCompliance": {},
9773
10264
  "reasonForNonComplianceCode": {},
@@ -9776,12 +10267,12 @@
9776
10267
  }
9777
10268
  }
9778
10269
  },
9779
- "Sge": {
10270
+ "Sgz": {
9780
10271
  "type": "map",
9781
10272
  "key": {},
9782
10273
  "value": {}
9783
10274
  },
9784
- "Sgf": {
10275
+ "Sh0": {
9785
10276
  "type": "list",
9786
10277
  "member": {
9787
10278
  "type": "structure",
@@ -9791,12 +10282,12 @@
9791
10282
  "shape": "S1o"
9792
10283
  },
9793
10284
  "additionalInfo": {
9794
- "shape": "Sge"
10285
+ "shape": "Sgz"
9795
10286
  }
9796
10287
  }
9797
10288
  }
9798
10289
  },
9799
- "Sgu": {
10290
+ "Shf": {
9800
10291
  "type": "structure",
9801
10292
  "members": {
9802
10293
  "auditTaskId": {},
@@ -9814,7 +10305,7 @@
9814
10305
  }
9815
10306
  }
9816
10307
  },
9817
- "Sgy": {
10308
+ "Shj": {
9818
10309
  "type": "map",
9819
10310
  "key": {},
9820
10311
  "value": {
@@ -9822,7 +10313,7 @@
9822
10313
  "member": {}
9823
10314
  }
9824
10315
  },
9825
- "Sh0": {
10316
+ "Shl": {
9826
10317
  "type": "list",
9827
10318
  "member": {
9828
10319
  "type": "structure",
@@ -9831,12 +10322,12 @@
9831
10322
  "id": {},
9832
10323
  "roleArn": {},
9833
10324
  "actionParams": {
9834
- "shape": "S5m"
10325
+ "shape": "S5o"
9835
10326
  }
9836
10327
  }
9837
10328
  }
9838
10329
  },
9839
- "Shr": {
10330
+ "Sic": {
9840
10331
  "type": "structure",
9841
10332
  "members": {
9842
10333
  "authorizerName": {},
@@ -9861,7 +10352,7 @@
9861
10352
  }
9862
10353
  }
9863
10354
  },
9864
- "Si4": {
10355
+ "Sip": {
9865
10356
  "type": "structure",
9866
10357
  "members": {
9867
10358
  "notBefore": {
@@ -9872,7 +10363,7 @@
9872
10363
  }
9873
10364
  }
9874
10365
  },
9875
- "Si6": {
10366
+ "Sir": {
9876
10367
  "type": "structure",
9877
10368
  "members": {
9878
10369
  "templateBody": {},
@@ -9880,7 +10371,7 @@
9880
10371
  "templateName": {}
9881
10372
  }
9882
10373
  },
9883
- "Sij": {
10374
+ "Sj4": {
9884
10375
  "type": "structure",
9885
10376
  "members": {
9886
10377
  "taskId": {},
@@ -9892,10 +10383,10 @@
9892
10383
  "type": "timestamp"
9893
10384
  },
9894
10385
  "target": {
9895
- "shape": "Sil"
10386
+ "shape": "Sj6"
9896
10387
  },
9897
10388
  "violationEventOccurrenceRange": {
9898
- "shape": "Sio"
10389
+ "shape": "Sj9"
9899
10390
  },
9900
10391
  "onlyActiveViolationsIncluded": {
9901
10392
  "type": "boolean"
@@ -9904,7 +10395,7 @@
9904
10395
  "type": "boolean"
9905
10396
  },
9906
10397
  "actionsDefinition": {
9907
- "shape": "Sh0"
10398
+ "shape": "Shl"
9908
10399
  },
9909
10400
  "taskStatistics": {
9910
10401
  "type": "structure",
@@ -9922,7 +10413,7 @@
9922
10413
  }
9923
10414
  }
9924
10415
  },
9925
- "Sil": {
10416
+ "Sj6": {
9926
10417
  "type": "structure",
9927
10418
  "members": {
9928
10419
  "violationIds": {
@@ -9933,7 +10424,7 @@
9933
10424
  "behaviorName": {}
9934
10425
  }
9935
10426
  },
9936
- "Sio": {
10427
+ "Sj9": {
9937
10428
  "type": "structure",
9938
10429
  "required": [
9939
10430
  "startTime",
@@ -9948,7 +10439,7 @@
9948
10439
  }
9949
10440
  }
9950
10441
  },
9951
- "Sj9": {
10442
+ "Sju": {
9952
10443
  "type": "map",
9953
10444
  "key": {},
9954
10445
  "value": {
@@ -9960,24 +10451,24 @@
9960
10451
  }
9961
10452
  }
9962
10453
  },
9963
- "Skf": {
10454
+ "Sl0": {
9964
10455
  "type": "list",
9965
10456
  "member": {}
9966
10457
  },
9967
- "Sl8": {
10458
+ "Slt": {
9968
10459
  "type": "list",
9969
10460
  "member": {
9970
- "shape": "Sl9"
10461
+ "shape": "Slu"
9971
10462
  }
9972
10463
  },
9973
- "Sl9": {
10464
+ "Slu": {
9974
10465
  "type": "structure",
9975
10466
  "members": {
9976
10467
  "groupName": {},
9977
10468
  "groupArn": {}
9978
10469
  }
9979
10470
  },
9980
- "Sll": {
10471
+ "Sm6": {
9981
10472
  "type": "structure",
9982
10473
  "members": {
9983
10474
  "deprecated": {
@@ -9991,7 +10482,7 @@
9991
10482
  }
9992
10483
  }
9993
10484
  },
9994
- "Smk": {
10485
+ "Sn5": {
9995
10486
  "type": "structure",
9996
10487
  "required": [
9997
10488
  "thingIndexingMode"
@@ -10002,10 +10493,10 @@
10002
10493
  "deviceDefenderIndexingMode": {},
10003
10494
  "namedShadowIndexingMode": {},
10004
10495
  "managedFields": {
10005
- "shape": "Smp"
10496
+ "shape": "Sna"
10006
10497
  },
10007
10498
  "customFields": {
10008
- "shape": "Smp"
10499
+ "shape": "Sna"
10009
10500
  },
10010
10501
  "filter": {
10011
10502
  "type": "structure",
@@ -10018,7 +10509,7 @@
10018
10509
  }
10019
10510
  }
10020
10511
  },
10021
- "Smp": {
10512
+ "Sna": {
10022
10513
  "type": "list",
10023
10514
  "member": {
10024
10515
  "type": "structure",
@@ -10028,7 +10519,7 @@
10028
10519
  }
10029
10520
  }
10030
10521
  },
10031
- "Smw": {
10522
+ "Snh": {
10032
10523
  "type": "structure",
10033
10524
  "required": [
10034
10525
  "thingGroupIndexingMode"
@@ -10036,20 +10527,29 @@
10036
10527
  "members": {
10037
10528
  "thingGroupIndexingMode": {},
10038
10529
  "managedFields": {
10039
- "shape": "Smp"
10530
+ "shape": "Sna"
10040
10531
  },
10041
10532
  "customFields": {
10042
- "shape": "Smp"
10533
+ "shape": "Sna"
10043
10534
  }
10044
10535
  }
10045
10536
  },
10046
- "Soe": {
10537
+ "Snx": {
10538
+ "type": "structure",
10539
+ "members": {
10540
+ "enabled": {
10541
+ "type": "boolean"
10542
+ },
10543
+ "roleArn": {}
10544
+ }
10545
+ },
10546
+ "Sp7": {
10047
10547
  "type": "structure",
10048
10548
  "members": {
10049
10549
  "confidenceLevel": {}
10050
10550
  }
10051
10551
  },
10052
- "Sol": {
10552
+ "Spe": {
10053
10553
  "type": "list",
10054
10554
  "member": {
10055
10555
  "type": "structure",
@@ -10059,7 +10559,7 @@
10059
10559
  }
10060
10560
  }
10061
10561
  },
10062
- "Spn": {
10562
+ "Sqg": {
10063
10563
  "type": "list",
10064
10564
  "member": {
10065
10565
  "type": "structure",
@@ -10074,7 +10574,7 @@
10074
10574
  }
10075
10575
  }
10076
10576
  },
10077
- "Sqn": {
10577
+ "Srg": {
10078
10578
  "type": "structure",
10079
10579
  "members": {
10080
10580
  "status": {},
@@ -10095,15 +10595,15 @@
10095
10595
  }
10096
10596
  }
10097
10597
  },
10098
- "Srp": {
10598
+ "Ssr": {
10099
10599
  "type": "list",
10100
10600
  "member": {}
10101
10601
  },
10102
- "Srz": {
10602
+ "St1": {
10103
10603
  "type": "list",
10104
10604
  "member": {}
10105
10605
  },
10106
- "Ssk": {
10606
+ "Stm": {
10107
10607
  "type": "structure",
10108
10608
  "required": [
10109
10609
  "name",
@@ -10114,7 +10614,7 @@
10114
10614
  "arn": {}
10115
10615
  }
10116
10616
  },
10117
- "Ssp": {
10617
+ "Str": {
10118
10618
  "type": "structure",
10119
10619
  "required": [
10120
10620
  "arn"
@@ -10123,7 +10623,7 @@
10123
10623
  "arn": {}
10124
10624
  }
10125
10625
  },
10126
- "Sud": {
10626
+ "Svf": {
10127
10627
  "type": "structure",
10128
10628
  "required": [
10129
10629
  "targetType"
@@ -10133,11 +10633,11 @@
10133
10633
  "targetName": {}
10134
10634
  }
10135
10635
  },
10136
- "Sv9": {
10636
+ "Swb": {
10137
10637
  "type": "list",
10138
10638
  "member": {}
10139
10639
  },
10140
- "Sw2": {
10640
+ "Sx4": {
10141
10641
  "type": "structure",
10142
10642
  "required": [
10143
10643
  "resources"
@@ -10150,11 +10650,11 @@
10150
10650
  }
10151
10651
  }
10152
10652
  },
10153
- "Sw6": {
10653
+ "Sx8": {
10154
10654
  "type": "list",
10155
10655
  "member": {}
10156
10656
  },
10157
- "Syh": {
10657
+ "Szr": {
10158
10658
  "type": "list",
10159
10659
  "member": {}
10160
10660
  }