aws-sdk 2.1449.0 → 2.1451.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.
- package/CHANGELOG.md +15 -1
- package/README.md +1 -1
- package/apis/billingconductor-2021-07-30.min.json +70 -42
- package/apis/chime-sdk-media-pipelines-2021-07-15.min.json +222 -0
- package/apis/compute-optimizer-2019-11-01.min.json +72 -40
- package/apis/connect-2017-08-08.min.json +589 -186
- package/apis/connect-2017-08-08.paginators.json +12 -0
- package/apis/rds-2014-10-31.min.json +11 -7
- package/apis/sagemaker-2017-07-24.min.json +187 -182
- package/apis/vpc-lattice-2022-11-30.min.json +49 -52
- package/clients/billingconductor.d.ts +31 -0
- package/clients/chimesdkmediapipelines.d.ts +201 -1
- package/clients/cloud9.d.ts +1 -1
- package/clients/computeoptimizer.d.ts +48 -8
- package/clients/connect.d.ts +440 -13
- package/clients/ec2.d.ts +1 -1
- package/clients/ecs.d.ts +2 -2
- package/clients/identitystore.d.ts +26 -26
- package/clients/rds.d.ts +16 -0
- package/clients/sagemaker.d.ts +12 -2
- package/clients/vpclattice.d.ts +30 -21
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +9 -9
- package/dist/aws-sdk.js +615 -196
- package/dist/aws-sdk.min.js +80 -80
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -1079,6 +1079,82 @@
|
|
1079
1079
|
}
|
1080
1080
|
}
|
1081
1081
|
},
|
1082
|
+
"CreateView": {
|
1083
|
+
"http": {
|
1084
|
+
"method": "PUT",
|
1085
|
+
"requestUri": "/views/{InstanceId}"
|
1086
|
+
},
|
1087
|
+
"input": {
|
1088
|
+
"type": "structure",
|
1089
|
+
"required": [
|
1090
|
+
"InstanceId",
|
1091
|
+
"Status",
|
1092
|
+
"Content",
|
1093
|
+
"Name"
|
1094
|
+
],
|
1095
|
+
"members": {
|
1096
|
+
"InstanceId": {
|
1097
|
+
"location": "uri",
|
1098
|
+
"locationName": "InstanceId"
|
1099
|
+
},
|
1100
|
+
"ClientToken": {},
|
1101
|
+
"Status": {},
|
1102
|
+
"Content": {
|
1103
|
+
"shape": "S85"
|
1104
|
+
},
|
1105
|
+
"Description": {},
|
1106
|
+
"Name": {
|
1107
|
+
"shape": "S8a"
|
1108
|
+
},
|
1109
|
+
"Tags": {
|
1110
|
+
"shape": "S1r"
|
1111
|
+
}
|
1112
|
+
}
|
1113
|
+
},
|
1114
|
+
"output": {
|
1115
|
+
"type": "structure",
|
1116
|
+
"members": {
|
1117
|
+
"View": {
|
1118
|
+
"shape": "S8c"
|
1119
|
+
}
|
1120
|
+
}
|
1121
|
+
},
|
1122
|
+
"idempotent": true
|
1123
|
+
},
|
1124
|
+
"CreateViewVersion": {
|
1125
|
+
"http": {
|
1126
|
+
"method": "PUT",
|
1127
|
+
"requestUri": "/views/{InstanceId}/{ViewId}/versions"
|
1128
|
+
},
|
1129
|
+
"input": {
|
1130
|
+
"type": "structure",
|
1131
|
+
"required": [
|
1132
|
+
"InstanceId",
|
1133
|
+
"ViewId"
|
1134
|
+
],
|
1135
|
+
"members": {
|
1136
|
+
"InstanceId": {
|
1137
|
+
"location": "uri",
|
1138
|
+
"locationName": "InstanceId"
|
1139
|
+
},
|
1140
|
+
"ViewId": {
|
1141
|
+
"location": "uri",
|
1142
|
+
"locationName": "ViewId"
|
1143
|
+
},
|
1144
|
+
"VersionDescription": {},
|
1145
|
+
"ViewContentSha256": {}
|
1146
|
+
}
|
1147
|
+
},
|
1148
|
+
"output": {
|
1149
|
+
"type": "structure",
|
1150
|
+
"members": {
|
1151
|
+
"View": {
|
1152
|
+
"shape": "S8c"
|
1153
|
+
}
|
1154
|
+
}
|
1155
|
+
},
|
1156
|
+
"idempotent": true
|
1157
|
+
},
|
1082
1158
|
"CreateVocabulary": {
|
1083
1159
|
"http": {
|
1084
1160
|
"requestUri": "/vocabulary/{InstanceId}"
|
@@ -1594,6 +1670,66 @@
|
|
1594
1670
|
}
|
1595
1671
|
}
|
1596
1672
|
},
|
1673
|
+
"DeleteView": {
|
1674
|
+
"http": {
|
1675
|
+
"method": "DELETE",
|
1676
|
+
"requestUri": "/views/{InstanceId}/{ViewId}"
|
1677
|
+
},
|
1678
|
+
"input": {
|
1679
|
+
"type": "structure",
|
1680
|
+
"required": [
|
1681
|
+
"InstanceId",
|
1682
|
+
"ViewId"
|
1683
|
+
],
|
1684
|
+
"members": {
|
1685
|
+
"InstanceId": {
|
1686
|
+
"location": "uri",
|
1687
|
+
"locationName": "InstanceId"
|
1688
|
+
},
|
1689
|
+
"ViewId": {
|
1690
|
+
"location": "uri",
|
1691
|
+
"locationName": "ViewId"
|
1692
|
+
}
|
1693
|
+
}
|
1694
|
+
},
|
1695
|
+
"output": {
|
1696
|
+
"type": "structure",
|
1697
|
+
"members": {}
|
1698
|
+
}
|
1699
|
+
},
|
1700
|
+
"DeleteViewVersion": {
|
1701
|
+
"http": {
|
1702
|
+
"method": "DELETE",
|
1703
|
+
"requestUri": "/views/{InstanceId}/{ViewId}/versions/{ViewVersion}"
|
1704
|
+
},
|
1705
|
+
"input": {
|
1706
|
+
"type": "structure",
|
1707
|
+
"required": [
|
1708
|
+
"InstanceId",
|
1709
|
+
"ViewId",
|
1710
|
+
"ViewVersion"
|
1711
|
+
],
|
1712
|
+
"members": {
|
1713
|
+
"InstanceId": {
|
1714
|
+
"location": "uri",
|
1715
|
+
"locationName": "InstanceId"
|
1716
|
+
},
|
1717
|
+
"ViewId": {
|
1718
|
+
"location": "uri",
|
1719
|
+
"locationName": "ViewId"
|
1720
|
+
},
|
1721
|
+
"ViewVersion": {
|
1722
|
+
"location": "uri",
|
1723
|
+
"locationName": "ViewVersion",
|
1724
|
+
"type": "integer"
|
1725
|
+
}
|
1726
|
+
}
|
1727
|
+
},
|
1728
|
+
"output": {
|
1729
|
+
"type": "structure",
|
1730
|
+
"members": {}
|
1731
|
+
}
|
1732
|
+
},
|
1597
1733
|
"DeleteVocabulary": {
|
1598
1734
|
"http": {
|
1599
1735
|
"requestUri": "/vocabulary-remove/{InstanceId}/{VocabularyId}"
|
@@ -1807,7 +1943,7 @@
|
|
1807
1943
|
"EvaluatorArn": {},
|
1808
1944
|
"ContactAgentId": {},
|
1809
1945
|
"Score": {
|
1810
|
-
"shape": "
|
1946
|
+
"shape": "Sa4"
|
1811
1947
|
}
|
1812
1948
|
}
|
1813
1949
|
},
|
@@ -1818,23 +1954,23 @@
|
|
1818
1954
|
"type": "structure",
|
1819
1955
|
"members": {
|
1820
1956
|
"Value": {
|
1821
|
-
"shape": "
|
1957
|
+
"shape": "Sa8"
|
1822
1958
|
},
|
1823
1959
|
"SystemSuggestedValue": {
|
1824
|
-
"shape": "
|
1960
|
+
"shape": "Sa8"
|
1825
1961
|
}
|
1826
1962
|
}
|
1827
1963
|
}
|
1828
1964
|
},
|
1829
1965
|
"Notes": {
|
1830
|
-
"shape": "
|
1966
|
+
"shape": "Sab"
|
1831
1967
|
},
|
1832
1968
|
"Status": {},
|
1833
1969
|
"Scores": {
|
1834
1970
|
"type": "map",
|
1835
1971
|
"key": {},
|
1836
1972
|
"value": {
|
1837
|
-
"shape": "
|
1973
|
+
"shape": "Sa4"
|
1838
1974
|
}
|
1839
1975
|
},
|
1840
1976
|
"CreatedTime": {
|
@@ -2070,7 +2206,7 @@
|
|
2070
2206
|
"type": "structure",
|
2071
2207
|
"members": {
|
2072
2208
|
"HoursOfOperation": {
|
2073
|
-
"shape": "
|
2209
|
+
"shape": "Sax"
|
2074
2210
|
}
|
2075
2211
|
}
|
2076
2212
|
}
|
@@ -2153,7 +2289,7 @@
|
|
2153
2289
|
"type": "structure",
|
2154
2290
|
"members": {
|
2155
2291
|
"Attribute": {
|
2156
|
-
"shape": "
|
2292
|
+
"shape": "Sb7"
|
2157
2293
|
}
|
2158
2294
|
}
|
2159
2295
|
}
|
@@ -2265,7 +2401,7 @@
|
|
2265
2401
|
"type": "structure",
|
2266
2402
|
"members": {
|
2267
2403
|
"Prompt": {
|
2268
|
-
"shape": "
|
2404
|
+
"shape": "Sbl"
|
2269
2405
|
}
|
2270
2406
|
}
|
2271
2407
|
}
|
@@ -2296,7 +2432,7 @@
|
|
2296
2432
|
"type": "structure",
|
2297
2433
|
"members": {
|
2298
2434
|
"Queue": {
|
2299
|
-
"shape": "
|
2435
|
+
"shape": "Sbo"
|
2300
2436
|
}
|
2301
2437
|
}
|
2302
2438
|
}
|
@@ -2327,7 +2463,7 @@
|
|
2327
2463
|
"type": "structure",
|
2328
2464
|
"members": {
|
2329
2465
|
"QuickConnect": {
|
2330
|
-
"shape": "
|
2466
|
+
"shape": "Sbs"
|
2331
2467
|
}
|
2332
2468
|
}
|
2333
2469
|
}
|
@@ -2358,7 +2494,7 @@
|
|
2358
2494
|
"type": "structure",
|
2359
2495
|
"members": {
|
2360
2496
|
"RoutingProfile": {
|
2361
|
-
"shape": "
|
2497
|
+
"shape": "Sbv"
|
2362
2498
|
}
|
2363
2499
|
}
|
2364
2500
|
}
|
@@ -2606,19 +2742,19 @@
|
|
2606
2742
|
"type": "structure",
|
2607
2743
|
"members": {
|
2608
2744
|
"LevelOne": {
|
2609
|
-
"shape": "
|
2745
|
+
"shape": "Sch"
|
2610
2746
|
},
|
2611
2747
|
"LevelTwo": {
|
2612
|
-
"shape": "
|
2748
|
+
"shape": "Sch"
|
2613
2749
|
},
|
2614
2750
|
"LevelThree": {
|
2615
|
-
"shape": "
|
2751
|
+
"shape": "Sch"
|
2616
2752
|
},
|
2617
2753
|
"LevelFour": {
|
2618
|
-
"shape": "
|
2754
|
+
"shape": "Sch"
|
2619
2755
|
},
|
2620
2756
|
"LevelFive": {
|
2621
|
-
"shape": "
|
2757
|
+
"shape": "Sch"
|
2622
2758
|
}
|
2623
2759
|
}
|
2624
2760
|
},
|
@@ -2654,25 +2790,56 @@
|
|
2654
2790
|
"type": "structure",
|
2655
2791
|
"members": {
|
2656
2792
|
"LevelOne": {
|
2657
|
-
"shape": "
|
2793
|
+
"shape": "Scl"
|
2658
2794
|
},
|
2659
2795
|
"LevelTwo": {
|
2660
|
-
"shape": "
|
2796
|
+
"shape": "Scl"
|
2661
2797
|
},
|
2662
2798
|
"LevelThree": {
|
2663
|
-
"shape": "
|
2799
|
+
"shape": "Scl"
|
2664
2800
|
},
|
2665
2801
|
"LevelFour": {
|
2666
|
-
"shape": "
|
2802
|
+
"shape": "Scl"
|
2667
2803
|
},
|
2668
2804
|
"LevelFive": {
|
2669
|
-
"shape": "
|
2805
|
+
"shape": "Scl"
|
2670
2806
|
}
|
2671
2807
|
}
|
2672
2808
|
}
|
2673
2809
|
}
|
2674
2810
|
}
|
2675
2811
|
},
|
2812
|
+
"DescribeView": {
|
2813
|
+
"http": {
|
2814
|
+
"method": "GET",
|
2815
|
+
"requestUri": "/views/{InstanceId}/{ViewId}"
|
2816
|
+
},
|
2817
|
+
"input": {
|
2818
|
+
"type": "structure",
|
2819
|
+
"required": [
|
2820
|
+
"InstanceId",
|
2821
|
+
"ViewId"
|
2822
|
+
],
|
2823
|
+
"members": {
|
2824
|
+
"InstanceId": {
|
2825
|
+
"location": "uri",
|
2826
|
+
"locationName": "InstanceId"
|
2827
|
+
},
|
2828
|
+
"ViewId": {
|
2829
|
+
"location": "uri",
|
2830
|
+
"locationName": "ViewId"
|
2831
|
+
}
|
2832
|
+
}
|
2833
|
+
},
|
2834
|
+
"output": {
|
2835
|
+
"type": "structure",
|
2836
|
+
"members": {
|
2837
|
+
"View": {
|
2838
|
+
"shape": "S8c"
|
2839
|
+
}
|
2840
|
+
}
|
2841
|
+
}
|
2842
|
+
},
|
2676
2843
|
"DescribeVocabulary": {
|
2677
2844
|
"http": {
|
2678
2845
|
"method": "GET",
|
@@ -3043,7 +3210,7 @@
|
|
3043
3210
|
"type": "structure",
|
3044
3211
|
"members": {
|
3045
3212
|
"Attributes": {
|
3046
|
-
"shape": "
|
3213
|
+
"shape": "Sda"
|
3047
3214
|
}
|
3048
3215
|
}
|
3049
3216
|
}
|
@@ -3065,15 +3232,15 @@
|
|
3065
3232
|
"locationName": "InstanceId"
|
3066
3233
|
},
|
3067
3234
|
"Filters": {
|
3068
|
-
"shape": "
|
3235
|
+
"shape": "Sde"
|
3069
3236
|
},
|
3070
3237
|
"Groupings": {
|
3071
|
-
"shape": "
|
3238
|
+
"shape": "Sdi"
|
3072
3239
|
},
|
3073
3240
|
"CurrentMetrics": {
|
3074
3241
|
"type": "list",
|
3075
3242
|
"member": {
|
3076
|
-
"shape": "
|
3243
|
+
"shape": "Sdl"
|
3077
3244
|
}
|
3078
3245
|
},
|
3079
3246
|
"NextToken": {},
|
@@ -3102,7 +3269,7 @@
|
|
3102
3269
|
"type": "structure",
|
3103
3270
|
"members": {
|
3104
3271
|
"Dimensions": {
|
3105
|
-
"shape": "
|
3272
|
+
"shape": "Sdw"
|
3106
3273
|
},
|
3107
3274
|
"Collections": {
|
3108
3275
|
"type": "list",
|
@@ -3110,7 +3277,7 @@
|
|
3110
3277
|
"type": "structure",
|
3111
3278
|
"members": {
|
3112
3279
|
"Metric": {
|
3113
|
-
"shape": "
|
3280
|
+
"shape": "Sdl"
|
3114
3281
|
},
|
3115
3282
|
"Value": {
|
3116
3283
|
"type": "double"
|
@@ -3149,7 +3316,7 @@
|
|
3149
3316
|
"type": "structure",
|
3150
3317
|
"members": {
|
3151
3318
|
"Queues": {
|
3152
|
-
"shape": "
|
3319
|
+
"shape": "Sdf"
|
3153
3320
|
},
|
3154
3321
|
"ContactFilter": {
|
3155
3322
|
"type": "structure",
|
@@ -3161,7 +3328,7 @@
|
|
3161
3328
|
}
|
3162
3329
|
},
|
3163
3330
|
"RoutingProfiles": {
|
3164
|
-
"shape": "
|
3331
|
+
"shape": "Sdh"
|
3165
3332
|
},
|
3166
3333
|
"Agents": {
|
3167
3334
|
"type": "list",
|
@@ -3196,25 +3363,25 @@
|
|
3196
3363
|
}
|
3197
3364
|
},
|
3198
3365
|
"RoutingProfile": {
|
3199
|
-
"shape": "
|
3366
|
+
"shape": "Sdy"
|
3200
3367
|
},
|
3201
3368
|
"HierarchyPath": {
|
3202
3369
|
"type": "structure",
|
3203
3370
|
"members": {
|
3204
3371
|
"LevelOne": {
|
3205
|
-
"shape": "
|
3372
|
+
"shape": "Sef"
|
3206
3373
|
},
|
3207
3374
|
"LevelTwo": {
|
3208
|
-
"shape": "
|
3375
|
+
"shape": "Sef"
|
3209
3376
|
},
|
3210
3377
|
"LevelThree": {
|
3211
|
-
"shape": "
|
3378
|
+
"shape": "Sef"
|
3212
3379
|
},
|
3213
3380
|
"LevelFour": {
|
3214
|
-
"shape": "
|
3381
|
+
"shape": "Sef"
|
3215
3382
|
},
|
3216
3383
|
"LevelFive": {
|
3217
|
-
"shape": "
|
3384
|
+
"shape": "Sef"
|
3218
3385
|
}
|
3219
3386
|
}
|
3220
3387
|
},
|
@@ -3229,13 +3396,13 @@
|
|
3229
3396
|
}
|
3230
3397
|
},
|
3231
3398
|
"AvailableSlotsByChannel": {
|
3232
|
-
"shape": "
|
3399
|
+
"shape": "Seh"
|
3233
3400
|
},
|
3234
3401
|
"MaxSlotsByChannel": {
|
3235
|
-
"shape": "
|
3402
|
+
"shape": "Seh"
|
3236
3403
|
},
|
3237
3404
|
"ActiveSlotsByChannel": {
|
3238
|
-
"shape": "
|
3405
|
+
"shape": "Seh"
|
3239
3406
|
},
|
3240
3407
|
"Contacts": {
|
3241
3408
|
"type": "list",
|
@@ -3253,7 +3420,7 @@
|
|
3253
3420
|
"type": "timestamp"
|
3254
3421
|
},
|
3255
3422
|
"Queue": {
|
3256
|
-
"shape": "
|
3423
|
+
"shape": "Sdx"
|
3257
3424
|
}
|
3258
3425
|
}
|
3259
3426
|
}
|
@@ -3292,13 +3459,13 @@
|
|
3292
3459
|
"type": "structure",
|
3293
3460
|
"members": {
|
3294
3461
|
"AccessToken": {
|
3295
|
-
"shape": "
|
3462
|
+
"shape": "Seo"
|
3296
3463
|
},
|
3297
3464
|
"AccessTokenExpiration": {
|
3298
3465
|
"type": "timestamp"
|
3299
3466
|
},
|
3300
3467
|
"RefreshToken": {
|
3301
|
-
"shape": "
|
3468
|
+
"shape": "Seo"
|
3302
3469
|
},
|
3303
3470
|
"RefreshTokenExpiration": {
|
3304
3471
|
"type": "timestamp"
|
@@ -3336,15 +3503,15 @@
|
|
3336
3503
|
"type": "timestamp"
|
3337
3504
|
},
|
3338
3505
|
"Filters": {
|
3339
|
-
"shape": "
|
3506
|
+
"shape": "Sde"
|
3340
3507
|
},
|
3341
3508
|
"Groupings": {
|
3342
|
-
"shape": "
|
3509
|
+
"shape": "Sdi"
|
3343
3510
|
},
|
3344
3511
|
"HistoricalMetrics": {
|
3345
3512
|
"type": "list",
|
3346
3513
|
"member": {
|
3347
|
-
"shape": "
|
3514
|
+
"shape": "Ser"
|
3348
3515
|
}
|
3349
3516
|
},
|
3350
3517
|
"NextToken": {},
|
@@ -3363,7 +3530,7 @@
|
|
3363
3530
|
"type": "structure",
|
3364
3531
|
"members": {
|
3365
3532
|
"Dimensions": {
|
3366
|
-
"shape": "
|
3533
|
+
"shape": "Sdw"
|
3367
3534
|
},
|
3368
3535
|
"Collections": {
|
3369
3536
|
"type": "list",
|
@@ -3371,7 +3538,7 @@
|
|
3371
3538
|
"type": "structure",
|
3372
3539
|
"members": {
|
3373
3540
|
"Metric": {
|
3374
|
-
"shape": "
|
3541
|
+
"shape": "Ser"
|
3375
3542
|
},
|
3376
3543
|
"Value": {
|
3377
3544
|
"type": "double"
|
@@ -3426,7 +3593,7 @@
|
|
3426
3593
|
"Metrics": {
|
3427
3594
|
"type": "list",
|
3428
3595
|
"member": {
|
3429
|
-
"shape": "
|
3596
|
+
"shape": "Sfa"
|
3430
3597
|
}
|
3431
3598
|
},
|
3432
3599
|
"NextToken": {},
|
@@ -3455,7 +3622,7 @@
|
|
3455
3622
|
"type": "structure",
|
3456
3623
|
"members": {
|
3457
3624
|
"Metric": {
|
3458
|
-
"shape": "
|
3625
|
+
"shape": "Sfa"
|
3459
3626
|
},
|
3460
3627
|
"Value": {
|
3461
3628
|
"type": "double"
|
@@ -3581,15 +3748,15 @@
|
|
3581
3748
|
"type": "structure",
|
3582
3749
|
"members": {
|
3583
3750
|
"TelephonyConfig": {
|
3584
|
-
"shape": "
|
3751
|
+
"shape": "Sfy"
|
3585
3752
|
},
|
3586
3753
|
"Id": {},
|
3587
3754
|
"Arn": {},
|
3588
3755
|
"SignInConfig": {
|
3589
|
-
"shape": "
|
3756
|
+
"shape": "Sg3"
|
3590
3757
|
},
|
3591
3758
|
"AgentConfig": {
|
3592
|
-
"shape": "
|
3759
|
+
"shape": "Sg6"
|
3593
3760
|
}
|
3594
3761
|
}
|
3595
3762
|
}
|
@@ -3788,7 +3955,7 @@
|
|
3788
3955
|
"Status": {},
|
3789
3956
|
"EvaluatorArn": {},
|
3790
3957
|
"Score": {
|
3791
|
-
"shape": "
|
3958
|
+
"shape": "Sa4"
|
3792
3959
|
},
|
3793
3960
|
"CreatedTime": {
|
3794
3961
|
"type": "timestamp"
|
@@ -4273,7 +4440,7 @@
|
|
4273
4440
|
"Attributes": {
|
4274
4441
|
"type": "list",
|
4275
4442
|
"member": {
|
4276
|
-
"shape": "
|
4443
|
+
"shape": "Sb7"
|
4277
4444
|
}
|
4278
4445
|
},
|
4279
4446
|
"NextToken": {}
|
@@ -4521,12 +4688,12 @@
|
|
4521
4688
|
"locationName": "InstanceId"
|
4522
4689
|
},
|
4523
4690
|
"PhoneNumberTypes": {
|
4524
|
-
"shape": "
|
4691
|
+
"shape": "Sig",
|
4525
4692
|
"location": "querystring",
|
4526
4693
|
"locationName": "phoneNumberTypes"
|
4527
4694
|
},
|
4528
4695
|
"PhoneNumberCountryCodes": {
|
4529
|
-
"shape": "
|
4696
|
+
"shape": "Sih",
|
4530
4697
|
"location": "querystring",
|
4531
4698
|
"locationName": "phoneNumberCountryCodes"
|
4532
4699
|
},
|
@@ -4574,10 +4741,10 @@
|
|
4574
4741
|
},
|
4575
4742
|
"NextToken": {},
|
4576
4743
|
"PhoneNumberCountryCodes": {
|
4577
|
-
"shape": "
|
4744
|
+
"shape": "Sih"
|
4578
4745
|
},
|
4579
4746
|
"PhoneNumberTypes": {
|
4580
|
-
"shape": "
|
4747
|
+
"shape": "Sig"
|
4581
4748
|
},
|
4582
4749
|
"PhoneNumberPrefix": {}
|
4583
4750
|
}
|
@@ -4683,7 +4850,7 @@
|
|
4683
4850
|
"members": {
|
4684
4851
|
"NextToken": {},
|
4685
4852
|
"QuickConnectSummaryList": {
|
4686
|
-
"shape": "
|
4853
|
+
"shape": "Siy"
|
4687
4854
|
}
|
4688
4855
|
}
|
4689
4856
|
}
|
@@ -4775,7 +4942,7 @@
|
|
4775
4942
|
"type": "structure",
|
4776
4943
|
"members": {
|
4777
4944
|
"QuickConnectSummaryList": {
|
4778
|
-
"shape": "
|
4945
|
+
"shape": "Siy"
|
4779
4946
|
},
|
4780
4947
|
"NextToken": {}
|
4781
4948
|
}
|
@@ -5360,7 +5527,7 @@
|
|
5360
5527
|
"UserHierarchyGroupSummaryList": {
|
5361
5528
|
"type": "list",
|
5362
5529
|
"member": {
|
5363
|
-
"shape": "
|
5530
|
+
"shape": "Sch"
|
5364
5531
|
}
|
5365
5532
|
},
|
5366
5533
|
"NextToken": {}
|
@@ -5411,6 +5578,116 @@
|
|
5411
5578
|
}
|
5412
5579
|
}
|
5413
5580
|
},
|
5581
|
+
"ListViewVersions": {
|
5582
|
+
"http": {
|
5583
|
+
"method": "GET",
|
5584
|
+
"requestUri": "/views/{InstanceId}/{ViewId}/versions"
|
5585
|
+
},
|
5586
|
+
"input": {
|
5587
|
+
"type": "structure",
|
5588
|
+
"required": [
|
5589
|
+
"InstanceId",
|
5590
|
+
"ViewId"
|
5591
|
+
],
|
5592
|
+
"members": {
|
5593
|
+
"InstanceId": {
|
5594
|
+
"location": "uri",
|
5595
|
+
"locationName": "InstanceId"
|
5596
|
+
},
|
5597
|
+
"ViewId": {
|
5598
|
+
"location": "uri",
|
5599
|
+
"locationName": "ViewId"
|
5600
|
+
},
|
5601
|
+
"NextToken": {
|
5602
|
+
"location": "querystring",
|
5603
|
+
"locationName": "nextToken"
|
5604
|
+
},
|
5605
|
+
"MaxResults": {
|
5606
|
+
"location": "querystring",
|
5607
|
+
"locationName": "maxResults",
|
5608
|
+
"type": "integer"
|
5609
|
+
}
|
5610
|
+
}
|
5611
|
+
},
|
5612
|
+
"output": {
|
5613
|
+
"type": "structure",
|
5614
|
+
"members": {
|
5615
|
+
"ViewVersionSummaryList": {
|
5616
|
+
"type": "list",
|
5617
|
+
"member": {
|
5618
|
+
"type": "structure",
|
5619
|
+
"members": {
|
5620
|
+
"Id": {},
|
5621
|
+
"Arn": {},
|
5622
|
+
"Description": {},
|
5623
|
+
"Name": {
|
5624
|
+
"shape": "S8a"
|
5625
|
+
},
|
5626
|
+
"Type": {},
|
5627
|
+
"Version": {
|
5628
|
+
"type": "integer"
|
5629
|
+
},
|
5630
|
+
"VersionDescription": {}
|
5631
|
+
}
|
5632
|
+
}
|
5633
|
+
},
|
5634
|
+
"NextToken": {}
|
5635
|
+
}
|
5636
|
+
}
|
5637
|
+
},
|
5638
|
+
"ListViews": {
|
5639
|
+
"http": {
|
5640
|
+
"method": "GET",
|
5641
|
+
"requestUri": "/views/{InstanceId}"
|
5642
|
+
},
|
5643
|
+
"input": {
|
5644
|
+
"type": "structure",
|
5645
|
+
"required": [
|
5646
|
+
"InstanceId"
|
5647
|
+
],
|
5648
|
+
"members": {
|
5649
|
+
"InstanceId": {
|
5650
|
+
"location": "uri",
|
5651
|
+
"locationName": "InstanceId"
|
5652
|
+
},
|
5653
|
+
"Type": {
|
5654
|
+
"location": "querystring",
|
5655
|
+
"locationName": "type"
|
5656
|
+
},
|
5657
|
+
"NextToken": {
|
5658
|
+
"location": "querystring",
|
5659
|
+
"locationName": "nextToken"
|
5660
|
+
},
|
5661
|
+
"MaxResults": {
|
5662
|
+
"location": "querystring",
|
5663
|
+
"locationName": "maxResults",
|
5664
|
+
"type": "integer"
|
5665
|
+
}
|
5666
|
+
}
|
5667
|
+
},
|
5668
|
+
"output": {
|
5669
|
+
"type": "structure",
|
5670
|
+
"members": {
|
5671
|
+
"ViewsSummaryList": {
|
5672
|
+
"type": "list",
|
5673
|
+
"member": {
|
5674
|
+
"type": "structure",
|
5675
|
+
"members": {
|
5676
|
+
"Id": {},
|
5677
|
+
"Arn": {},
|
5678
|
+
"Name": {
|
5679
|
+
"shape": "S8a"
|
5680
|
+
},
|
5681
|
+
"Type": {},
|
5682
|
+
"Status": {},
|
5683
|
+
"Description": {}
|
5684
|
+
}
|
5685
|
+
}
|
5686
|
+
},
|
5687
|
+
"NextToken": {}
|
5688
|
+
}
|
5689
|
+
}
|
5690
|
+
},
|
5414
5691
|
"MonitorContact": {
|
5415
5692
|
"http": {
|
5416
5693
|
"requestUri": "/contact/monitor"
|
@@ -5609,12 +5886,12 @@
|
|
5609
5886
|
"type": "structure",
|
5610
5887
|
"members": {
|
5611
5888
|
"TagFilter": {
|
5612
|
-
"shape": "
|
5889
|
+
"shape": "Slg"
|
5613
5890
|
}
|
5614
5891
|
}
|
5615
5892
|
},
|
5616
5893
|
"SearchCriteria": {
|
5617
|
-
"shape": "
|
5894
|
+
"shape": "Slk"
|
5618
5895
|
}
|
5619
5896
|
}
|
5620
5897
|
},
|
@@ -5624,7 +5901,7 @@
|
|
5624
5901
|
"HoursOfOperations": {
|
5625
5902
|
"type": "list",
|
5626
5903
|
"member": {
|
5627
|
-
"shape": "
|
5904
|
+
"shape": "Sax"
|
5628
5905
|
}
|
5629
5906
|
},
|
5630
5907
|
"NextToken": {},
|
@@ -5653,12 +5930,12 @@
|
|
5653
5930
|
"type": "structure",
|
5654
5931
|
"members": {
|
5655
5932
|
"TagFilter": {
|
5656
|
-
"shape": "
|
5933
|
+
"shape": "Slg"
|
5657
5934
|
}
|
5658
5935
|
}
|
5659
5936
|
},
|
5660
5937
|
"SearchCriteria": {
|
5661
|
-
"shape": "
|
5938
|
+
"shape": "Sls"
|
5662
5939
|
}
|
5663
5940
|
}
|
5664
5941
|
},
|
@@ -5668,7 +5945,7 @@
|
|
5668
5945
|
"Prompts": {
|
5669
5946
|
"type": "list",
|
5670
5947
|
"member": {
|
5671
|
-
"shape": "
|
5948
|
+
"shape": "Sbl"
|
5672
5949
|
}
|
5673
5950
|
},
|
5674
5951
|
"NextToken": {},
|
@@ -5697,12 +5974,12 @@
|
|
5697
5974
|
"type": "structure",
|
5698
5975
|
"members": {
|
5699
5976
|
"TagFilter": {
|
5700
|
-
"shape": "
|
5977
|
+
"shape": "Slg"
|
5701
5978
|
}
|
5702
5979
|
}
|
5703
5980
|
},
|
5704
5981
|
"SearchCriteria": {
|
5705
|
-
"shape": "
|
5982
|
+
"shape": "Sly"
|
5706
5983
|
}
|
5707
5984
|
}
|
5708
5985
|
},
|
@@ -5712,7 +5989,7 @@
|
|
5712
5989
|
"Queues": {
|
5713
5990
|
"type": "list",
|
5714
5991
|
"member": {
|
5715
|
-
"shape": "
|
5992
|
+
"shape": "Sbo"
|
5716
5993
|
}
|
5717
5994
|
},
|
5718
5995
|
"NextToken": {},
|
@@ -5741,12 +6018,12 @@
|
|
5741
6018
|
"type": "structure",
|
5742
6019
|
"members": {
|
5743
6020
|
"TagFilter": {
|
5744
|
-
"shape": "
|
6021
|
+
"shape": "Slg"
|
5745
6022
|
}
|
5746
6023
|
}
|
5747
6024
|
},
|
5748
6025
|
"SearchCriteria": {
|
5749
|
-
"shape": "
|
6026
|
+
"shape": "Sm5"
|
5750
6027
|
}
|
5751
6028
|
}
|
5752
6029
|
},
|
@@ -5756,7 +6033,7 @@
|
|
5756
6033
|
"QuickConnects": {
|
5757
6034
|
"type": "list",
|
5758
6035
|
"member": {
|
5759
|
-
"shape": "
|
6036
|
+
"shape": "Sbs"
|
5760
6037
|
}
|
5761
6038
|
},
|
5762
6039
|
"NextToken": {},
|
@@ -5837,12 +6114,12 @@
|
|
5837
6114
|
"type": "structure",
|
5838
6115
|
"members": {
|
5839
6116
|
"TagFilter": {
|
5840
|
-
"shape": "
|
6117
|
+
"shape": "Slg"
|
5841
6118
|
}
|
5842
6119
|
}
|
5843
6120
|
},
|
5844
6121
|
"SearchCriteria": {
|
5845
|
-
"shape": "
|
6122
|
+
"shape": "Smk"
|
5846
6123
|
}
|
5847
6124
|
}
|
5848
6125
|
},
|
@@ -5852,7 +6129,7 @@
|
|
5852
6129
|
"RoutingProfiles": {
|
5853
6130
|
"type": "list",
|
5854
6131
|
"member": {
|
5855
|
-
"shape": "
|
6132
|
+
"shape": "Sbv"
|
5856
6133
|
}
|
5857
6134
|
},
|
5858
6135
|
"NextToken": {},
|
@@ -5878,13 +6155,13 @@
|
|
5878
6155
|
"type": "integer"
|
5879
6156
|
},
|
5880
6157
|
"SearchCriteria": {
|
5881
|
-
"shape": "
|
6158
|
+
"shape": "Smp"
|
5882
6159
|
},
|
5883
6160
|
"SearchFilter": {
|
5884
6161
|
"type": "structure",
|
5885
6162
|
"members": {
|
5886
6163
|
"TagFilter": {
|
5887
|
-
"shape": "
|
6164
|
+
"shape": "Slg"
|
5888
6165
|
}
|
5889
6166
|
}
|
5890
6167
|
}
|
@@ -5932,12 +6209,12 @@
|
|
5932
6209
|
"type": "structure",
|
5933
6210
|
"members": {
|
5934
6211
|
"TagFilter": {
|
5935
|
-
"shape": "
|
6212
|
+
"shape": "Slg"
|
5936
6213
|
}
|
5937
6214
|
}
|
5938
6215
|
},
|
5939
6216
|
"SearchCriteria": {
|
5940
|
-
"shape": "
|
6217
|
+
"shape": "Smx"
|
5941
6218
|
}
|
5942
6219
|
}
|
5943
6220
|
},
|
@@ -6052,7 +6329,7 @@
|
|
6052
6329
|
"InstanceId": {},
|
6053
6330
|
"ContactFlowId": {},
|
6054
6331
|
"Attributes": {
|
6055
|
-
"shape": "
|
6332
|
+
"shape": "Sda"
|
6056
6333
|
},
|
6057
6334
|
"ParticipantDetails": {
|
6058
6335
|
"type": "structure",
|
@@ -6231,7 +6508,7 @@
|
|
6231
6508
|
"SourcePhoneNumber": {},
|
6232
6509
|
"QueueId": {},
|
6233
6510
|
"Attributes": {
|
6234
|
-
"shape": "
|
6511
|
+
"shape": "Sda"
|
6235
6512
|
},
|
6236
6513
|
"AnswerMachineDetectionConfig": {
|
6237
6514
|
"type": "structure",
|
@@ -6271,7 +6548,7 @@
|
|
6271
6548
|
"PreviousContactId": {},
|
6272
6549
|
"ContactFlowId": {},
|
6273
6550
|
"Attributes": {
|
6274
|
-
"shape": "
|
6551
|
+
"shape": "Sda"
|
6275
6552
|
},
|
6276
6553
|
"Name": {},
|
6277
6554
|
"References": {
|
@@ -6380,10 +6657,10 @@
|
|
6380
6657
|
"locationName": "EvaluationId"
|
6381
6658
|
},
|
6382
6659
|
"Answers": {
|
6383
|
-
"shape": "
|
6660
|
+
"shape": "So9"
|
6384
6661
|
},
|
6385
6662
|
"Notes": {
|
6386
|
-
"shape": "
|
6663
|
+
"shape": "Sab"
|
6387
6664
|
}
|
6388
6665
|
}
|
6389
6666
|
},
|
@@ -6574,7 +6851,7 @@
|
|
6574
6851
|
"InitialContactId": {},
|
6575
6852
|
"InstanceId": {},
|
6576
6853
|
"Attributes": {
|
6577
|
-
"shape": "
|
6854
|
+
"shape": "Sda"
|
6578
6855
|
}
|
6579
6856
|
}
|
6580
6857
|
},
|
@@ -6603,10 +6880,10 @@
|
|
6603
6880
|
"locationName": "EvaluationId"
|
6604
6881
|
},
|
6605
6882
|
"Answers": {
|
6606
|
-
"shape": "
|
6883
|
+
"shape": "So9"
|
6607
6884
|
},
|
6608
6885
|
"Notes": {
|
6609
|
-
"shape": "
|
6886
|
+
"shape": "Sab"
|
6610
6887
|
}
|
6611
6888
|
}
|
6612
6889
|
},
|
@@ -7499,13 +7776,13 @@
|
|
7499
7776
|
"locationName": "Id"
|
7500
7777
|
},
|
7501
7778
|
"TelephonyConfig": {
|
7502
|
-
"shape": "
|
7779
|
+
"shape": "Sfy"
|
7503
7780
|
},
|
7504
7781
|
"SignInConfig": {
|
7505
|
-
"shape": "
|
7782
|
+
"shape": "Sg3"
|
7506
7783
|
},
|
7507
7784
|
"AgentConfig": {
|
7508
|
-
"shape": "
|
7785
|
+
"shape": "Sg6"
|
7509
7786
|
}
|
7510
7787
|
}
|
7511
7788
|
},
|
@@ -7576,19 +7853,19 @@
|
|
7576
7853
|
"type": "structure",
|
7577
7854
|
"members": {
|
7578
7855
|
"LevelOne": {
|
7579
|
-
"shape": "
|
7856
|
+
"shape": "Sqc"
|
7580
7857
|
},
|
7581
7858
|
"LevelTwo": {
|
7582
|
-
"shape": "
|
7859
|
+
"shape": "Sqc"
|
7583
7860
|
},
|
7584
7861
|
"LevelThree": {
|
7585
|
-
"shape": "
|
7862
|
+
"shape": "Sqc"
|
7586
7863
|
},
|
7587
7864
|
"LevelFour": {
|
7588
|
-
"shape": "
|
7865
|
+
"shape": "Sqc"
|
7589
7866
|
},
|
7590
7867
|
"LevelFive": {
|
7591
|
-
"shape": "
|
7868
|
+
"shape": "Sqc"
|
7592
7869
|
}
|
7593
7870
|
}
|
7594
7871
|
},
|
@@ -7700,6 +7977,72 @@
|
|
7700
7977
|
}
|
7701
7978
|
}
|
7702
7979
|
}
|
7980
|
+
},
|
7981
|
+
"UpdateViewContent": {
|
7982
|
+
"http": {
|
7983
|
+
"requestUri": "/views/{InstanceId}/{ViewId}"
|
7984
|
+
},
|
7985
|
+
"input": {
|
7986
|
+
"type": "structure",
|
7987
|
+
"required": [
|
7988
|
+
"InstanceId",
|
7989
|
+
"ViewId",
|
7990
|
+
"Status",
|
7991
|
+
"Content"
|
7992
|
+
],
|
7993
|
+
"members": {
|
7994
|
+
"InstanceId": {
|
7995
|
+
"location": "uri",
|
7996
|
+
"locationName": "InstanceId"
|
7997
|
+
},
|
7998
|
+
"ViewId": {
|
7999
|
+
"location": "uri",
|
8000
|
+
"locationName": "ViewId"
|
8001
|
+
},
|
8002
|
+
"Status": {},
|
8003
|
+
"Content": {
|
8004
|
+
"shape": "S85"
|
8005
|
+
}
|
8006
|
+
}
|
8007
|
+
},
|
8008
|
+
"output": {
|
8009
|
+
"type": "structure",
|
8010
|
+
"members": {
|
8011
|
+
"View": {
|
8012
|
+
"shape": "S8c"
|
8013
|
+
}
|
8014
|
+
}
|
8015
|
+
}
|
8016
|
+
},
|
8017
|
+
"UpdateViewMetadata": {
|
8018
|
+
"http": {
|
8019
|
+
"requestUri": "/views/{InstanceId}/{ViewId}/metadata"
|
8020
|
+
},
|
8021
|
+
"input": {
|
8022
|
+
"type": "structure",
|
8023
|
+
"required": [
|
8024
|
+
"InstanceId",
|
8025
|
+
"ViewId"
|
8026
|
+
],
|
8027
|
+
"members": {
|
8028
|
+
"InstanceId": {
|
8029
|
+
"location": "uri",
|
8030
|
+
"locationName": "InstanceId"
|
8031
|
+
},
|
8032
|
+
"ViewId": {
|
8033
|
+
"location": "uri",
|
8034
|
+
"locationName": "ViewId"
|
8035
|
+
},
|
8036
|
+
"Name": {
|
8037
|
+
"shape": "S8a"
|
8038
|
+
},
|
8039
|
+
"Description": {}
|
8040
|
+
}
|
8041
|
+
},
|
8042
|
+
"output": {
|
8043
|
+
"type": "structure",
|
8044
|
+
"members": {}
|
8045
|
+
}
|
7703
8046
|
}
|
7704
8047
|
},
|
7705
8048
|
"shapes": {
|
@@ -8341,7 +8684,67 @@
|
|
8341
8684
|
"type": "list",
|
8342
8685
|
"member": {}
|
8343
8686
|
},
|
8344
|
-
"
|
8687
|
+
"S85": {
|
8688
|
+
"type": "structure",
|
8689
|
+
"members": {
|
8690
|
+
"Template": {},
|
8691
|
+
"Actions": {
|
8692
|
+
"shape": "S87"
|
8693
|
+
}
|
8694
|
+
}
|
8695
|
+
},
|
8696
|
+
"S87": {
|
8697
|
+
"type": "list",
|
8698
|
+
"member": {
|
8699
|
+
"type": "string",
|
8700
|
+
"sensitive": true
|
8701
|
+
}
|
8702
|
+
},
|
8703
|
+
"S8a": {
|
8704
|
+
"type": "string",
|
8705
|
+
"sensitive": true
|
8706
|
+
},
|
8707
|
+
"S8c": {
|
8708
|
+
"type": "structure",
|
8709
|
+
"members": {
|
8710
|
+
"Id": {},
|
8711
|
+
"Arn": {},
|
8712
|
+
"Name": {
|
8713
|
+
"shape": "S8a"
|
8714
|
+
},
|
8715
|
+
"Status": {},
|
8716
|
+
"Type": {},
|
8717
|
+
"Description": {},
|
8718
|
+
"Version": {
|
8719
|
+
"type": "integer"
|
8720
|
+
},
|
8721
|
+
"VersionDescription": {},
|
8722
|
+
"Content": {
|
8723
|
+
"type": "structure",
|
8724
|
+
"members": {
|
8725
|
+
"InputSchema": {
|
8726
|
+
"type": "string",
|
8727
|
+
"sensitive": true
|
8728
|
+
},
|
8729
|
+
"Template": {},
|
8730
|
+
"Actions": {
|
8731
|
+
"shape": "S87"
|
8732
|
+
}
|
8733
|
+
}
|
8734
|
+
},
|
8735
|
+
"Tags": {
|
8736
|
+
"shape": "S1r"
|
8737
|
+
},
|
8738
|
+
"CreatedTime": {
|
8739
|
+
"type": "timestamp"
|
8740
|
+
},
|
8741
|
+
"LastModifiedTime": {
|
8742
|
+
"type": "timestamp"
|
8743
|
+
},
|
8744
|
+
"ViewContentSha256": {}
|
8745
|
+
}
|
8746
|
+
},
|
8747
|
+
"Sa4": {
|
8345
8748
|
"type": "structure",
|
8346
8749
|
"members": {
|
8347
8750
|
"Percentage": {
|
@@ -8355,7 +8758,7 @@
|
|
8355
8758
|
}
|
8356
8759
|
}
|
8357
8760
|
},
|
8358
|
-
"
|
8761
|
+
"Sa8": {
|
8359
8762
|
"type": "structure",
|
8360
8763
|
"members": {
|
8361
8764
|
"StringValue": {},
|
@@ -8368,7 +8771,7 @@
|
|
8368
8771
|
},
|
8369
8772
|
"union": true
|
8370
8773
|
},
|
8371
|
-
"
|
8774
|
+
"Sab": {
|
8372
8775
|
"type": "map",
|
8373
8776
|
"key": {},
|
8374
8777
|
"value": {
|
@@ -8378,7 +8781,7 @@
|
|
8378
8781
|
}
|
8379
8782
|
}
|
8380
8783
|
},
|
8381
|
-
"
|
8784
|
+
"Sax": {
|
8382
8785
|
"type": "structure",
|
8383
8786
|
"members": {
|
8384
8787
|
"HoursOfOperationId": {},
|
@@ -8394,14 +8797,14 @@
|
|
8394
8797
|
}
|
8395
8798
|
}
|
8396
8799
|
},
|
8397
|
-
"
|
8800
|
+
"Sb7": {
|
8398
8801
|
"type": "structure",
|
8399
8802
|
"members": {
|
8400
8803
|
"AttributeType": {},
|
8401
8804
|
"Value": {}
|
8402
8805
|
}
|
8403
8806
|
},
|
8404
|
-
"
|
8807
|
+
"Sbl": {
|
8405
8808
|
"type": "structure",
|
8406
8809
|
"members": {
|
8407
8810
|
"PromptARN": {},
|
@@ -8413,7 +8816,7 @@
|
|
8413
8816
|
}
|
8414
8817
|
}
|
8415
8818
|
},
|
8416
|
-
"
|
8819
|
+
"Sbo": {
|
8417
8820
|
"type": "structure",
|
8418
8821
|
"members": {
|
8419
8822
|
"Name": {},
|
@@ -8433,7 +8836,7 @@
|
|
8433
8836
|
}
|
8434
8837
|
}
|
8435
8838
|
},
|
8436
|
-
"
|
8839
|
+
"Sbs": {
|
8437
8840
|
"type": "structure",
|
8438
8841
|
"members": {
|
8439
8842
|
"QuickConnectARN": {},
|
@@ -8448,7 +8851,7 @@
|
|
8448
8851
|
}
|
8449
8852
|
}
|
8450
8853
|
},
|
8451
|
-
"
|
8854
|
+
"Sbv": {
|
8452
8855
|
"type": "structure",
|
8453
8856
|
"members": {
|
8454
8857
|
"InstanceId": {},
|
@@ -8472,7 +8875,7 @@
|
|
8472
8875
|
"AgentAvailabilityTimer": {}
|
8473
8876
|
}
|
8474
8877
|
},
|
8475
|
-
"
|
8878
|
+
"Sch": {
|
8476
8879
|
"type": "structure",
|
8477
8880
|
"members": {
|
8478
8881
|
"Id": {},
|
@@ -8480,7 +8883,7 @@
|
|
8480
8883
|
"Name": {}
|
8481
8884
|
}
|
8482
8885
|
},
|
8483
|
-
"
|
8886
|
+
"Scl": {
|
8484
8887
|
"type": "structure",
|
8485
8888
|
"members": {
|
8486
8889
|
"Id": {},
|
@@ -8488,90 +8891,90 @@
|
|
8488
8891
|
"Name": {}
|
8489
8892
|
}
|
8490
8893
|
},
|
8491
|
-
"
|
8894
|
+
"Sda": {
|
8492
8895
|
"type": "map",
|
8493
8896
|
"key": {},
|
8494
8897
|
"value": {}
|
8495
8898
|
},
|
8496
|
-
"
|
8899
|
+
"Sde": {
|
8497
8900
|
"type": "structure",
|
8498
8901
|
"members": {
|
8499
8902
|
"Queues": {
|
8500
|
-
"shape": "
|
8903
|
+
"shape": "Sdf"
|
8501
8904
|
},
|
8502
8905
|
"Channels": {
|
8503
8906
|
"type": "list",
|
8504
8907
|
"member": {}
|
8505
8908
|
},
|
8506
8909
|
"RoutingProfiles": {
|
8507
|
-
"shape": "
|
8910
|
+
"shape": "Sdh"
|
8508
8911
|
}
|
8509
8912
|
}
|
8510
8913
|
},
|
8511
|
-
"
|
8914
|
+
"Sdf": {
|
8512
8915
|
"type": "list",
|
8513
8916
|
"member": {}
|
8514
8917
|
},
|
8515
|
-
"
|
8918
|
+
"Sdh": {
|
8516
8919
|
"type": "list",
|
8517
8920
|
"member": {}
|
8518
8921
|
},
|
8519
|
-
"
|
8922
|
+
"Sdi": {
|
8520
8923
|
"type": "list",
|
8521
8924
|
"member": {}
|
8522
8925
|
},
|
8523
|
-
"
|
8926
|
+
"Sdl": {
|
8524
8927
|
"type": "structure",
|
8525
8928
|
"members": {
|
8526
8929
|
"Name": {},
|
8527
8930
|
"Unit": {}
|
8528
8931
|
}
|
8529
8932
|
},
|
8530
|
-
"
|
8933
|
+
"Sdw": {
|
8531
8934
|
"type": "structure",
|
8532
8935
|
"members": {
|
8533
8936
|
"Queue": {
|
8534
|
-
"shape": "
|
8937
|
+
"shape": "Sdx"
|
8535
8938
|
},
|
8536
8939
|
"Channel": {},
|
8537
8940
|
"RoutingProfile": {
|
8538
|
-
"shape": "
|
8941
|
+
"shape": "Sdy"
|
8539
8942
|
}
|
8540
8943
|
}
|
8541
8944
|
},
|
8542
|
-
"
|
8945
|
+
"Sdx": {
|
8543
8946
|
"type": "structure",
|
8544
8947
|
"members": {
|
8545
8948
|
"Id": {},
|
8546
8949
|
"Arn": {}
|
8547
8950
|
}
|
8548
8951
|
},
|
8549
|
-
"
|
8952
|
+
"Sdy": {
|
8550
8953
|
"type": "structure",
|
8551
8954
|
"members": {
|
8552
8955
|
"Id": {},
|
8553
8956
|
"Arn": {}
|
8554
8957
|
}
|
8555
8958
|
},
|
8556
|
-
"
|
8959
|
+
"Sef": {
|
8557
8960
|
"type": "structure",
|
8558
8961
|
"members": {
|
8559
8962
|
"Id": {},
|
8560
8963
|
"Arn": {}
|
8561
8964
|
}
|
8562
8965
|
},
|
8563
|
-
"
|
8966
|
+
"Seh": {
|
8564
8967
|
"type": "map",
|
8565
8968
|
"key": {},
|
8566
8969
|
"value": {
|
8567
8970
|
"type": "integer"
|
8568
8971
|
}
|
8569
8972
|
},
|
8570
|
-
"
|
8973
|
+
"Seo": {
|
8571
8974
|
"type": "string",
|
8572
8975
|
"sensitive": true
|
8573
8976
|
},
|
8574
|
-
"
|
8977
|
+
"Ser": {
|
8575
8978
|
"type": "structure",
|
8576
8979
|
"members": {
|
8577
8980
|
"Name": {},
|
@@ -8588,7 +8991,7 @@
|
|
8588
8991
|
"Unit": {}
|
8589
8992
|
}
|
8590
8993
|
},
|
8591
|
-
"
|
8994
|
+
"Sfa": {
|
8592
8995
|
"type": "structure",
|
8593
8996
|
"members": {
|
8594
8997
|
"Name": {},
|
@@ -8619,18 +9022,18 @@
|
|
8619
9022
|
}
|
8620
9023
|
}
|
8621
9024
|
},
|
8622
|
-
"
|
9025
|
+
"Sfy": {
|
8623
9026
|
"type": "structure",
|
8624
9027
|
"required": [
|
8625
9028
|
"Distributions"
|
8626
9029
|
],
|
8627
9030
|
"members": {
|
8628
9031
|
"Distributions": {
|
8629
|
-
"shape": "
|
9032
|
+
"shape": "Sfz"
|
8630
9033
|
}
|
8631
9034
|
}
|
8632
9035
|
},
|
8633
|
-
"
|
9036
|
+
"Sfz": {
|
8634
9037
|
"type": "list",
|
8635
9038
|
"member": {
|
8636
9039
|
"type": "structure",
|
@@ -8646,7 +9049,7 @@
|
|
8646
9049
|
}
|
8647
9050
|
}
|
8648
9051
|
},
|
8649
|
-
"
|
9052
|
+
"Sg3": {
|
8650
9053
|
"type": "structure",
|
8651
9054
|
"required": [
|
8652
9055
|
"Distributions"
|
@@ -8670,26 +9073,26 @@
|
|
8670
9073
|
}
|
8671
9074
|
}
|
8672
9075
|
},
|
8673
|
-
"
|
9076
|
+
"Sg6": {
|
8674
9077
|
"type": "structure",
|
8675
9078
|
"required": [
|
8676
9079
|
"Distributions"
|
8677
9080
|
],
|
8678
9081
|
"members": {
|
8679
9082
|
"Distributions": {
|
8680
|
-
"shape": "
|
9083
|
+
"shape": "Sfz"
|
8681
9084
|
}
|
8682
9085
|
}
|
8683
9086
|
},
|
8684
|
-
"
|
9087
|
+
"Sig": {
|
8685
9088
|
"type": "list",
|
8686
9089
|
"member": {}
|
8687
9090
|
},
|
8688
|
-
"
|
9091
|
+
"Sih": {
|
8689
9092
|
"type": "list",
|
8690
9093
|
"member": {}
|
8691
9094
|
},
|
8692
|
-
"
|
9095
|
+
"Siy": {
|
8693
9096
|
"type": "list",
|
8694
9097
|
"member": {
|
8695
9098
|
"type": "structure",
|
@@ -8701,57 +9104,57 @@
|
|
8701
9104
|
}
|
8702
9105
|
}
|
8703
9106
|
},
|
8704
|
-
"
|
9107
|
+
"Slg": {
|
8705
9108
|
"type": "structure",
|
8706
9109
|
"members": {
|
8707
9110
|
"OrConditions": {
|
8708
9111
|
"type": "list",
|
8709
9112
|
"member": {
|
8710
|
-
"shape": "
|
9113
|
+
"shape": "Sli"
|
8711
9114
|
}
|
8712
9115
|
},
|
8713
9116
|
"AndConditions": {
|
8714
|
-
"shape": "
|
9117
|
+
"shape": "Sli"
|
8715
9118
|
},
|
8716
9119
|
"TagCondition": {
|
8717
|
-
"shape": "
|
9120
|
+
"shape": "Slj"
|
8718
9121
|
}
|
8719
9122
|
}
|
8720
9123
|
},
|
8721
|
-
"
|
9124
|
+
"Sli": {
|
8722
9125
|
"type": "list",
|
8723
9126
|
"member": {
|
8724
|
-
"shape": "
|
9127
|
+
"shape": "Slj"
|
8725
9128
|
}
|
8726
9129
|
},
|
8727
|
-
"
|
9130
|
+
"Slj": {
|
8728
9131
|
"type": "structure",
|
8729
9132
|
"members": {
|
8730
9133
|
"TagKey": {},
|
8731
9134
|
"TagValue": {}
|
8732
9135
|
}
|
8733
9136
|
},
|
8734
|
-
"
|
9137
|
+
"Slk": {
|
8735
9138
|
"type": "structure",
|
8736
9139
|
"members": {
|
8737
9140
|
"OrConditions": {
|
8738
|
-
"shape": "
|
9141
|
+
"shape": "Sll"
|
8739
9142
|
},
|
8740
9143
|
"AndConditions": {
|
8741
|
-
"shape": "
|
9144
|
+
"shape": "Sll"
|
8742
9145
|
},
|
8743
9146
|
"StringCondition": {
|
8744
|
-
"shape": "
|
9147
|
+
"shape": "Slm"
|
8745
9148
|
}
|
8746
9149
|
}
|
8747
9150
|
},
|
8748
|
-
"
|
9151
|
+
"Sll": {
|
8749
9152
|
"type": "list",
|
8750
9153
|
"member": {
|
8751
|
-
"shape": "
|
9154
|
+
"shape": "Slk"
|
8752
9155
|
}
|
8753
9156
|
},
|
8754
|
-
"
|
9157
|
+
"Slm": {
|
8755
9158
|
"type": "structure",
|
8756
9159
|
"members": {
|
8757
9160
|
"FieldName": {},
|
@@ -8759,118 +9162,118 @@
|
|
8759
9162
|
"ComparisonType": {}
|
8760
9163
|
}
|
8761
9164
|
},
|
8762
|
-
"
|
9165
|
+
"Sls": {
|
8763
9166
|
"type": "structure",
|
8764
9167
|
"members": {
|
8765
9168
|
"OrConditions": {
|
8766
|
-
"shape": "
|
9169
|
+
"shape": "Slt"
|
8767
9170
|
},
|
8768
9171
|
"AndConditions": {
|
8769
|
-
"shape": "
|
9172
|
+
"shape": "Slt"
|
8770
9173
|
},
|
8771
9174
|
"StringCondition": {
|
8772
|
-
"shape": "
|
9175
|
+
"shape": "Slm"
|
8773
9176
|
}
|
8774
9177
|
}
|
8775
9178
|
},
|
8776
|
-
"
|
9179
|
+
"Slt": {
|
8777
9180
|
"type": "list",
|
8778
9181
|
"member": {
|
8779
|
-
"shape": "
|
9182
|
+
"shape": "Sls"
|
8780
9183
|
}
|
8781
9184
|
},
|
8782
|
-
"
|
9185
|
+
"Sly": {
|
8783
9186
|
"type": "structure",
|
8784
9187
|
"members": {
|
8785
9188
|
"OrConditions": {
|
8786
|
-
"shape": "
|
9189
|
+
"shape": "Slz"
|
8787
9190
|
},
|
8788
9191
|
"AndConditions": {
|
8789
|
-
"shape": "
|
9192
|
+
"shape": "Slz"
|
8790
9193
|
},
|
8791
9194
|
"StringCondition": {
|
8792
|
-
"shape": "
|
9195
|
+
"shape": "Slm"
|
8793
9196
|
},
|
8794
9197
|
"QueueTypeCondition": {}
|
8795
9198
|
}
|
8796
9199
|
},
|
8797
|
-
"
|
9200
|
+
"Slz": {
|
8798
9201
|
"type": "list",
|
8799
9202
|
"member": {
|
8800
|
-
"shape": "
|
9203
|
+
"shape": "Sly"
|
8801
9204
|
}
|
8802
9205
|
},
|
8803
|
-
"
|
9206
|
+
"Sm5": {
|
8804
9207
|
"type": "structure",
|
8805
9208
|
"members": {
|
8806
9209
|
"OrConditions": {
|
8807
|
-
"shape": "
|
9210
|
+
"shape": "Sm6"
|
8808
9211
|
},
|
8809
9212
|
"AndConditions": {
|
8810
|
-
"shape": "
|
9213
|
+
"shape": "Sm6"
|
8811
9214
|
},
|
8812
9215
|
"StringCondition": {
|
8813
|
-
"shape": "
|
9216
|
+
"shape": "Slm"
|
8814
9217
|
}
|
8815
9218
|
}
|
8816
9219
|
},
|
8817
|
-
"
|
9220
|
+
"Sm6": {
|
8818
9221
|
"type": "list",
|
8819
9222
|
"member": {
|
8820
|
-
"shape": "
|
9223
|
+
"shape": "Sm5"
|
8821
9224
|
}
|
8822
9225
|
},
|
8823
|
-
"
|
9226
|
+
"Smk": {
|
8824
9227
|
"type": "structure",
|
8825
9228
|
"members": {
|
8826
9229
|
"OrConditions": {
|
8827
|
-
"shape": "
|
9230
|
+
"shape": "Sml"
|
8828
9231
|
},
|
8829
9232
|
"AndConditions": {
|
8830
|
-
"shape": "
|
9233
|
+
"shape": "Sml"
|
8831
9234
|
},
|
8832
9235
|
"StringCondition": {
|
8833
|
-
"shape": "
|
9236
|
+
"shape": "Slm"
|
8834
9237
|
}
|
8835
9238
|
}
|
8836
9239
|
},
|
8837
|
-
"
|
9240
|
+
"Sml": {
|
8838
9241
|
"type": "list",
|
8839
9242
|
"member": {
|
8840
|
-
"shape": "
|
9243
|
+
"shape": "Smk"
|
8841
9244
|
}
|
8842
9245
|
},
|
8843
|
-
"
|
9246
|
+
"Smp": {
|
8844
9247
|
"type": "structure",
|
8845
9248
|
"members": {
|
8846
9249
|
"OrConditions": {
|
8847
|
-
"shape": "
|
9250
|
+
"shape": "Smq"
|
8848
9251
|
},
|
8849
9252
|
"AndConditions": {
|
8850
|
-
"shape": "
|
9253
|
+
"shape": "Smq"
|
8851
9254
|
},
|
8852
9255
|
"StringCondition": {
|
8853
|
-
"shape": "
|
9256
|
+
"shape": "Slm"
|
8854
9257
|
}
|
8855
9258
|
}
|
8856
9259
|
},
|
8857
|
-
"
|
9260
|
+
"Smq": {
|
8858
9261
|
"type": "list",
|
8859
9262
|
"member": {
|
8860
|
-
"shape": "
|
9263
|
+
"shape": "Smp"
|
8861
9264
|
}
|
8862
9265
|
},
|
8863
|
-
"
|
9266
|
+
"Smx": {
|
8864
9267
|
"type": "structure",
|
8865
9268
|
"members": {
|
8866
9269
|
"OrConditions": {
|
8867
|
-
"shape": "
|
9270
|
+
"shape": "Smy"
|
8868
9271
|
},
|
8869
9272
|
"AndConditions": {
|
8870
|
-
"shape": "
|
9273
|
+
"shape": "Smy"
|
8871
9274
|
},
|
8872
9275
|
"StringCondition": {
|
8873
|
-
"shape": "
|
9276
|
+
"shape": "Slm"
|
8874
9277
|
},
|
8875
9278
|
"HierarchyGroupCondition": {
|
8876
9279
|
"type": "structure",
|
@@ -8881,25 +9284,25 @@
|
|
8881
9284
|
}
|
8882
9285
|
}
|
8883
9286
|
},
|
8884
|
-
"
|
9287
|
+
"Smy": {
|
8885
9288
|
"type": "list",
|
8886
9289
|
"member": {
|
8887
|
-
"shape": "
|
9290
|
+
"shape": "Smx"
|
8888
9291
|
}
|
8889
9292
|
},
|
8890
|
-
"
|
9293
|
+
"So9": {
|
8891
9294
|
"type": "map",
|
8892
9295
|
"key": {},
|
8893
9296
|
"value": {
|
8894
9297
|
"type": "structure",
|
8895
9298
|
"members": {
|
8896
9299
|
"Value": {
|
8897
|
-
"shape": "
|
9300
|
+
"shape": "Sa8"
|
8898
9301
|
}
|
8899
9302
|
}
|
8900
9303
|
}
|
8901
9304
|
},
|
8902
|
-
"
|
9305
|
+
"Sqc": {
|
8903
9306
|
"type": "structure",
|
8904
9307
|
"required": [
|
8905
9308
|
"Name"
|