cdk-comprehend-s3olap 2.0.121 → 2.0.122
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/.jsii +4 -4
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/@esbuild/linux-x64/bin/esbuild +0 -0
- package/node_modules/@esbuild/linux-x64/package.json +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +9 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +196 -187
- package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +82 -15
- package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +56 -32
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +224 -138
- package/node_modules/aws-sdk/clients/connect.d.ts +15 -4
- package/node_modules/aws-sdk/clients/ecs.d.ts +24 -24
- package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +67 -7
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +20 -1
- package/node_modules/aws-sdk/clients/omics.d.ts +2 -2
- package/node_modules/aws-sdk/clients/rekognition.d.ts +114 -16
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +2532 -875
- package/node_modules/aws-sdk/dist/aws-sdk.js +505 -343
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +79 -79
- package/node_modules/aws-sdk/dist/xml2js.js +2579 -922
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +2 -2
- package/node_modules/esbuild/bin/esbuild +1 -1
- package/node_modules/esbuild/lib/main.js +8 -8
- package/node_modules/esbuild/package.json +23 -23
- package/node_modules/xml2js/README.md +108 -7
- package/node_modules/xml2js/lib/parser.js +35 -7
- package/node_modules/xml2js/lib/xml2js.js +2 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/CHANGELOG.md +47 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/LICENSE +21 -21
- package/node_modules/xml2js/node_modules/xmlbuilder/README.md +86 -85
- package/node_modules/xml2js/node_modules/xmlbuilder/appveyor.yml +20 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/Derivation.js +10 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/DocumentPosition.js +12 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/NodeType.js +23 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/OperationType.js +11 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/Utility.js +11 -1
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/WriterState.js +10 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLAttribute.js +86 -9
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCData.js +10 -6
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCharacterData.js +79 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLComment.js +10 -6
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMConfiguration.js +64 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js +16 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMImplementation.js +32 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMStringList.js +28 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDAttList.js +16 -11
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDElement.js +7 -4
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDEntity.js +49 -8
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDNotation.js +20 -5
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDeclaration.js +5 -2
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocType.js +84 -5
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocument.js +199 -5
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentCB.js +165 -39
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentFragment.js +24 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDummy.js +31 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLElement.js +207 -20
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNamedNodeMap.js +58 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNode.js +403 -50
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeFilter.js +48 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeList.js +28 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js +19 -5
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLRaw.js +6 -3
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStreamWriter.js +94 -197
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringWriter.js +6 -305
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringifier.js +109 -32
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLText.js +43 -6
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLTypeInfo.js +21 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLUserDataHandler.js +16 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLWriterBase.js +397 -59
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/index.js +15 -3
- package/node_modules/xml2js/node_modules/xmlbuilder/package.json +5 -3
- package/node_modules/xml2js/node_modules/xmlbuilder/typings/index.d.ts +153 -0
- package/node_modules/xml2js/package.json +11 -5
- package/package.json +4 -4
- package/node_modules/xml2js/node_modules/xmlbuilder/.npmignore +0 -5
@@ -640,11 +640,11 @@
|
|
640
640
|
},
|
641
641
|
"Name": {},
|
642
642
|
"TriggerEventSource": {
|
643
|
-
"shape": "
|
643
|
+
"shape": "S3o"
|
644
644
|
},
|
645
645
|
"Function": {},
|
646
646
|
"Actions": {
|
647
|
-
"shape": "
|
647
|
+
"shape": "S3r"
|
648
648
|
},
|
649
649
|
"PublishStatus": {},
|
650
650
|
"ClientToken": {
|
@@ -679,7 +679,7 @@
|
|
679
679
|
"SecurityProfileName": {},
|
680
680
|
"Description": {},
|
681
681
|
"Permissions": {
|
682
|
-
"shape": "
|
682
|
+
"shape": "S4k"
|
683
683
|
},
|
684
684
|
"InstanceId": {
|
685
685
|
"location": "uri",
|
@@ -689,10 +689,10 @@
|
|
689
689
|
"shape": "S1j"
|
690
690
|
},
|
691
691
|
"AllowedAccessControlTags": {
|
692
|
-
"shape": "
|
692
|
+
"shape": "S4m"
|
693
693
|
},
|
694
694
|
"TagRestrictedResources": {
|
695
|
-
"shape": "
|
695
|
+
"shape": "S4p"
|
696
696
|
}
|
697
697
|
}
|
698
698
|
},
|
@@ -725,14 +725,14 @@
|
|
725
725
|
"Description": {},
|
726
726
|
"ContactFlowId": {},
|
727
727
|
"Constraints": {
|
728
|
-
"shape": "
|
728
|
+
"shape": "S4w"
|
729
729
|
},
|
730
730
|
"Defaults": {
|
731
|
-
"shape": "
|
731
|
+
"shape": "S55"
|
732
732
|
},
|
733
733
|
"Status": {},
|
734
734
|
"Fields": {
|
735
|
-
"shape": "
|
735
|
+
"shape": "S5a"
|
736
736
|
},
|
737
737
|
"ClientToken": {
|
738
738
|
"idempotencyToken": true
|
@@ -835,14 +835,14 @@
|
|
835
835
|
"Username": {},
|
836
836
|
"Password": {},
|
837
837
|
"IdentityInfo": {
|
838
|
-
"shape": "
|
838
|
+
"shape": "S5x"
|
839
839
|
},
|
840
840
|
"PhoneConfig": {
|
841
|
-
"shape": "
|
841
|
+
"shape": "S61"
|
842
842
|
},
|
843
843
|
"DirectoryUserId": {},
|
844
844
|
"SecurityProfileIds": {
|
845
|
-
"shape": "
|
845
|
+
"shape": "S66"
|
846
846
|
},
|
847
847
|
"RoutingProfileId": {},
|
848
848
|
"HierarchyGroupId": {},
|
@@ -1611,7 +1611,7 @@
|
|
1611
1611
|
"type": "structure",
|
1612
1612
|
"members": {
|
1613
1613
|
"Attribute": {
|
1614
|
-
"shape": "
|
1614
|
+
"shape": "S82"
|
1615
1615
|
}
|
1616
1616
|
}
|
1617
1617
|
}
|
@@ -1723,7 +1723,7 @@
|
|
1723
1723
|
"type": "structure",
|
1724
1724
|
"members": {
|
1725
1725
|
"Queue": {
|
1726
|
-
"shape": "
|
1726
|
+
"shape": "S8g"
|
1727
1727
|
}
|
1728
1728
|
}
|
1729
1729
|
}
|
@@ -1797,7 +1797,7 @@
|
|
1797
1797
|
"type": "structure",
|
1798
1798
|
"members": {
|
1799
1799
|
"RoutingProfile": {
|
1800
|
-
"shape": "
|
1800
|
+
"shape": "S8n"
|
1801
1801
|
}
|
1802
1802
|
}
|
1803
1803
|
}
|
@@ -1849,11 +1849,11 @@
|
|
1849
1849
|
"RuleId": {},
|
1850
1850
|
"RuleArn": {},
|
1851
1851
|
"TriggerEventSource": {
|
1852
|
-
"shape": "
|
1852
|
+
"shape": "S3o"
|
1853
1853
|
},
|
1854
1854
|
"Function": {},
|
1855
1855
|
"Actions": {
|
1856
|
-
"shape": "
|
1856
|
+
"shape": "S3r"
|
1857
1857
|
},
|
1858
1858
|
"PublishStatus": {},
|
1859
1859
|
"CreatedTime": {
|
@@ -1908,10 +1908,10 @@
|
|
1908
1908
|
"shape": "S1j"
|
1909
1909
|
},
|
1910
1910
|
"AllowedAccessControlTags": {
|
1911
|
-
"shape": "
|
1911
|
+
"shape": "S4m"
|
1912
1912
|
},
|
1913
1913
|
"TagRestrictedResources": {
|
1914
|
-
"shape": "
|
1914
|
+
"shape": "S4p"
|
1915
1915
|
}
|
1916
1916
|
}
|
1917
1917
|
}
|
@@ -1987,14 +1987,14 @@
|
|
1987
1987
|
"Arn": {},
|
1988
1988
|
"Username": {},
|
1989
1989
|
"IdentityInfo": {
|
1990
|
-
"shape": "
|
1990
|
+
"shape": "S5x"
|
1991
1991
|
},
|
1992
1992
|
"PhoneConfig": {
|
1993
|
-
"shape": "
|
1993
|
+
"shape": "S61"
|
1994
1994
|
},
|
1995
1995
|
"DirectoryUserId": {},
|
1996
1996
|
"SecurityProfileIds": {
|
1997
|
-
"shape": "
|
1997
|
+
"shape": "S66"
|
1998
1998
|
},
|
1999
1999
|
"RoutingProfileId": {},
|
2000
2000
|
"HierarchyGroupId": {},
|
@@ -2042,19 +2042,19 @@
|
|
2042
2042
|
"type": "structure",
|
2043
2043
|
"members": {
|
2044
2044
|
"LevelOne": {
|
2045
|
-
"shape": "
|
2045
|
+
"shape": "S99"
|
2046
2046
|
},
|
2047
2047
|
"LevelTwo": {
|
2048
|
-
"shape": "
|
2048
|
+
"shape": "S99"
|
2049
2049
|
},
|
2050
2050
|
"LevelThree": {
|
2051
|
-
"shape": "
|
2051
|
+
"shape": "S99"
|
2052
2052
|
},
|
2053
2053
|
"LevelFour": {
|
2054
|
-
"shape": "
|
2054
|
+
"shape": "S99"
|
2055
2055
|
},
|
2056
2056
|
"LevelFive": {
|
2057
|
-
"shape": "
|
2057
|
+
"shape": "S99"
|
2058
2058
|
}
|
2059
2059
|
}
|
2060
2060
|
},
|
@@ -2090,19 +2090,19 @@
|
|
2090
2090
|
"type": "structure",
|
2091
2091
|
"members": {
|
2092
2092
|
"LevelOne": {
|
2093
|
-
"shape": "
|
2093
|
+
"shape": "S9d"
|
2094
2094
|
},
|
2095
2095
|
"LevelTwo": {
|
2096
|
-
"shape": "
|
2096
|
+
"shape": "S9d"
|
2097
2097
|
},
|
2098
2098
|
"LevelThree": {
|
2099
|
-
"shape": "
|
2099
|
+
"shape": "S9d"
|
2100
2100
|
},
|
2101
2101
|
"LevelFour": {
|
2102
|
-
"shape": "
|
2102
|
+
"shape": "S9d"
|
2103
2103
|
},
|
2104
2104
|
"LevelFive": {
|
2105
|
-
"shape": "
|
2105
|
+
"shape": "S9d"
|
2106
2106
|
}
|
2107
2107
|
}
|
2108
2108
|
}
|
@@ -2446,7 +2446,7 @@
|
|
2446
2446
|
"type": "structure",
|
2447
2447
|
"members": {
|
2448
2448
|
"Attributes": {
|
2449
|
-
"shape": "
|
2449
|
+
"shape": "S9y"
|
2450
2450
|
}
|
2451
2451
|
}
|
2452
2452
|
}
|
@@ -2468,15 +2468,15 @@
|
|
2468
2468
|
"locationName": "InstanceId"
|
2469
2469
|
},
|
2470
2470
|
"Filters": {
|
2471
|
-
"shape": "
|
2471
|
+
"shape": "Sa2"
|
2472
2472
|
},
|
2473
2473
|
"Groupings": {
|
2474
|
-
"shape": "
|
2474
|
+
"shape": "Sa6"
|
2475
2475
|
},
|
2476
2476
|
"CurrentMetrics": {
|
2477
2477
|
"type": "list",
|
2478
2478
|
"member": {
|
2479
|
-
"shape": "
|
2479
|
+
"shape": "Sa9"
|
2480
2480
|
}
|
2481
2481
|
},
|
2482
2482
|
"NextToken": {},
|
@@ -2505,7 +2505,7 @@
|
|
2505
2505
|
"type": "structure",
|
2506
2506
|
"members": {
|
2507
2507
|
"Dimensions": {
|
2508
|
-
"shape": "
|
2508
|
+
"shape": "Sak"
|
2509
2509
|
},
|
2510
2510
|
"Collections": {
|
2511
2511
|
"type": "list",
|
@@ -2513,7 +2513,7 @@
|
|
2513
2513
|
"type": "structure",
|
2514
2514
|
"members": {
|
2515
2515
|
"Metric": {
|
2516
|
-
"shape": "
|
2516
|
+
"shape": "Sa9"
|
2517
2517
|
},
|
2518
2518
|
"Value": {
|
2519
2519
|
"type": "double"
|
@@ -2552,7 +2552,7 @@
|
|
2552
2552
|
"type": "structure",
|
2553
2553
|
"members": {
|
2554
2554
|
"Queues": {
|
2555
|
-
"shape": "
|
2555
|
+
"shape": "Sa3"
|
2556
2556
|
},
|
2557
2557
|
"ContactFilter": {
|
2558
2558
|
"type": "structure",
|
@@ -2564,7 +2564,7 @@
|
|
2564
2564
|
}
|
2565
2565
|
},
|
2566
2566
|
"RoutingProfiles": {
|
2567
|
-
"shape": "
|
2567
|
+
"shape": "Sa5"
|
2568
2568
|
},
|
2569
2569
|
"Agents": {
|
2570
2570
|
"type": "list",
|
@@ -2599,25 +2599,25 @@
|
|
2599
2599
|
}
|
2600
2600
|
},
|
2601
2601
|
"RoutingProfile": {
|
2602
|
-
"shape": "
|
2602
|
+
"shape": "Sam"
|
2603
2603
|
},
|
2604
2604
|
"HierarchyPath": {
|
2605
2605
|
"type": "structure",
|
2606
2606
|
"members": {
|
2607
2607
|
"LevelOne": {
|
2608
|
-
"shape": "
|
2608
|
+
"shape": "Sb3"
|
2609
2609
|
},
|
2610
2610
|
"LevelTwo": {
|
2611
|
-
"shape": "
|
2611
|
+
"shape": "Sb3"
|
2612
2612
|
},
|
2613
2613
|
"LevelThree": {
|
2614
|
-
"shape": "
|
2614
|
+
"shape": "Sb3"
|
2615
2615
|
},
|
2616
2616
|
"LevelFour": {
|
2617
|
-
"shape": "
|
2617
|
+
"shape": "Sb3"
|
2618
2618
|
},
|
2619
2619
|
"LevelFive": {
|
2620
|
-
"shape": "
|
2620
|
+
"shape": "Sb3"
|
2621
2621
|
}
|
2622
2622
|
}
|
2623
2623
|
},
|
@@ -2632,13 +2632,13 @@
|
|
2632
2632
|
}
|
2633
2633
|
},
|
2634
2634
|
"AvailableSlotsByChannel": {
|
2635
|
-
"shape": "
|
2635
|
+
"shape": "Sb5"
|
2636
2636
|
},
|
2637
2637
|
"MaxSlotsByChannel": {
|
2638
|
-
"shape": "
|
2638
|
+
"shape": "Sb5"
|
2639
2639
|
},
|
2640
2640
|
"ActiveSlotsByChannel": {
|
2641
|
-
"shape": "
|
2641
|
+
"shape": "Sb5"
|
2642
2642
|
},
|
2643
2643
|
"Contacts": {
|
2644
2644
|
"type": "list",
|
@@ -2656,7 +2656,7 @@
|
|
2656
2656
|
"type": "timestamp"
|
2657
2657
|
},
|
2658
2658
|
"Queue": {
|
2659
|
-
"shape": "
|
2659
|
+
"shape": "Sal"
|
2660
2660
|
}
|
2661
2661
|
}
|
2662
2662
|
}
|
@@ -2695,13 +2695,13 @@
|
|
2695
2695
|
"type": "structure",
|
2696
2696
|
"members": {
|
2697
2697
|
"AccessToken": {
|
2698
|
-
"shape": "
|
2698
|
+
"shape": "Sbc"
|
2699
2699
|
},
|
2700
2700
|
"AccessTokenExpiration": {
|
2701
2701
|
"type": "timestamp"
|
2702
2702
|
},
|
2703
2703
|
"RefreshToken": {
|
2704
|
-
"shape": "
|
2704
|
+
"shape": "Sbc"
|
2705
2705
|
},
|
2706
2706
|
"RefreshTokenExpiration": {
|
2707
2707
|
"type": "timestamp"
|
@@ -2739,15 +2739,15 @@
|
|
2739
2739
|
"type": "timestamp"
|
2740
2740
|
},
|
2741
2741
|
"Filters": {
|
2742
|
-
"shape": "
|
2742
|
+
"shape": "Sa2"
|
2743
2743
|
},
|
2744
2744
|
"Groupings": {
|
2745
|
-
"shape": "
|
2745
|
+
"shape": "Sa6"
|
2746
2746
|
},
|
2747
2747
|
"HistoricalMetrics": {
|
2748
2748
|
"type": "list",
|
2749
2749
|
"member": {
|
2750
|
-
"shape": "
|
2750
|
+
"shape": "Sbg"
|
2751
2751
|
}
|
2752
2752
|
},
|
2753
2753
|
"NextToken": {},
|
@@ -2766,7 +2766,7 @@
|
|
2766
2766
|
"type": "structure",
|
2767
2767
|
"members": {
|
2768
2768
|
"Dimensions": {
|
2769
|
-
"shape": "
|
2769
|
+
"shape": "Sak"
|
2770
2770
|
},
|
2771
2771
|
"Collections": {
|
2772
2772
|
"type": "list",
|
@@ -2774,7 +2774,7 @@
|
|
2774
2774
|
"type": "structure",
|
2775
2775
|
"members": {
|
2776
2776
|
"Metric": {
|
2777
|
-
"shape": "
|
2777
|
+
"shape": "Sbg"
|
2778
2778
|
},
|
2779
2779
|
"Value": {
|
2780
2780
|
"type": "double"
|
@@ -2829,7 +2829,7 @@
|
|
2829
2829
|
"Metrics": {
|
2830
2830
|
"type": "list",
|
2831
2831
|
"member": {
|
2832
|
-
"shape": "
|
2832
|
+
"shape": "Sbz"
|
2833
2833
|
}
|
2834
2834
|
},
|
2835
2835
|
"NextToken": {},
|
@@ -2858,7 +2858,7 @@
|
|
2858
2858
|
"type": "structure",
|
2859
2859
|
"members": {
|
2860
2860
|
"Metric": {
|
2861
|
-
"shape": "
|
2861
|
+
"shape": "Sbz"
|
2862
2862
|
},
|
2863
2863
|
"Value": {
|
2864
2864
|
"type": "double"
|
@@ -2913,13 +2913,13 @@
|
|
2913
2913
|
"Description": {},
|
2914
2914
|
"ContactFlowId": {},
|
2915
2915
|
"Constraints": {
|
2916
|
-
"shape": "
|
2916
|
+
"shape": "S4w"
|
2917
2917
|
},
|
2918
2918
|
"Defaults": {
|
2919
|
-
"shape": "
|
2919
|
+
"shape": "S55"
|
2920
2920
|
},
|
2921
2921
|
"Fields": {
|
2922
|
-
"shape": "
|
2922
|
+
"shape": "S5a"
|
2923
2923
|
},
|
2924
2924
|
"Status": {},
|
2925
2925
|
"LastModifiedTime": {
|
@@ -2955,7 +2955,7 @@
|
|
2955
2955
|
"type": "structure",
|
2956
2956
|
"members": {
|
2957
2957
|
"TelephonyConfig": {
|
2958
|
-
"shape": "
|
2958
|
+
"shape": "Sck"
|
2959
2959
|
},
|
2960
2960
|
"Id": {},
|
2961
2961
|
"Arn": {}
|
@@ -3420,7 +3420,7 @@
|
|
3420
3420
|
"Attributes": {
|
3421
3421
|
"type": "list",
|
3422
3422
|
"member": {
|
3423
|
-
"shape": "
|
3423
|
+
"shape": "S82"
|
3424
3424
|
}
|
3425
3425
|
},
|
3426
3426
|
"NextToken": {}
|
@@ -3667,12 +3667,12 @@
|
|
3667
3667
|
"locationName": "InstanceId"
|
3668
3668
|
},
|
3669
3669
|
"PhoneNumberTypes": {
|
3670
|
-
"shape": "
|
3670
|
+
"shape": "Sem",
|
3671
3671
|
"location": "querystring",
|
3672
3672
|
"locationName": "phoneNumberTypes"
|
3673
3673
|
},
|
3674
3674
|
"PhoneNumberCountryCodes": {
|
3675
|
-
"shape": "
|
3675
|
+
"shape": "Sen",
|
3676
3676
|
"location": "querystring",
|
3677
3677
|
"locationName": "phoneNumberCountryCodes"
|
3678
3678
|
},
|
@@ -3720,10 +3720,10 @@
|
|
3720
3720
|
},
|
3721
3721
|
"NextToken": {},
|
3722
3722
|
"PhoneNumberCountryCodes": {
|
3723
|
-
"shape": "
|
3723
|
+
"shape": "Sen"
|
3724
3724
|
},
|
3725
3725
|
"PhoneNumberTypes": {
|
3726
|
-
"shape": "
|
3726
|
+
"shape": "Sem"
|
3727
3727
|
},
|
3728
3728
|
"PhoneNumberPrefix": {}
|
3729
3729
|
}
|
@@ -3829,7 +3829,7 @@
|
|
3829
3829
|
"members": {
|
3830
3830
|
"NextToken": {},
|
3831
3831
|
"QuickConnectSummaryList": {
|
3832
|
-
"shape": "
|
3832
|
+
"shape": "Sf5"
|
3833
3833
|
}
|
3834
3834
|
}
|
3835
3835
|
}
|
@@ -3921,7 +3921,7 @@
|
|
3921
3921
|
"type": "structure",
|
3922
3922
|
"members": {
|
3923
3923
|
"QuickConnectSummaryList": {
|
3924
|
-
"shape": "
|
3924
|
+
"shape": "Sf5"
|
3925
3925
|
},
|
3926
3926
|
"NextToken": {}
|
3927
3927
|
}
|
@@ -4201,7 +4201,7 @@
|
|
4201
4201
|
"type": "structure",
|
4202
4202
|
"members": {
|
4203
4203
|
"Permissions": {
|
4204
|
-
"shape": "
|
4204
|
+
"shape": "S4k"
|
4205
4205
|
},
|
4206
4206
|
"NextToken": {}
|
4207
4207
|
}
|
@@ -4461,7 +4461,7 @@
|
|
4461
4461
|
"UserHierarchyGroupSummaryList": {
|
4462
4462
|
"type": "list",
|
4463
4463
|
"member": {
|
4464
|
-
"shape": "
|
4464
|
+
"shape": "S99"
|
4465
4465
|
}
|
4466
4466
|
},
|
4467
4467
|
"NextToken": {}
|
@@ -4710,12 +4710,12 @@
|
|
4710
4710
|
"type": "structure",
|
4711
4711
|
"members": {
|
4712
4712
|
"TagFilter": {
|
4713
|
-
"shape": "
|
4713
|
+
"shape": "Sh9"
|
4714
4714
|
}
|
4715
4715
|
}
|
4716
4716
|
},
|
4717
4717
|
"SearchCriteria": {
|
4718
|
-
"shape": "
|
4718
|
+
"shape": "Shd"
|
4719
4719
|
}
|
4720
4720
|
}
|
4721
4721
|
},
|
@@ -4725,7 +4725,7 @@
|
|
4725
4725
|
"Queues": {
|
4726
4726
|
"type": "list",
|
4727
4727
|
"member": {
|
4728
|
-
"shape": "
|
4728
|
+
"shape": "S8g"
|
4729
4729
|
}
|
4730
4730
|
},
|
4731
4731
|
"NextToken": {},
|
@@ -4754,12 +4754,12 @@
|
|
4754
4754
|
"type": "structure",
|
4755
4755
|
"members": {
|
4756
4756
|
"TagFilter": {
|
4757
|
-
"shape": "
|
4757
|
+
"shape": "Sh9"
|
4758
4758
|
}
|
4759
4759
|
}
|
4760
4760
|
},
|
4761
4761
|
"SearchCriteria": {
|
4762
|
-
"shape": "
|
4762
|
+
"shape": "Shm"
|
4763
4763
|
}
|
4764
4764
|
}
|
4765
4765
|
},
|
@@ -4769,7 +4769,7 @@
|
|
4769
4769
|
"RoutingProfiles": {
|
4770
4770
|
"type": "list",
|
4771
4771
|
"member": {
|
4772
|
-
"shape": "
|
4772
|
+
"shape": "S8n"
|
4773
4773
|
}
|
4774
4774
|
},
|
4775
4775
|
"NextToken": {},
|
@@ -4795,13 +4795,13 @@
|
|
4795
4795
|
"type": "integer"
|
4796
4796
|
},
|
4797
4797
|
"SearchCriteria": {
|
4798
|
-
"shape": "
|
4798
|
+
"shape": "Shr"
|
4799
4799
|
},
|
4800
4800
|
"SearchFilter": {
|
4801
4801
|
"type": "structure",
|
4802
4802
|
"members": {
|
4803
4803
|
"TagFilter": {
|
4804
|
-
"shape": "
|
4804
|
+
"shape": "Sh9"
|
4805
4805
|
}
|
4806
4806
|
}
|
4807
4807
|
}
|
@@ -4849,12 +4849,12 @@
|
|
4849
4849
|
"type": "structure",
|
4850
4850
|
"members": {
|
4851
4851
|
"TagFilter": {
|
4852
|
-
"shape": "
|
4852
|
+
"shape": "Sh9"
|
4853
4853
|
}
|
4854
4854
|
}
|
4855
4855
|
},
|
4856
4856
|
"SearchCriteria": {
|
4857
|
-
"shape": "
|
4857
|
+
"shape": "Shz"
|
4858
4858
|
}
|
4859
4859
|
}
|
4860
4860
|
},
|
@@ -4878,11 +4878,11 @@
|
|
4878
4878
|
}
|
4879
4879
|
},
|
4880
4880
|
"PhoneConfig": {
|
4881
|
-
"shape": "
|
4881
|
+
"shape": "S61"
|
4882
4882
|
},
|
4883
4883
|
"RoutingProfileId": {},
|
4884
4884
|
"SecurityProfileIds": {
|
4885
|
-
"shape": "
|
4885
|
+
"shape": "S66"
|
4886
4886
|
},
|
4887
4887
|
"Tags": {
|
4888
4888
|
"shape": "S1j"
|
@@ -4969,7 +4969,7 @@
|
|
4969
4969
|
"InstanceId": {},
|
4970
4970
|
"ContactFlowId": {},
|
4971
4971
|
"Attributes": {
|
4972
|
-
"shape": "
|
4972
|
+
"shape": "S9y"
|
4973
4973
|
},
|
4974
4974
|
"ParticipantDetails": {
|
4975
4975
|
"type": "structure",
|
@@ -5111,7 +5111,7 @@
|
|
5111
5111
|
"SourcePhoneNumber": {},
|
5112
5112
|
"QueueId": {},
|
5113
5113
|
"Attributes": {
|
5114
|
-
"shape": "
|
5114
|
+
"shape": "S9y"
|
5115
5115
|
},
|
5116
5116
|
"AnswerMachineDetectionConfig": {
|
5117
5117
|
"type": "structure",
|
@@ -5151,11 +5151,11 @@
|
|
5151
5151
|
"PreviousContactId": {},
|
5152
5152
|
"ContactFlowId": {},
|
5153
5153
|
"Attributes": {
|
5154
|
-
"shape": "
|
5154
|
+
"shape": "S9y"
|
5155
5155
|
},
|
5156
5156
|
"Name": {},
|
5157
5157
|
"References": {
|
5158
|
-
"shape": "
|
5158
|
+
"shape": "S3x"
|
5159
5159
|
},
|
5160
5160
|
"Description": {},
|
5161
5161
|
"ClientToken": {
|
@@ -5391,7 +5391,7 @@
|
|
5391
5391
|
"Name": {},
|
5392
5392
|
"Description": {},
|
5393
5393
|
"References": {
|
5394
|
-
"shape": "
|
5394
|
+
"shape": "S3x"
|
5395
5395
|
}
|
5396
5396
|
}
|
5397
5397
|
},
|
@@ -5415,7 +5415,7 @@
|
|
5415
5415
|
"InitialContactId": {},
|
5416
5416
|
"InstanceId": {},
|
5417
5417
|
"Attributes": {
|
5418
|
-
"shape": "
|
5418
|
+
"shape": "S9y"
|
5419
5419
|
}
|
5420
5420
|
}
|
5421
5421
|
},
|
@@ -6070,7 +6070,7 @@
|
|
6070
6070
|
"Name": {},
|
6071
6071
|
"Function": {},
|
6072
6072
|
"Actions": {
|
6073
|
-
"shape": "
|
6073
|
+
"shape": "S3r"
|
6074
6074
|
},
|
6075
6075
|
"PublishStatus": {}
|
6076
6076
|
}
|
@@ -6089,7 +6089,7 @@
|
|
6089
6089
|
"members": {
|
6090
6090
|
"Description": {},
|
6091
6091
|
"Permissions": {
|
6092
|
-
"shape": "
|
6092
|
+
"shape": "S4k"
|
6093
6093
|
},
|
6094
6094
|
"SecurityProfileId": {
|
6095
6095
|
"location": "uri",
|
@@ -6100,10 +6100,10 @@
|
|
6100
6100
|
"locationName": "InstanceId"
|
6101
6101
|
},
|
6102
6102
|
"AllowedAccessControlTags": {
|
6103
|
-
"shape": "
|
6103
|
+
"shape": "S4m"
|
6104
6104
|
},
|
6105
6105
|
"TagRestrictedResources": {
|
6106
|
-
"shape": "
|
6106
|
+
"shape": "S4p"
|
6107
6107
|
}
|
6108
6108
|
}
|
6109
6109
|
}
|
@@ -6131,14 +6131,14 @@
|
|
6131
6131
|
"Description": {},
|
6132
6132
|
"ContactFlowId": {},
|
6133
6133
|
"Constraints": {
|
6134
|
-
"shape": "
|
6134
|
+
"shape": "S4w"
|
6135
6135
|
},
|
6136
6136
|
"Defaults": {
|
6137
|
-
"shape": "
|
6137
|
+
"shape": "S55"
|
6138
6138
|
},
|
6139
6139
|
"Status": {},
|
6140
6140
|
"Fields": {
|
6141
|
-
"shape": "
|
6141
|
+
"shape": "S5a"
|
6142
6142
|
}
|
6143
6143
|
}
|
6144
6144
|
},
|
@@ -6152,13 +6152,13 @@
|
|
6152
6152
|
"Description": {},
|
6153
6153
|
"ContactFlowId": {},
|
6154
6154
|
"Constraints": {
|
6155
|
-
"shape": "
|
6155
|
+
"shape": "S4w"
|
6156
6156
|
},
|
6157
6157
|
"Defaults": {
|
6158
|
-
"shape": "
|
6158
|
+
"shape": "S55"
|
6159
6159
|
},
|
6160
6160
|
"Fields": {
|
6161
|
-
"shape": "
|
6161
|
+
"shape": "S5a"
|
6162
6162
|
},
|
6163
6163
|
"Status": {},
|
6164
6164
|
"LastModifiedTime": {
|
@@ -6186,7 +6186,7 @@
|
|
6186
6186
|
"locationName": "Id"
|
6187
6187
|
},
|
6188
6188
|
"TelephonyConfig": {
|
6189
|
-
"shape": "
|
6189
|
+
"shape": "Sck"
|
6190
6190
|
}
|
6191
6191
|
}
|
6192
6192
|
},
|
@@ -6257,19 +6257,19 @@
|
|
6257
6257
|
"type": "structure",
|
6258
6258
|
"members": {
|
6259
6259
|
"LevelOne": {
|
6260
|
-
"shape": "
|
6260
|
+
"shape": "Sl4"
|
6261
6261
|
},
|
6262
6262
|
"LevelTwo": {
|
6263
|
-
"shape": "
|
6263
|
+
"shape": "Sl4"
|
6264
6264
|
},
|
6265
6265
|
"LevelThree": {
|
6266
|
-
"shape": "
|
6266
|
+
"shape": "Sl4"
|
6267
6267
|
},
|
6268
6268
|
"LevelFour": {
|
6269
|
-
"shape": "
|
6269
|
+
"shape": "Sl4"
|
6270
6270
|
},
|
6271
6271
|
"LevelFive": {
|
6272
|
-
"shape": "
|
6272
|
+
"shape": "Sl4"
|
6273
6273
|
}
|
6274
6274
|
}
|
6275
6275
|
},
|
@@ -6293,7 +6293,7 @@
|
|
6293
6293
|
],
|
6294
6294
|
"members": {
|
6295
6295
|
"IdentityInfo": {
|
6296
|
-
"shape": "
|
6296
|
+
"shape": "S5x"
|
6297
6297
|
},
|
6298
6298
|
"UserId": {
|
6299
6299
|
"location": "uri",
|
@@ -6319,7 +6319,7 @@
|
|
6319
6319
|
],
|
6320
6320
|
"members": {
|
6321
6321
|
"PhoneConfig": {
|
6322
|
-
"shape": "
|
6322
|
+
"shape": "S61"
|
6323
6323
|
},
|
6324
6324
|
"UserId": {
|
6325
6325
|
"location": "uri",
|
@@ -6369,7 +6369,7 @@
|
|
6369
6369
|
],
|
6370
6370
|
"members": {
|
6371
6371
|
"SecurityProfileIds": {
|
6372
|
-
"shape": "
|
6372
|
+
"shape": "S66"
|
6373
6373
|
},
|
6374
6374
|
"UserId": {
|
6375
6375
|
"location": "uri",
|
@@ -6612,11 +6612,20 @@
|
|
6612
6612
|
"Channel": {},
|
6613
6613
|
"Concurrency": {
|
6614
6614
|
"type": "integer"
|
6615
|
+
},
|
6616
|
+
"CrossChannelBehavior": {
|
6617
|
+
"type": "structure",
|
6618
|
+
"required": [
|
6619
|
+
"BehaviorType"
|
6620
|
+
],
|
6621
|
+
"members": {
|
6622
|
+
"BehaviorType": {}
|
6623
|
+
}
|
6615
6624
|
}
|
6616
6625
|
}
|
6617
6626
|
}
|
6618
6627
|
},
|
6619
|
-
"
|
6628
|
+
"S3o": {
|
6620
6629
|
"type": "structure",
|
6621
6630
|
"required": [
|
6622
6631
|
"EventSourceName"
|
@@ -6626,7 +6635,7 @@
|
|
6626
6635
|
"IntegrationAssociationId": {}
|
6627
6636
|
}
|
6628
6637
|
},
|
6629
|
-
"
|
6638
|
+
"S3r": {
|
6630
6639
|
"type": "list",
|
6631
6640
|
"member": {
|
6632
6641
|
"type": "structure",
|
@@ -6646,7 +6655,7 @@
|
|
6646
6655
|
"Description": {},
|
6647
6656
|
"ContactFlowId": {},
|
6648
6657
|
"References": {
|
6649
|
-
"shape": "
|
6658
|
+
"shape": "S3x"
|
6650
6659
|
}
|
6651
6660
|
}
|
6652
6661
|
},
|
@@ -6695,7 +6704,7 @@
|
|
6695
6704
|
}
|
6696
6705
|
}
|
6697
6706
|
},
|
6698
|
-
"
|
6707
|
+
"S3x": {
|
6699
6708
|
"type": "map",
|
6700
6709
|
"key": {},
|
6701
6710
|
"value": {
|
@@ -6710,20 +6719,20 @@
|
|
6710
6719
|
}
|
6711
6720
|
}
|
6712
6721
|
},
|
6713
|
-
"
|
6722
|
+
"S4k": {
|
6714
6723
|
"type": "list",
|
6715
6724
|
"member": {}
|
6716
6725
|
},
|
6717
|
-
"
|
6726
|
+
"S4m": {
|
6718
6727
|
"type": "map",
|
6719
6728
|
"key": {},
|
6720
6729
|
"value": {}
|
6721
6730
|
},
|
6722
|
-
"
|
6731
|
+
"S4p": {
|
6723
6732
|
"type": "list",
|
6724
6733
|
"member": {}
|
6725
6734
|
},
|
6726
|
-
"
|
6735
|
+
"S4w": {
|
6727
6736
|
"type": "structure",
|
6728
6737
|
"members": {
|
6729
6738
|
"RequiredFields": {
|
@@ -6732,7 +6741,7 @@
|
|
6732
6741
|
"type": "structure",
|
6733
6742
|
"members": {
|
6734
6743
|
"Id": {
|
6735
|
-
"shape": "
|
6744
|
+
"shape": "S4z"
|
6736
6745
|
}
|
6737
6746
|
}
|
6738
6747
|
}
|
@@ -6743,7 +6752,7 @@
|
|
6743
6752
|
"type": "structure",
|
6744
6753
|
"members": {
|
6745
6754
|
"Id": {
|
6746
|
-
"shape": "
|
6755
|
+
"shape": "S4z"
|
6747
6756
|
}
|
6748
6757
|
}
|
6749
6758
|
}
|
@@ -6754,20 +6763,20 @@
|
|
6754
6763
|
"type": "structure",
|
6755
6764
|
"members": {
|
6756
6765
|
"Id": {
|
6757
|
-
"shape": "
|
6766
|
+
"shape": "S4z"
|
6758
6767
|
}
|
6759
6768
|
}
|
6760
6769
|
}
|
6761
6770
|
}
|
6762
6771
|
}
|
6763
6772
|
},
|
6764
|
-
"
|
6773
|
+
"S4z": {
|
6765
6774
|
"type": "structure",
|
6766
6775
|
"members": {
|
6767
6776
|
"Name": {}
|
6768
6777
|
}
|
6769
6778
|
},
|
6770
|
-
"
|
6779
|
+
"S55": {
|
6771
6780
|
"type": "structure",
|
6772
6781
|
"members": {
|
6773
6782
|
"DefaultFieldValues": {
|
@@ -6776,7 +6785,7 @@
|
|
6776
6785
|
"type": "structure",
|
6777
6786
|
"members": {
|
6778
6787
|
"Id": {
|
6779
|
-
"shape": "
|
6788
|
+
"shape": "S4z"
|
6780
6789
|
},
|
6781
6790
|
"DefaultValue": {}
|
6782
6791
|
}
|
@@ -6784,7 +6793,7 @@
|
|
6784
6793
|
}
|
6785
6794
|
}
|
6786
6795
|
},
|
6787
|
-
"
|
6796
|
+
"S5a": {
|
6788
6797
|
"type": "list",
|
6789
6798
|
"member": {
|
6790
6799
|
"type": "structure",
|
@@ -6793,7 +6802,7 @@
|
|
6793
6802
|
],
|
6794
6803
|
"members": {
|
6795
6804
|
"Id": {
|
6796
|
-
"shape": "
|
6805
|
+
"shape": "S4z"
|
6797
6806
|
},
|
6798
6807
|
"Description": {},
|
6799
6808
|
"Type": {},
|
@@ -6804,7 +6813,7 @@
|
|
6804
6813
|
}
|
6805
6814
|
}
|
6806
6815
|
},
|
6807
|
-
"
|
6816
|
+
"S5x": {
|
6808
6817
|
"type": "structure",
|
6809
6818
|
"members": {
|
6810
6819
|
"FirstName": {},
|
@@ -6814,7 +6823,7 @@
|
|
6814
6823
|
"Mobile": {}
|
6815
6824
|
}
|
6816
6825
|
},
|
6817
|
-
"
|
6826
|
+
"S61": {
|
6818
6827
|
"type": "structure",
|
6819
6828
|
"required": [
|
6820
6829
|
"PhoneType"
|
@@ -6830,18 +6839,18 @@
|
|
6830
6839
|
"DeskPhoneNumber": {}
|
6831
6840
|
}
|
6832
6841
|
},
|
6833
|
-
"
|
6842
|
+
"S66": {
|
6834
6843
|
"type": "list",
|
6835
6844
|
"member": {}
|
6836
6845
|
},
|
6837
|
-
"
|
6846
|
+
"S82": {
|
6838
6847
|
"type": "structure",
|
6839
6848
|
"members": {
|
6840
6849
|
"AttributeType": {},
|
6841
6850
|
"Value": {}
|
6842
6851
|
}
|
6843
6852
|
},
|
6844
|
-
"
|
6853
|
+
"S8g": {
|
6845
6854
|
"type": "structure",
|
6846
6855
|
"members": {
|
6847
6856
|
"Name": {},
|
@@ -6861,7 +6870,7 @@
|
|
6861
6870
|
}
|
6862
6871
|
}
|
6863
6872
|
},
|
6864
|
-
"
|
6873
|
+
"S8n": {
|
6865
6874
|
"type": "structure",
|
6866
6875
|
"members": {
|
6867
6876
|
"InstanceId": {},
|
@@ -6884,7 +6893,7 @@
|
|
6884
6893
|
}
|
6885
6894
|
}
|
6886
6895
|
},
|
6887
|
-
"
|
6896
|
+
"S99": {
|
6888
6897
|
"type": "structure",
|
6889
6898
|
"members": {
|
6890
6899
|
"Id": {},
|
@@ -6892,7 +6901,7 @@
|
|
6892
6901
|
"Name": {}
|
6893
6902
|
}
|
6894
6903
|
},
|
6895
|
-
"
|
6904
|
+
"S9d": {
|
6896
6905
|
"type": "structure",
|
6897
6906
|
"members": {
|
6898
6907
|
"Id": {},
|
@@ -6900,90 +6909,90 @@
|
|
6900
6909
|
"Name": {}
|
6901
6910
|
}
|
6902
6911
|
},
|
6903
|
-
"
|
6912
|
+
"S9y": {
|
6904
6913
|
"type": "map",
|
6905
6914
|
"key": {},
|
6906
6915
|
"value": {}
|
6907
6916
|
},
|
6908
|
-
"
|
6917
|
+
"Sa2": {
|
6909
6918
|
"type": "structure",
|
6910
6919
|
"members": {
|
6911
6920
|
"Queues": {
|
6912
|
-
"shape": "
|
6921
|
+
"shape": "Sa3"
|
6913
6922
|
},
|
6914
6923
|
"Channels": {
|
6915
6924
|
"type": "list",
|
6916
6925
|
"member": {}
|
6917
6926
|
},
|
6918
6927
|
"RoutingProfiles": {
|
6919
|
-
"shape": "
|
6928
|
+
"shape": "Sa5"
|
6920
6929
|
}
|
6921
6930
|
}
|
6922
6931
|
},
|
6923
|
-
"
|
6932
|
+
"Sa3": {
|
6924
6933
|
"type": "list",
|
6925
6934
|
"member": {}
|
6926
6935
|
},
|
6927
|
-
"
|
6936
|
+
"Sa5": {
|
6928
6937
|
"type": "list",
|
6929
6938
|
"member": {}
|
6930
6939
|
},
|
6931
|
-
"
|
6940
|
+
"Sa6": {
|
6932
6941
|
"type": "list",
|
6933
6942
|
"member": {}
|
6934
6943
|
},
|
6935
|
-
"
|
6944
|
+
"Sa9": {
|
6936
6945
|
"type": "structure",
|
6937
6946
|
"members": {
|
6938
6947
|
"Name": {},
|
6939
6948
|
"Unit": {}
|
6940
6949
|
}
|
6941
6950
|
},
|
6942
|
-
"
|
6951
|
+
"Sak": {
|
6943
6952
|
"type": "structure",
|
6944
6953
|
"members": {
|
6945
6954
|
"Queue": {
|
6946
|
-
"shape": "
|
6955
|
+
"shape": "Sal"
|
6947
6956
|
},
|
6948
6957
|
"Channel": {},
|
6949
6958
|
"RoutingProfile": {
|
6950
|
-
"shape": "
|
6959
|
+
"shape": "Sam"
|
6951
6960
|
}
|
6952
6961
|
}
|
6953
6962
|
},
|
6954
|
-
"
|
6963
|
+
"Sal": {
|
6955
6964
|
"type": "structure",
|
6956
6965
|
"members": {
|
6957
6966
|
"Id": {},
|
6958
6967
|
"Arn": {}
|
6959
6968
|
}
|
6960
6969
|
},
|
6961
|
-
"
|
6970
|
+
"Sam": {
|
6962
6971
|
"type": "structure",
|
6963
6972
|
"members": {
|
6964
6973
|
"Id": {},
|
6965
6974
|
"Arn": {}
|
6966
6975
|
}
|
6967
6976
|
},
|
6968
|
-
"
|
6977
|
+
"Sb3": {
|
6969
6978
|
"type": "structure",
|
6970
6979
|
"members": {
|
6971
6980
|
"Id": {},
|
6972
6981
|
"Arn": {}
|
6973
6982
|
}
|
6974
6983
|
},
|
6975
|
-
"
|
6984
|
+
"Sb5": {
|
6976
6985
|
"type": "map",
|
6977
6986
|
"key": {},
|
6978
6987
|
"value": {
|
6979
6988
|
"type": "integer"
|
6980
6989
|
}
|
6981
6990
|
},
|
6982
|
-
"
|
6991
|
+
"Sbc": {
|
6983
6992
|
"type": "string",
|
6984
6993
|
"sensitive": true
|
6985
6994
|
},
|
6986
|
-
"
|
6995
|
+
"Sbg": {
|
6987
6996
|
"type": "structure",
|
6988
6997
|
"members": {
|
6989
6998
|
"Name": {},
|
@@ -7000,7 +7009,7 @@
|
|
7000
7009
|
"Unit": {}
|
7001
7010
|
}
|
7002
7011
|
},
|
7003
|
-
"
|
7012
|
+
"Sbz": {
|
7004
7013
|
"type": "structure",
|
7005
7014
|
"members": {
|
7006
7015
|
"Name": {},
|
@@ -7031,7 +7040,7 @@
|
|
7031
7040
|
}
|
7032
7041
|
}
|
7033
7042
|
},
|
7034
|
-
"
|
7043
|
+
"Sck": {
|
7035
7044
|
"type": "structure",
|
7036
7045
|
"required": [
|
7037
7046
|
"Distributions"
|
@@ -7055,15 +7064,15 @@
|
|
7055
7064
|
}
|
7056
7065
|
}
|
7057
7066
|
},
|
7058
|
-
"
|
7067
|
+
"Sem": {
|
7059
7068
|
"type": "list",
|
7060
7069
|
"member": {}
|
7061
7070
|
},
|
7062
|
-
"
|
7071
|
+
"Sen": {
|
7063
7072
|
"type": "list",
|
7064
7073
|
"member": {}
|
7065
7074
|
},
|
7066
|
-
"
|
7075
|
+
"Sf5": {
|
7067
7076
|
"type": "list",
|
7068
7077
|
"member": {
|
7069
7078
|
"type": "structure",
|
@@ -7075,58 +7084,58 @@
|
|
7075
7084
|
}
|
7076
7085
|
}
|
7077
7086
|
},
|
7078
|
-
"
|
7087
|
+
"Sh9": {
|
7079
7088
|
"type": "structure",
|
7080
7089
|
"members": {
|
7081
7090
|
"OrConditions": {
|
7082
7091
|
"type": "list",
|
7083
7092
|
"member": {
|
7084
|
-
"shape": "
|
7093
|
+
"shape": "Shb"
|
7085
7094
|
}
|
7086
7095
|
},
|
7087
7096
|
"AndConditions": {
|
7088
|
-
"shape": "
|
7097
|
+
"shape": "Shb"
|
7089
7098
|
},
|
7090
7099
|
"TagCondition": {
|
7091
|
-
"shape": "
|
7100
|
+
"shape": "Shc"
|
7092
7101
|
}
|
7093
7102
|
}
|
7094
7103
|
},
|
7095
|
-
"
|
7104
|
+
"Shb": {
|
7096
7105
|
"type": "list",
|
7097
7106
|
"member": {
|
7098
|
-
"shape": "
|
7107
|
+
"shape": "Shc"
|
7099
7108
|
}
|
7100
7109
|
},
|
7101
|
-
"
|
7110
|
+
"Shc": {
|
7102
7111
|
"type": "structure",
|
7103
7112
|
"members": {
|
7104
7113
|
"TagKey": {},
|
7105
7114
|
"TagValue": {}
|
7106
7115
|
}
|
7107
7116
|
},
|
7108
|
-
"
|
7117
|
+
"Shd": {
|
7109
7118
|
"type": "structure",
|
7110
7119
|
"members": {
|
7111
7120
|
"OrConditions": {
|
7112
|
-
"shape": "
|
7121
|
+
"shape": "She"
|
7113
7122
|
},
|
7114
7123
|
"AndConditions": {
|
7115
|
-
"shape": "
|
7124
|
+
"shape": "She"
|
7116
7125
|
},
|
7117
7126
|
"StringCondition": {
|
7118
|
-
"shape": "
|
7127
|
+
"shape": "Shf"
|
7119
7128
|
},
|
7120
7129
|
"QueueTypeCondition": {}
|
7121
7130
|
}
|
7122
7131
|
},
|
7123
|
-
"
|
7132
|
+
"She": {
|
7124
7133
|
"type": "list",
|
7125
7134
|
"member": {
|
7126
|
-
"shape": "
|
7135
|
+
"shape": "Shd"
|
7127
7136
|
}
|
7128
7137
|
},
|
7129
|
-
"
|
7138
|
+
"Shf": {
|
7130
7139
|
"type": "structure",
|
7131
7140
|
"members": {
|
7132
7141
|
"FieldName": {},
|
@@ -7134,57 +7143,57 @@
|
|
7134
7143
|
"ComparisonType": {}
|
7135
7144
|
}
|
7136
7145
|
},
|
7137
|
-
"
|
7146
|
+
"Shm": {
|
7138
7147
|
"type": "structure",
|
7139
7148
|
"members": {
|
7140
7149
|
"OrConditions": {
|
7141
|
-
"shape": "
|
7150
|
+
"shape": "Shn"
|
7142
7151
|
},
|
7143
7152
|
"AndConditions": {
|
7144
|
-
"shape": "
|
7153
|
+
"shape": "Shn"
|
7145
7154
|
},
|
7146
7155
|
"StringCondition": {
|
7147
|
-
"shape": "
|
7156
|
+
"shape": "Shf"
|
7148
7157
|
}
|
7149
7158
|
}
|
7150
7159
|
},
|
7151
|
-
"
|
7160
|
+
"Shn": {
|
7152
7161
|
"type": "list",
|
7153
7162
|
"member": {
|
7154
|
-
"shape": "
|
7163
|
+
"shape": "Shm"
|
7155
7164
|
}
|
7156
7165
|
},
|
7157
|
-
"
|
7166
|
+
"Shr": {
|
7158
7167
|
"type": "structure",
|
7159
7168
|
"members": {
|
7160
7169
|
"OrConditions": {
|
7161
|
-
"shape": "
|
7170
|
+
"shape": "Shs"
|
7162
7171
|
},
|
7163
7172
|
"AndConditions": {
|
7164
|
-
"shape": "
|
7173
|
+
"shape": "Shs"
|
7165
7174
|
},
|
7166
7175
|
"StringCondition": {
|
7167
|
-
"shape": "
|
7176
|
+
"shape": "Shf"
|
7168
7177
|
}
|
7169
7178
|
}
|
7170
7179
|
},
|
7171
|
-
"
|
7180
|
+
"Shs": {
|
7172
7181
|
"type": "list",
|
7173
7182
|
"member": {
|
7174
|
-
"shape": "
|
7183
|
+
"shape": "Shr"
|
7175
7184
|
}
|
7176
7185
|
},
|
7177
|
-
"
|
7186
|
+
"Shz": {
|
7178
7187
|
"type": "structure",
|
7179
7188
|
"members": {
|
7180
7189
|
"OrConditions": {
|
7181
|
-
"shape": "
|
7190
|
+
"shape": "Si0"
|
7182
7191
|
},
|
7183
7192
|
"AndConditions": {
|
7184
|
-
"shape": "
|
7193
|
+
"shape": "Si0"
|
7185
7194
|
},
|
7186
7195
|
"StringCondition": {
|
7187
|
-
"shape": "
|
7196
|
+
"shape": "Shf"
|
7188
7197
|
},
|
7189
7198
|
"HierarchyGroupCondition": {
|
7190
7199
|
"type": "structure",
|
@@ -7195,13 +7204,13 @@
|
|
7195
7204
|
}
|
7196
7205
|
}
|
7197
7206
|
},
|
7198
|
-
"
|
7207
|
+
"Si0": {
|
7199
7208
|
"type": "list",
|
7200
7209
|
"member": {
|
7201
|
-
"shape": "
|
7210
|
+
"shape": "Shz"
|
7202
7211
|
}
|
7203
7212
|
},
|
7204
|
-
"
|
7213
|
+
"Sl4": {
|
7205
7214
|
"type": "structure",
|
7206
7215
|
"required": [
|
7207
7216
|
"Name"
|