aws-sdk-core 2.11.387 → 2.11.388
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 20fcaa9109b43bcd7e556b84565678944e867d0d
|
4
|
+
data.tar.gz: 0c9b537f7d9af06957c6f39ccc2a12b093b8f208
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 637aef1535a29d8dbad165c960d7c7cb0c69f21d162b8773af339951d516a2ecf149c58a8544e51fd1eb1a9c5659982feb3ec4cc0a522f675046cfa21c2022b0
|
7
|
+
data.tar.gz: 829fc9a11690d9901f0eb8279ef44bac6618ad585e46d817de48559757a9dfa4abd54df2421443d5b5e6b6873be8db4143a00172c93208fcaecc77e1970f6fdd
|
@@ -62,6 +62,7 @@
|
|
62
62
|
{"shape":"InvalidCloudWatchLogsLogGroupArnException"},
|
63
63
|
{"shape":"InvalidCloudWatchLogsRoleArnException"},
|
64
64
|
{"shape":"CloudWatchLogsDeliveryUnavailableException"},
|
65
|
+
{"shape":"InvalidTagParameterException"},
|
65
66
|
{"shape":"UnsupportedOperationException"},
|
66
67
|
{"shape":"OperationNotPermittedException"},
|
67
68
|
{"shape":"CloudTrailAccessNotEnabledException"},
|
@@ -121,6 +122,22 @@
|
|
121
122
|
],
|
122
123
|
"idempotent":true
|
123
124
|
},
|
125
|
+
"GetTrail":{
|
126
|
+
"name":"GetTrail",
|
127
|
+
"http":{
|
128
|
+
"method":"POST",
|
129
|
+
"requestUri":"/"
|
130
|
+
},
|
131
|
+
"input":{"shape":"GetTrailRequest"},
|
132
|
+
"output":{"shape":"GetTrailResponse"},
|
133
|
+
"errors":[
|
134
|
+
{"shape":"TrailNotFoundException"},
|
135
|
+
{"shape":"InvalidTrailNameException"},
|
136
|
+
{"shape":"UnsupportedOperationException"},
|
137
|
+
{"shape":"OperationNotPermittedException"}
|
138
|
+
],
|
139
|
+
"idempotent":true
|
140
|
+
},
|
124
141
|
"GetTrailStatus":{
|
125
142
|
"name":"GetTrailStatus",
|
126
143
|
"http":{
|
@@ -170,6 +187,20 @@
|
|
170
187
|
],
|
171
188
|
"idempotent":true
|
172
189
|
},
|
190
|
+
"ListTrails":{
|
191
|
+
"name":"ListTrails",
|
192
|
+
"http":{
|
193
|
+
"method":"POST",
|
194
|
+
"requestUri":"/"
|
195
|
+
},
|
196
|
+
"input":{"shape":"ListTrailsRequest"},
|
197
|
+
"output":{"shape":"ListTrailsResponse"},
|
198
|
+
"errors":[
|
199
|
+
{"shape":"UnsupportedOperationException"},
|
200
|
+
{"shape":"OperationNotPermittedException"}
|
201
|
+
],
|
202
|
+
"idempotent":true
|
203
|
+
},
|
173
204
|
"LookupEvents":{
|
174
205
|
"name":"LookupEvents",
|
175
206
|
"http":{
|
@@ -354,7 +385,8 @@
|
|
354
385
|
"CloudWatchLogsLogGroupArn":{"shape":"String"},
|
355
386
|
"CloudWatchLogsRoleArn":{"shape":"String"},
|
356
387
|
"KmsKeyId":{"shape":"String"},
|
357
|
-
"IsOrganizationTrail":{"shape":"Boolean"}
|
388
|
+
"IsOrganizationTrail":{"shape":"Boolean"},
|
389
|
+
"TagsList":{"shape":"TagsList"}
|
358
390
|
}
|
359
391
|
},
|
360
392
|
"CreateTrailResponse":{
|
@@ -463,6 +495,19 @@
|
|
463
495
|
"EventSelectors":{"shape":"EventSelectors"}
|
464
496
|
}
|
465
497
|
},
|
498
|
+
"GetTrailRequest":{
|
499
|
+
"type":"structure",
|
500
|
+
"required":["Name"],
|
501
|
+
"members":{
|
502
|
+
"Name":{"shape":"String"}
|
503
|
+
}
|
504
|
+
},
|
505
|
+
"GetTrailResponse":{
|
506
|
+
"type":"structure",
|
507
|
+
"members":{
|
508
|
+
"Trail":{"shape":"Trail"}
|
509
|
+
}
|
510
|
+
},
|
466
511
|
"GetTrailStatusRequest":{
|
467
512
|
"type":"structure",
|
468
513
|
"required":["Name"],
|
@@ -661,6 +706,19 @@
|
|
661
706
|
"NextToken":{"shape":"String"}
|
662
707
|
}
|
663
708
|
},
|
709
|
+
"ListTrailsRequest":{
|
710
|
+
"type":"structure",
|
711
|
+
"members":{
|
712
|
+
"NextToken":{"shape":"String"}
|
713
|
+
}
|
714
|
+
},
|
715
|
+
"ListTrailsResponse":{
|
716
|
+
"type":"structure",
|
717
|
+
"members":{
|
718
|
+
"Trails":{"shape":"Trails"},
|
719
|
+
"NextToken":{"shape":"String"}
|
720
|
+
}
|
721
|
+
},
|
664
722
|
"LookupAttribute":{
|
665
723
|
"type":"structure",
|
666
724
|
"required":[
|
@@ -910,6 +968,14 @@
|
|
910
968
|
},
|
911
969
|
"exception":true
|
912
970
|
},
|
971
|
+
"TrailInfo":{
|
972
|
+
"type":"structure",
|
973
|
+
"members":{
|
974
|
+
"TrailARN":{"shape":"String"},
|
975
|
+
"Name":{"shape":"String"},
|
976
|
+
"HomeRegion":{"shape":"String"}
|
977
|
+
}
|
978
|
+
},
|
913
979
|
"TrailList":{
|
914
980
|
"type":"list",
|
915
981
|
"member":{"shape":"Trail"}
|
@@ -930,6 +996,10 @@
|
|
930
996
|
},
|
931
997
|
"exception":true
|
932
998
|
},
|
999
|
+
"Trails":{
|
1000
|
+
"type":"list",
|
1001
|
+
"member":{"shape":"TrailInfo"}
|
1002
|
+
},
|
933
1003
|
"UnsupportedOperationException":{
|
934
1004
|
"type":"structure",
|
935
1005
|
"members":{
|
@@ -3,6 +3,21 @@
|
|
3
3
|
"DescribeTrails": {
|
4
4
|
"result_key": "trailList"
|
5
5
|
},
|
6
|
+
"ListPublicKeys": {
|
7
|
+
"input_token": "NextToken",
|
8
|
+
"output_token": "NextToken",
|
9
|
+
"result_key": "PublicKeyList"
|
10
|
+
},
|
11
|
+
"ListTags": {
|
12
|
+
"input_token": "NextToken",
|
13
|
+
"output_token": "NextToken",
|
14
|
+
"result_key": "ResourceTagList"
|
15
|
+
},
|
16
|
+
"ListTrails": {
|
17
|
+
"input_token": "NextToken",
|
18
|
+
"output_token": "NextToken",
|
19
|
+
"result_key": "Trails"
|
20
|
+
},
|
6
21
|
"LookupEvents": {
|
7
22
|
"input_token": "NextToken",
|
8
23
|
"limit_key": "MaxResults",
|
@@ -2014,7 +2014,12 @@
|
|
2014
2014
|
"TablesLoaded":{"shape":"Integer"},
|
2015
2015
|
"TablesLoading":{"shape":"Integer"},
|
2016
2016
|
"TablesQueued":{"shape":"Integer"},
|
2017
|
-
"TablesErrored":{"shape":"Integer"}
|
2017
|
+
"TablesErrored":{"shape":"Integer"},
|
2018
|
+
"FreshStartDate":{"shape":"TStamp"},
|
2019
|
+
"StartDate":{"shape":"TStamp"},
|
2020
|
+
"StopDate":{"shape":"TStamp"},
|
2021
|
+
"FullLoadStartDate":{"shape":"TStamp"},
|
2022
|
+
"FullLoadFinishDate":{"shape":"TStamp"}
|
2018
2023
|
}
|
2019
2024
|
},
|
2020
2025
|
"ResourceAlreadyExistsFault":{
|
@@ -178,6 +178,40 @@
|
|
178
178
|
}
|
179
179
|
]
|
180
180
|
},
|
181
|
+
"CreateJourney": {
|
182
|
+
"name": "CreateJourney",
|
183
|
+
"http": {
|
184
|
+
"method": "POST",
|
185
|
+
"requestUri": "/v1/apps/{application-id}/journeys",
|
186
|
+
"responseCode": 201
|
187
|
+
},
|
188
|
+
"input": {
|
189
|
+
"shape": "CreateJourneyRequest"
|
190
|
+
},
|
191
|
+
"output": {
|
192
|
+
"shape": "CreateJourneyResponse"
|
193
|
+
},
|
194
|
+
"errors": [
|
195
|
+
{
|
196
|
+
"shape": "BadRequestException"
|
197
|
+
},
|
198
|
+
{
|
199
|
+
"shape": "InternalServerErrorException"
|
200
|
+
},
|
201
|
+
{
|
202
|
+
"shape": "ForbiddenException"
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"shape": "NotFoundException"
|
206
|
+
},
|
207
|
+
{
|
208
|
+
"shape": "MethodNotAllowedException"
|
209
|
+
},
|
210
|
+
{
|
211
|
+
"shape": "TooManyRequestsException"
|
212
|
+
}
|
213
|
+
]
|
214
|
+
},
|
181
215
|
"CreatePushTemplate": {
|
182
216
|
"name": "CreatePushTemplate",
|
183
217
|
"http": {
|
@@ -716,6 +750,40 @@
|
|
716
750
|
}
|
717
751
|
]
|
718
752
|
},
|
753
|
+
"DeleteJourney": {
|
754
|
+
"name": "DeleteJourney",
|
755
|
+
"http": {
|
756
|
+
"method": "DELETE",
|
757
|
+
"requestUri": "/v1/apps/{application-id}/journeys/{journey-id}",
|
758
|
+
"responseCode": 200
|
759
|
+
},
|
760
|
+
"input": {
|
761
|
+
"shape": "DeleteJourneyRequest"
|
762
|
+
},
|
763
|
+
"output": {
|
764
|
+
"shape": "DeleteJourneyResponse"
|
765
|
+
},
|
766
|
+
"errors": [
|
767
|
+
{
|
768
|
+
"shape": "BadRequestException"
|
769
|
+
},
|
770
|
+
{
|
771
|
+
"shape": "InternalServerErrorException"
|
772
|
+
},
|
773
|
+
{
|
774
|
+
"shape": "ForbiddenException"
|
775
|
+
},
|
776
|
+
{
|
777
|
+
"shape": "NotFoundException"
|
778
|
+
},
|
779
|
+
{
|
780
|
+
"shape": "MethodNotAllowedException"
|
781
|
+
},
|
782
|
+
{
|
783
|
+
"shape": "TooManyRequestsException"
|
784
|
+
}
|
785
|
+
]
|
786
|
+
},
|
719
787
|
"DeletePushTemplate": {
|
720
788
|
"name": "DeletePushTemplate",
|
721
789
|
"http": {
|
@@ -1804,6 +1872,142 @@
|
|
1804
1872
|
}
|
1805
1873
|
]
|
1806
1874
|
},
|
1875
|
+
"GetJourney": {
|
1876
|
+
"name": "GetJourney",
|
1877
|
+
"http": {
|
1878
|
+
"method": "GET",
|
1879
|
+
"requestUri": "/v1/apps/{application-id}/journeys/{journey-id}",
|
1880
|
+
"responseCode": 200
|
1881
|
+
},
|
1882
|
+
"input": {
|
1883
|
+
"shape": "GetJourneyRequest"
|
1884
|
+
},
|
1885
|
+
"output": {
|
1886
|
+
"shape": "GetJourneyResponse"
|
1887
|
+
},
|
1888
|
+
"errors": [
|
1889
|
+
{
|
1890
|
+
"shape": "BadRequestException"
|
1891
|
+
},
|
1892
|
+
{
|
1893
|
+
"shape": "InternalServerErrorException"
|
1894
|
+
},
|
1895
|
+
{
|
1896
|
+
"shape": "ForbiddenException"
|
1897
|
+
},
|
1898
|
+
{
|
1899
|
+
"shape": "NotFoundException"
|
1900
|
+
},
|
1901
|
+
{
|
1902
|
+
"shape": "MethodNotAllowedException"
|
1903
|
+
},
|
1904
|
+
{
|
1905
|
+
"shape": "TooManyRequestsException"
|
1906
|
+
}
|
1907
|
+
]
|
1908
|
+
},
|
1909
|
+
"GetJourneyDateRangeKpi": {
|
1910
|
+
"name": "GetJourneyDateRangeKpi",
|
1911
|
+
"http": {
|
1912
|
+
"method": "GET",
|
1913
|
+
"requestUri": "/v1/apps/{application-id}/journeys/{journey-id}/kpis/daterange/{kpi-name}",
|
1914
|
+
"responseCode": 200
|
1915
|
+
},
|
1916
|
+
"input": {
|
1917
|
+
"shape": "GetJourneyDateRangeKpiRequest"
|
1918
|
+
},
|
1919
|
+
"output": {
|
1920
|
+
"shape": "GetJourneyDateRangeKpiResponse"
|
1921
|
+
},
|
1922
|
+
"errors": [
|
1923
|
+
{
|
1924
|
+
"shape": "BadRequestException"
|
1925
|
+
},
|
1926
|
+
{
|
1927
|
+
"shape": "InternalServerErrorException"
|
1928
|
+
},
|
1929
|
+
{
|
1930
|
+
"shape": "ForbiddenException"
|
1931
|
+
},
|
1932
|
+
{
|
1933
|
+
"shape": "NotFoundException"
|
1934
|
+
},
|
1935
|
+
{
|
1936
|
+
"shape": "MethodNotAllowedException"
|
1937
|
+
},
|
1938
|
+
{
|
1939
|
+
"shape": "TooManyRequestsException"
|
1940
|
+
}
|
1941
|
+
]
|
1942
|
+
},
|
1943
|
+
"GetJourneyExecutionActivityMetrics": {
|
1944
|
+
"name": "GetJourneyExecutionActivityMetrics",
|
1945
|
+
"http": {
|
1946
|
+
"method": "GET",
|
1947
|
+
"requestUri": "/v1/apps/{application-id}/journeys/{journey-id}/activities/{journey-activity-id}/execution-metrics",
|
1948
|
+
"responseCode": 200
|
1949
|
+
},
|
1950
|
+
"input": {
|
1951
|
+
"shape": "GetJourneyExecutionActivityMetricsRequest"
|
1952
|
+
},
|
1953
|
+
"output": {
|
1954
|
+
"shape": "GetJourneyExecutionActivityMetricsResponse"
|
1955
|
+
},
|
1956
|
+
"errors": [
|
1957
|
+
{
|
1958
|
+
"shape": "BadRequestException"
|
1959
|
+
},
|
1960
|
+
{
|
1961
|
+
"shape": "InternalServerErrorException"
|
1962
|
+
},
|
1963
|
+
{
|
1964
|
+
"shape": "ForbiddenException"
|
1965
|
+
},
|
1966
|
+
{
|
1967
|
+
"shape": "NotFoundException"
|
1968
|
+
},
|
1969
|
+
{
|
1970
|
+
"shape": "MethodNotAllowedException"
|
1971
|
+
},
|
1972
|
+
{
|
1973
|
+
"shape": "TooManyRequestsException"
|
1974
|
+
}
|
1975
|
+
]
|
1976
|
+
},
|
1977
|
+
"GetJourneyExecutionMetrics": {
|
1978
|
+
"name": "GetJourneyExecutionMetrics",
|
1979
|
+
"http": {
|
1980
|
+
"method": "GET",
|
1981
|
+
"requestUri": "/v1/apps/{application-id}/journeys/{journey-id}/execution-metrics",
|
1982
|
+
"responseCode": 200
|
1983
|
+
},
|
1984
|
+
"input": {
|
1985
|
+
"shape": "GetJourneyExecutionMetricsRequest"
|
1986
|
+
},
|
1987
|
+
"output": {
|
1988
|
+
"shape": "GetJourneyExecutionMetricsResponse"
|
1989
|
+
},
|
1990
|
+
"errors": [
|
1991
|
+
{
|
1992
|
+
"shape": "BadRequestException"
|
1993
|
+
},
|
1994
|
+
{
|
1995
|
+
"shape": "InternalServerErrorException"
|
1996
|
+
},
|
1997
|
+
{
|
1998
|
+
"shape": "ForbiddenException"
|
1999
|
+
},
|
2000
|
+
{
|
2001
|
+
"shape": "NotFoundException"
|
2002
|
+
},
|
2003
|
+
{
|
2004
|
+
"shape": "MethodNotAllowedException"
|
2005
|
+
},
|
2006
|
+
{
|
2007
|
+
"shape": "TooManyRequestsException"
|
2008
|
+
}
|
2009
|
+
]
|
2010
|
+
},
|
1807
2011
|
"GetPushTemplate": {
|
1808
2012
|
"name": "GetPushTemplate",
|
1809
2013
|
"http": {
|
@@ -2178,6 +2382,40 @@
|
|
2178
2382
|
}
|
2179
2383
|
]
|
2180
2384
|
},
|
2385
|
+
"ListJourneys": {
|
2386
|
+
"name": "ListJourneys",
|
2387
|
+
"http": {
|
2388
|
+
"method": "GET",
|
2389
|
+
"requestUri": "/v1/apps/{application-id}/journeys",
|
2390
|
+
"responseCode": 200
|
2391
|
+
},
|
2392
|
+
"input": {
|
2393
|
+
"shape": "ListJourneysRequest"
|
2394
|
+
},
|
2395
|
+
"output": {
|
2396
|
+
"shape": "ListJourneysResponse"
|
2397
|
+
},
|
2398
|
+
"errors": [
|
2399
|
+
{
|
2400
|
+
"shape": "BadRequestException"
|
2401
|
+
},
|
2402
|
+
{
|
2403
|
+
"shape": "InternalServerErrorException"
|
2404
|
+
},
|
2405
|
+
{
|
2406
|
+
"shape": "ForbiddenException"
|
2407
|
+
},
|
2408
|
+
{
|
2409
|
+
"shape": "NotFoundException"
|
2410
|
+
},
|
2411
|
+
{
|
2412
|
+
"shape": "MethodNotAllowedException"
|
2413
|
+
},
|
2414
|
+
{
|
2415
|
+
"shape": "TooManyRequestsException"
|
2416
|
+
}
|
2417
|
+
]
|
2418
|
+
},
|
2181
2419
|
"ListTagsForResource": {
|
2182
2420
|
"name": "ListTagsForResource",
|
2183
2421
|
"http": {
|
@@ -2900,18 +3138,18 @@
|
|
2900
3138
|
}
|
2901
3139
|
]
|
2902
3140
|
},
|
2903
|
-
"
|
2904
|
-
"name": "
|
3141
|
+
"UpdateJourney": {
|
3142
|
+
"name": "UpdateJourney",
|
2905
3143
|
"http": {
|
2906
3144
|
"method": "PUT",
|
2907
|
-
"requestUri": "/v1/
|
2908
|
-
"responseCode":
|
3145
|
+
"requestUri": "/v1/apps/{application-id}/journeys/{journey-id}",
|
3146
|
+
"responseCode": 200
|
2909
3147
|
},
|
2910
3148
|
"input": {
|
2911
|
-
"shape": "
|
3149
|
+
"shape": "UpdateJourneyRequest"
|
2912
3150
|
},
|
2913
3151
|
"output": {
|
2914
|
-
"shape": "
|
3152
|
+
"shape": "UpdateJourneyResponse"
|
2915
3153
|
},
|
2916
3154
|
"errors": [
|
2917
3155
|
{
|
@@ -2934,18 +3172,18 @@
|
|
2934
3172
|
}
|
2935
3173
|
]
|
2936
3174
|
},
|
2937
|
-
"
|
2938
|
-
"name": "
|
3175
|
+
"UpdateJourneyState": {
|
3176
|
+
"name": "UpdateJourneyState",
|
2939
3177
|
"http": {
|
2940
3178
|
"method": "PUT",
|
2941
|
-
"requestUri": "/v1/apps/{application-id}/
|
3179
|
+
"requestUri": "/v1/apps/{application-id}/journeys/{journey-id}/state",
|
2942
3180
|
"responseCode": 200
|
2943
3181
|
},
|
2944
3182
|
"input": {
|
2945
|
-
"shape": "
|
3183
|
+
"shape": "UpdateJourneyStateRequest"
|
2946
3184
|
},
|
2947
3185
|
"output": {
|
2948
|
-
"shape": "
|
3186
|
+
"shape": "UpdateJourneyStateResponse"
|
2949
3187
|
},
|
2950
3188
|
"errors": [
|
2951
3189
|
{
|
@@ -2968,18 +3206,18 @@
|
|
2968
3206
|
}
|
2969
3207
|
]
|
2970
3208
|
},
|
2971
|
-
"
|
2972
|
-
"name": "
|
3209
|
+
"UpdatePushTemplate": {
|
3210
|
+
"name": "UpdatePushTemplate",
|
2973
3211
|
"http": {
|
2974
3212
|
"method": "PUT",
|
2975
|
-
"requestUri": "/v1/
|
2976
|
-
"responseCode":
|
3213
|
+
"requestUri": "/v1/templates/{template-name}/push",
|
3214
|
+
"responseCode": 202
|
2977
3215
|
},
|
2978
3216
|
"input": {
|
2979
|
-
"shape": "
|
3217
|
+
"shape": "UpdatePushTemplateRequest"
|
2980
3218
|
},
|
2981
3219
|
"output": {
|
2982
|
-
"shape": "
|
3220
|
+
"shape": "UpdatePushTemplateResponse"
|
2983
3221
|
},
|
2984
3222
|
"errors": [
|
2985
3223
|
{
|
@@ -3002,18 +3240,18 @@
|
|
3002
3240
|
}
|
3003
3241
|
]
|
3004
3242
|
},
|
3005
|
-
"
|
3006
|
-
"name": "
|
3243
|
+
"UpdateSegment": {
|
3244
|
+
"name": "UpdateSegment",
|
3007
3245
|
"http": {
|
3008
3246
|
"method": "PUT",
|
3009
|
-
"requestUri": "/v1/
|
3010
|
-
"responseCode":
|
3247
|
+
"requestUri": "/v1/apps/{application-id}/segments/{segment-id}",
|
3248
|
+
"responseCode": 200
|
3011
3249
|
},
|
3012
3250
|
"input": {
|
3013
|
-
"shape": "
|
3251
|
+
"shape": "UpdateSegmentRequest"
|
3014
3252
|
},
|
3015
3253
|
"output": {
|
3016
|
-
"shape": "
|
3254
|
+
"shape": "UpdateSegmentResponse"
|
3017
3255
|
},
|
3018
3256
|
"errors": [
|
3019
3257
|
{
|
@@ -3036,18 +3274,18 @@
|
|
3036
3274
|
}
|
3037
3275
|
]
|
3038
3276
|
},
|
3039
|
-
"
|
3040
|
-
"name": "
|
3277
|
+
"UpdateSmsChannel": {
|
3278
|
+
"name": "UpdateSmsChannel",
|
3041
3279
|
"http": {
|
3042
3280
|
"method": "PUT",
|
3043
|
-
"requestUri": "/v1/apps/{application-id}/channels/
|
3281
|
+
"requestUri": "/v1/apps/{application-id}/channels/sms",
|
3044
3282
|
"responseCode": 200
|
3045
3283
|
},
|
3046
3284
|
"input": {
|
3047
|
-
"shape": "
|
3285
|
+
"shape": "UpdateSmsChannelRequest"
|
3048
3286
|
},
|
3049
3287
|
"output": {
|
3050
|
-
"shape": "
|
3288
|
+
"shape": "UpdateSmsChannelResponse"
|
3051
3289
|
},
|
3052
3290
|
"errors": [
|
3053
3291
|
{
|
@@ -3069,13 +3307,81 @@
|
|
3069
3307
|
"shape": "TooManyRequestsException"
|
3070
3308
|
}
|
3071
3309
|
]
|
3072
|
-
}
|
3073
|
-
|
3074
|
-
|
3075
|
-
|
3076
|
-
|
3077
|
-
|
3078
|
-
"
|
3310
|
+
},
|
3311
|
+
"UpdateSmsTemplate": {
|
3312
|
+
"name": "UpdateSmsTemplate",
|
3313
|
+
"http": {
|
3314
|
+
"method": "PUT",
|
3315
|
+
"requestUri": "/v1/templates/{template-name}/sms",
|
3316
|
+
"responseCode": 202
|
3317
|
+
},
|
3318
|
+
"input": {
|
3319
|
+
"shape": "UpdateSmsTemplateRequest"
|
3320
|
+
},
|
3321
|
+
"output": {
|
3322
|
+
"shape": "UpdateSmsTemplateResponse"
|
3323
|
+
},
|
3324
|
+
"errors": [
|
3325
|
+
{
|
3326
|
+
"shape": "BadRequestException"
|
3327
|
+
},
|
3328
|
+
{
|
3329
|
+
"shape": "InternalServerErrorException"
|
3330
|
+
},
|
3331
|
+
{
|
3332
|
+
"shape": "ForbiddenException"
|
3333
|
+
},
|
3334
|
+
{
|
3335
|
+
"shape": "NotFoundException"
|
3336
|
+
},
|
3337
|
+
{
|
3338
|
+
"shape": "MethodNotAllowedException"
|
3339
|
+
},
|
3340
|
+
{
|
3341
|
+
"shape": "TooManyRequestsException"
|
3342
|
+
}
|
3343
|
+
]
|
3344
|
+
},
|
3345
|
+
"UpdateVoiceChannel": {
|
3346
|
+
"name": "UpdateVoiceChannel",
|
3347
|
+
"http": {
|
3348
|
+
"method": "PUT",
|
3349
|
+
"requestUri": "/v1/apps/{application-id}/channels/voice",
|
3350
|
+
"responseCode": 200
|
3351
|
+
},
|
3352
|
+
"input": {
|
3353
|
+
"shape": "UpdateVoiceChannelRequest"
|
3354
|
+
},
|
3355
|
+
"output": {
|
3356
|
+
"shape": "UpdateVoiceChannelResponse"
|
3357
|
+
},
|
3358
|
+
"errors": [
|
3359
|
+
{
|
3360
|
+
"shape": "BadRequestException"
|
3361
|
+
},
|
3362
|
+
{
|
3363
|
+
"shape": "InternalServerErrorException"
|
3364
|
+
},
|
3365
|
+
{
|
3366
|
+
"shape": "ForbiddenException"
|
3367
|
+
},
|
3368
|
+
{
|
3369
|
+
"shape": "NotFoundException"
|
3370
|
+
},
|
3371
|
+
{
|
3372
|
+
"shape": "MethodNotAllowedException"
|
3373
|
+
},
|
3374
|
+
{
|
3375
|
+
"shape": "TooManyRequestsException"
|
3376
|
+
}
|
3377
|
+
]
|
3378
|
+
}
|
3379
|
+
},
|
3380
|
+
"shapes": {
|
3381
|
+
"ADMChannelRequest": {
|
3382
|
+
"type": "structure",
|
3383
|
+
"members": {
|
3384
|
+
"ClientId": {
|
3079
3385
|
"shape": "__string"
|
3080
3386
|
},
|
3081
3387
|
"ClientSecret": {
|
@@ -3257,6 +3563,9 @@
|
|
3257
3563
|
"APNSMessage": {
|
3258
3564
|
"type": "structure",
|
3259
3565
|
"members": {
|
3566
|
+
"APNSPushType": {
|
3567
|
+
"shape": "__string"
|
3568
|
+
},
|
3260
3569
|
"Action": {
|
3261
3570
|
"shape": "Action"
|
3262
3571
|
},
|
@@ -3574,6 +3883,32 @@
|
|
3574
3883
|
"Item"
|
3575
3884
|
]
|
3576
3885
|
},
|
3886
|
+
"Activity": {
|
3887
|
+
"type": "structure",
|
3888
|
+
"members": {
|
3889
|
+
"ConditionalSplit": {
|
3890
|
+
"shape": "ConditionalSplitActivity"
|
3891
|
+
},
|
3892
|
+
"Description": {
|
3893
|
+
"shape": "__string"
|
3894
|
+
},
|
3895
|
+
"EMAIL": {
|
3896
|
+
"shape": "EmailMessageActivity"
|
3897
|
+
},
|
3898
|
+
"Holdout": {
|
3899
|
+
"shape": "HoldoutActivity"
|
3900
|
+
},
|
3901
|
+
"MultiCondition": {
|
3902
|
+
"shape": "MultiConditionalSplitActivity"
|
3903
|
+
},
|
3904
|
+
"RandomSplit": {
|
3905
|
+
"shape": "RandomSplitActivity"
|
3906
|
+
},
|
3907
|
+
"Wait": {
|
3908
|
+
"shape": "WaitActivity"
|
3909
|
+
}
|
3910
|
+
}
|
3911
|
+
},
|
3577
3912
|
"ActivityResponse": {
|
3578
3913
|
"type": "structure",
|
3579
3914
|
"members": {
|
@@ -4224,6 +4559,34 @@
|
|
4224
4559
|
"Channels"
|
4225
4560
|
]
|
4226
4561
|
},
|
4562
|
+
"Condition": {
|
4563
|
+
"type": "structure",
|
4564
|
+
"members": {
|
4565
|
+
"Conditions": {
|
4566
|
+
"shape": "ListOfSimpleCondition"
|
4567
|
+
},
|
4568
|
+
"Operator": {
|
4569
|
+
"shape": "Operator"
|
4570
|
+
}
|
4571
|
+
}
|
4572
|
+
},
|
4573
|
+
"ConditionalSplitActivity": {
|
4574
|
+
"type": "structure",
|
4575
|
+
"members": {
|
4576
|
+
"Condition": {
|
4577
|
+
"shape": "Condition"
|
4578
|
+
},
|
4579
|
+
"EvaluationWaitTime": {
|
4580
|
+
"shape": "WaitTime"
|
4581
|
+
},
|
4582
|
+
"FalseActivity": {
|
4583
|
+
"shape": "__string"
|
4584
|
+
},
|
4585
|
+
"TrueActivity": {
|
4586
|
+
"shape": "__string"
|
4587
|
+
}
|
4588
|
+
}
|
4589
|
+
},
|
4227
4590
|
"CreateAppRequest": {
|
4228
4591
|
"type": "structure",
|
4229
4592
|
"members": {
|
@@ -4383,6 +4746,36 @@
|
|
4383
4746
|
],
|
4384
4747
|
"payload": "ImportJobResponse"
|
4385
4748
|
},
|
4749
|
+
"CreateJourneyRequest": {
|
4750
|
+
"type": "structure",
|
4751
|
+
"members": {
|
4752
|
+
"ApplicationId": {
|
4753
|
+
"shape": "__string",
|
4754
|
+
"location": "uri",
|
4755
|
+
"locationName": "application-id"
|
4756
|
+
},
|
4757
|
+
"WriteJourneyRequest": {
|
4758
|
+
"shape": "WriteJourneyRequest"
|
4759
|
+
}
|
4760
|
+
},
|
4761
|
+
"required": [
|
4762
|
+
"ApplicationId",
|
4763
|
+
"WriteJourneyRequest"
|
4764
|
+
],
|
4765
|
+
"payload": "WriteJourneyRequest"
|
4766
|
+
},
|
4767
|
+
"CreateJourneyResponse": {
|
4768
|
+
"type": "structure",
|
4769
|
+
"members": {
|
4770
|
+
"JourneyResponse": {
|
4771
|
+
"shape": "JourneyResponse"
|
4772
|
+
}
|
4773
|
+
},
|
4774
|
+
"required": [
|
4775
|
+
"JourneyResponse"
|
4776
|
+
],
|
4777
|
+
"payload": "JourneyResponse"
|
4778
|
+
},
|
4386
4779
|
"CreatePushTemplateRequest": {
|
4387
4780
|
"type": "structure",
|
4388
4781
|
"members": {
|
@@ -4881,6 +5274,37 @@
|
|
4881
5274
|
],
|
4882
5275
|
"payload": "GCMChannelResponse"
|
4883
5276
|
},
|
5277
|
+
"DeleteJourneyRequest": {
|
5278
|
+
"type": "structure",
|
5279
|
+
"members": {
|
5280
|
+
"ApplicationId": {
|
5281
|
+
"shape": "__string",
|
5282
|
+
"location": "uri",
|
5283
|
+
"locationName": "application-id"
|
5284
|
+
},
|
5285
|
+
"JourneyId": {
|
5286
|
+
"shape": "__string",
|
5287
|
+
"location": "uri",
|
5288
|
+
"locationName": "journey-id"
|
5289
|
+
}
|
5290
|
+
},
|
5291
|
+
"required": [
|
5292
|
+
"JourneyId",
|
5293
|
+
"ApplicationId"
|
5294
|
+
]
|
5295
|
+
},
|
5296
|
+
"DeleteJourneyResponse": {
|
5297
|
+
"type": "structure",
|
5298
|
+
"members": {
|
5299
|
+
"JourneyResponse": {
|
5300
|
+
"shape": "JourneyResponse"
|
5301
|
+
}
|
5302
|
+
},
|
5303
|
+
"required": [
|
5304
|
+
"JourneyResponse"
|
5305
|
+
],
|
5306
|
+
"payload": "JourneyResponse"
|
5307
|
+
},
|
4884
5308
|
"DeletePushTemplateRequest": {
|
4885
5309
|
"type": "structure",
|
4886
5310
|
"members": {
|
@@ -5206,6 +5630,20 @@
|
|
5206
5630
|
}
|
5207
5631
|
}
|
5208
5632
|
},
|
5633
|
+
"EmailMessageActivity": {
|
5634
|
+
"type": "structure",
|
5635
|
+
"members": {
|
5636
|
+
"MessageConfig": {
|
5637
|
+
"shape": "JourneyEmailMessage"
|
5638
|
+
},
|
5639
|
+
"NextActivity": {
|
5640
|
+
"shape": "__string"
|
5641
|
+
},
|
5642
|
+
"TemplateName": {
|
5643
|
+
"shape": "__string"
|
5644
|
+
}
|
5645
|
+
}
|
5646
|
+
},
|
5209
5647
|
"EmailTemplateRequest": {
|
5210
5648
|
"type": "structure",
|
5211
5649
|
"members": {
|
@@ -5574,6 +6012,20 @@
|
|
5574
6012
|
"Timestamp"
|
5575
6013
|
]
|
5576
6014
|
},
|
6015
|
+
"EventCondition": {
|
6016
|
+
"type": "structure",
|
6017
|
+
"members": {
|
6018
|
+
"Dimensions": {
|
6019
|
+
"shape": "EventDimensions"
|
6020
|
+
},
|
6021
|
+
"MessageActivity": {
|
6022
|
+
"shape": "__string"
|
6023
|
+
}
|
6024
|
+
},
|
6025
|
+
"required": [
|
6026
|
+
"Dimensions"
|
6027
|
+
]
|
6028
|
+
},
|
5577
6029
|
"EventDimensions": {
|
5578
6030
|
"type": "structure",
|
5579
6031
|
"members": {
|
@@ -6758,32 +7210,64 @@
|
|
6758
7210
|
],
|
6759
7211
|
"payload": "ImportJobsResponse"
|
6760
7212
|
},
|
6761
|
-
"
|
7213
|
+
"GetJourneyDateRangeKpiRequest": {
|
6762
7214
|
"type": "structure",
|
6763
7215
|
"members": {
|
6764
|
-
"
|
7216
|
+
"ApplicationId": {
|
6765
7217
|
"shape": "__string",
|
6766
7218
|
"location": "uri",
|
6767
|
-
"locationName": "
|
7219
|
+
"locationName": "application-id"
|
7220
|
+
},
|
7221
|
+
"EndTime": {
|
7222
|
+
"shape": "__timestampIso8601",
|
7223
|
+
"location": "querystring",
|
7224
|
+
"locationName": "end-time"
|
7225
|
+
},
|
7226
|
+
"JourneyId": {
|
7227
|
+
"shape": "__string",
|
7228
|
+
"location": "uri",
|
7229
|
+
"locationName": "journey-id"
|
7230
|
+
},
|
7231
|
+
"KpiName": {
|
7232
|
+
"shape": "__string",
|
7233
|
+
"location": "uri",
|
7234
|
+
"locationName": "kpi-name"
|
7235
|
+
},
|
7236
|
+
"NextToken": {
|
7237
|
+
"shape": "__string",
|
7238
|
+
"location": "querystring",
|
7239
|
+
"locationName": "next-token"
|
7240
|
+
},
|
7241
|
+
"PageSize": {
|
7242
|
+
"shape": "__string",
|
7243
|
+
"location": "querystring",
|
7244
|
+
"locationName": "page-size"
|
7245
|
+
},
|
7246
|
+
"StartTime": {
|
7247
|
+
"shape": "__timestampIso8601",
|
7248
|
+
"location": "querystring",
|
7249
|
+
"locationName": "start-time"
|
6768
7250
|
}
|
6769
7251
|
},
|
6770
7252
|
"required": [
|
6771
|
-
"
|
7253
|
+
"JourneyId",
|
7254
|
+
"ApplicationId",
|
7255
|
+
"KpiName"
|
6772
7256
|
]
|
6773
7257
|
},
|
6774
|
-
"
|
7258
|
+
"GetJourneyDateRangeKpiResponse": {
|
6775
7259
|
"type": "structure",
|
6776
7260
|
"members": {
|
6777
|
-
"
|
6778
|
-
"shape": "
|
7261
|
+
"JourneyDateRangeKpiResponse": {
|
7262
|
+
"shape": "JourneyDateRangeKpiResponse"
|
6779
7263
|
}
|
6780
7264
|
},
|
6781
7265
|
"required": [
|
6782
|
-
"
|
7266
|
+
"JourneyDateRangeKpiResponse"
|
6783
7267
|
],
|
6784
|
-
"payload": "
|
7268
|
+
"payload": "JourneyDateRangeKpiResponse"
|
6785
7269
|
},
|
6786
|
-
"
|
7270
|
+
"GetJourneyExecutionActivityMetricsRequest": {
|
6787
7271
|
"type": "structure",
|
6788
7272
|
"members": {
|
6789
7273
|
"ApplicationId": {
|
@@ -6791,40 +7275,46 @@
|
|
6791
7275
|
"location": "uri",
|
6792
7276
|
"locationName": "application-id"
|
6793
7277
|
},
|
6794
|
-
"
|
7278
|
+
"JourneyActivityId": {
|
6795
7279
|
"shape": "__string",
|
6796
|
-
"location": "
|
6797
|
-
"locationName": "
|
7280
|
+
"location": "uri",
|
7281
|
+
"locationName": "journey-activity-id"
|
6798
7282
|
},
|
6799
|
-
"
|
7283
|
+
"JourneyId": {
|
6800
7284
|
"shape": "__string",
|
6801
7285
|
"location": "uri",
|
6802
|
-
"locationName": "
|
7286
|
+
"locationName": "journey-id"
|
6803
7287
|
},
|
6804
|
-
"
|
7288
|
+
"NextToken": {
|
6805
7289
|
"shape": "__string",
|
6806
7290
|
"location": "querystring",
|
6807
|
-
"locationName": "token"
|
7291
|
+
"locationName": "next-token"
|
7292
|
+
},
|
7293
|
+
"PageSize": {
|
7294
|
+
"shape": "__string",
|
7295
|
+
"location": "querystring",
|
7296
|
+
"locationName": "page-size"
|
6808
7297
|
}
|
6809
7298
|
},
|
6810
7299
|
"required": [
|
6811
|
-
"
|
6812
|
-
"ApplicationId"
|
7300
|
+
"JourneyActivityId",
|
7301
|
+
"ApplicationId",
|
7302
|
+
"JourneyId"
|
6813
7303
|
]
|
6814
7304
|
},
|
6815
|
-
"
|
7305
|
+
"GetJourneyExecutionActivityMetricsResponse": {
|
6816
7306
|
"type": "structure",
|
6817
7307
|
"members": {
|
6818
|
-
"
|
6819
|
-
"shape": "
|
7308
|
+
"JourneyExecutionActivityMetricsResponse": {
|
7309
|
+
"shape": "JourneyExecutionActivityMetricsResponse"
|
6820
7310
|
}
|
6821
7311
|
},
|
6822
7312
|
"required": [
|
6823
|
-
"
|
7313
|
+
"JourneyExecutionActivityMetricsResponse"
|
6824
7314
|
],
|
6825
|
-
"payload": "
|
7315
|
+
"payload": "JourneyExecutionActivityMetricsResponse"
|
6826
7316
|
},
|
6827
|
-
"
|
7317
|
+
"GetJourneyExecutionMetricsRequest": {
|
6828
7318
|
"type": "structure",
|
6829
7319
|
"members": {
|
6830
7320
|
"ApplicationId": {
|
@@ -6832,32 +7322,170 @@
|
|
6832
7322
|
"location": "uri",
|
6833
7323
|
"locationName": "application-id"
|
6834
7324
|
},
|
6835
|
-
"
|
7325
|
+
"JourneyId": {
|
6836
7326
|
"shape": "__string",
|
6837
|
-
"location": "
|
6838
|
-
"locationName": "
|
7327
|
+
"location": "uri",
|
7328
|
+
"locationName": "journey-id"
|
6839
7329
|
},
|
6840
|
-
"
|
7330
|
+
"NextToken": {
|
6841
7331
|
"shape": "__string",
|
6842
|
-
"location": "
|
6843
|
-
"locationName": "
|
7332
|
+
"location": "querystring",
|
7333
|
+
"locationName": "next-token"
|
6844
7334
|
},
|
6845
|
-
"
|
7335
|
+
"PageSize": {
|
6846
7336
|
"shape": "__string",
|
6847
7337
|
"location": "querystring",
|
6848
|
-
"locationName": "
|
7338
|
+
"locationName": "page-size"
|
6849
7339
|
}
|
6850
7340
|
},
|
6851
7341
|
"required": [
|
6852
|
-
"
|
6853
|
-
"
|
7342
|
+
"ApplicationId",
|
7343
|
+
"JourneyId"
|
6854
7344
|
]
|
6855
7345
|
},
|
6856
|
-
"
|
7346
|
+
"GetJourneyExecutionMetricsResponse": {
|
6857
7347
|
"type": "structure",
|
6858
7348
|
"members": {
|
6859
|
-
"
|
6860
|
-
"shape": "
|
7349
|
+
"JourneyExecutionMetricsResponse": {
|
7350
|
+
"shape": "JourneyExecutionMetricsResponse"
|
7351
|
+
}
|
7352
|
+
},
|
7353
|
+
"required": [
|
7354
|
+
"JourneyExecutionMetricsResponse"
|
7355
|
+
],
|
7356
|
+
"payload": "JourneyExecutionMetricsResponse"
|
7357
|
+
},
|
7358
|
+
"GetJourneyRequest": {
|
7359
|
+
"type": "structure",
|
7360
|
+
"members": {
|
7361
|
+
"ApplicationId": {
|
7362
|
+
"shape": "__string",
|
7363
|
+
"location": "uri",
|
7364
|
+
"locationName": "application-id"
|
7365
|
+
},
|
7366
|
+
"JourneyId": {
|
7367
|
+
"shape": "__string",
|
7368
|
+
"location": "uri",
|
7369
|
+
"locationName": "journey-id"
|
7370
|
+
}
|
7371
|
+
},
|
7372
|
+
"required": [
|
7373
|
+
"JourneyId",
|
7374
|
+
"ApplicationId"
|
7375
|
+
]
|
7376
|
+
},
|
7377
|
+
"GetJourneyResponse": {
|
7378
|
+
"type": "structure",
|
7379
|
+
"members": {
|
7380
|
+
"JourneyResponse": {
|
7381
|
+
"shape": "JourneyResponse"
|
7382
|
+
}
|
7383
|
+
},
|
7384
|
+
"required": [
|
7385
|
+
"JourneyResponse"
|
7386
|
+
],
|
7387
|
+
"payload": "JourneyResponse"
|
7388
|
+
},
|
7389
|
+
"GetPushTemplateRequest": {
|
7390
|
+
"type": "structure",
|
7391
|
+
"members": {
|
7392
|
+
"TemplateName": {
|
7393
|
+
"shape": "__string",
|
7394
|
+
"location": "uri",
|
7395
|
+
"locationName": "template-name"
|
7396
|
+
}
|
7397
|
+
},
|
7398
|
+
"required": [
|
7399
|
+
"TemplateName"
|
7400
|
+
]
|
7401
|
+
},
|
7402
|
+
"GetPushTemplateResponse": {
|
7403
|
+
"type": "structure",
|
7404
|
+
"members": {
|
7405
|
+
"PushNotificationTemplateResponse": {
|
7406
|
+
"shape": "PushNotificationTemplateResponse"
|
7407
|
+
}
|
7408
|
+
},
|
7409
|
+
"required": [
|
7410
|
+
"PushNotificationTemplateResponse"
|
7411
|
+
],
|
7412
|
+
"payload": "PushNotificationTemplateResponse"
|
7413
|
+
},
|
7414
|
+
"GetSegmentExportJobsRequest": {
|
7415
|
+
"type": "structure",
|
7416
|
+
"members": {
|
7417
|
+
"ApplicationId": {
|
7418
|
+
"shape": "__string",
|
7419
|
+
"location": "uri",
|
7420
|
+
"locationName": "application-id"
|
7421
|
+
},
|
7422
|
+
"PageSize": {
|
7423
|
+
"shape": "__string",
|
7424
|
+
"location": "querystring",
|
7425
|
+
"locationName": "page-size"
|
7426
|
+
},
|
7427
|
+
"SegmentId": {
|
7428
|
+
"shape": "__string",
|
7429
|
+
"location": "uri",
|
7430
|
+
"locationName": "segment-id"
|
7431
|
+
},
|
7432
|
+
"Token": {
|
7433
|
+
"shape": "__string",
|
7434
|
+
"location": "querystring",
|
7435
|
+
"locationName": "token"
|
7436
|
+
}
|
7437
|
+
},
|
7438
|
+
"required": [
|
7439
|
+
"SegmentId",
|
7440
|
+
"ApplicationId"
|
7441
|
+
]
|
7442
|
+
},
|
7443
|
+
"GetSegmentExportJobsResponse": {
|
7444
|
+
"type": "structure",
|
7445
|
+
"members": {
|
7446
|
+
"ExportJobsResponse": {
|
7447
|
+
"shape": "ExportJobsResponse"
|
7448
|
+
}
|
7449
|
+
},
|
7450
|
+
"required": [
|
7451
|
+
"ExportJobsResponse"
|
7452
|
+
],
|
7453
|
+
"payload": "ExportJobsResponse"
|
7454
|
+
},
|
7455
|
+
"GetSegmentImportJobsRequest": {
|
7456
|
+
"type": "structure",
|
7457
|
+
"members": {
|
7458
|
+
"ApplicationId": {
|
7459
|
+
"shape": "__string",
|
7460
|
+
"location": "uri",
|
7461
|
+
"locationName": "application-id"
|
7462
|
+
},
|
7463
|
+
"PageSize": {
|
7464
|
+
"shape": "__string",
|
7465
|
+
"location": "querystring",
|
7466
|
+
"locationName": "page-size"
|
7467
|
+
},
|
7468
|
+
"SegmentId": {
|
7469
|
+
"shape": "__string",
|
7470
|
+
"location": "uri",
|
7471
|
+
"locationName": "segment-id"
|
7472
|
+
},
|
7473
|
+
"Token": {
|
7474
|
+
"shape": "__string",
|
7475
|
+
"location": "querystring",
|
7476
|
+
"locationName": "token"
|
7477
|
+
}
|
7478
|
+
},
|
7479
|
+
"required": [
|
7480
|
+
"SegmentId",
|
7481
|
+
"ApplicationId"
|
7482
|
+
]
|
7483
|
+
},
|
7484
|
+
"GetSegmentImportJobsResponse": {
|
7485
|
+
"type": "structure",
|
7486
|
+
"members": {
|
7487
|
+
"ImportJobsResponse": {
|
7488
|
+
"shape": "ImportJobsResponse"
|
6861
7489
|
}
|
6862
7490
|
},
|
6863
7491
|
"required": [
|
@@ -7115,6 +7743,20 @@
|
|
7115
7743
|
],
|
7116
7744
|
"payload": "VoiceChannelResponse"
|
7117
7745
|
},
|
7746
|
+
"HoldoutActivity": {
|
7747
|
+
"type": "structure",
|
7748
|
+
"members": {
|
7749
|
+
"NextActivity": {
|
7750
|
+
"shape": "__string"
|
7751
|
+
},
|
7752
|
+
"Percentage": {
|
7753
|
+
"shape": "__integer"
|
7754
|
+
}
|
7755
|
+
},
|
7756
|
+
"required": [
|
7757
|
+
"Percentage"
|
7758
|
+
]
|
7759
|
+
},
|
7118
7760
|
"ImportJobRequest": {
|
7119
7761
|
"type": "structure",
|
7120
7762
|
"members": {
|
@@ -7287,14 +7929,253 @@
|
|
7287
7929
|
"type": "string",
|
7288
7930
|
"enum": [
|
7289
7931
|
"CREATED",
|
7932
|
+
"PREPARING_FOR_INITIALIZATION",
|
7290
7933
|
"INITIALIZING",
|
7291
7934
|
"PROCESSING",
|
7935
|
+
"PENDING_JOB",
|
7292
7936
|
"COMPLETING",
|
7293
7937
|
"COMPLETED",
|
7294
7938
|
"FAILING",
|
7295
7939
|
"FAILED"
|
7296
7940
|
]
|
7297
7941
|
},
|
7942
|
+
"JourneyDateRangeKpiResponse": {
|
7943
|
+
"type": "structure",
|
7944
|
+
"members": {
|
7945
|
+
"ApplicationId": {
|
7946
|
+
"shape": "__string"
|
7947
|
+
},
|
7948
|
+
"EndTime": {
|
7949
|
+
"shape": "__timestampIso8601"
|
7950
|
+
},
|
7951
|
+
"JourneyId": {
|
7952
|
+
"shape": "__string"
|
7953
|
+
},
|
7954
|
+
"KpiName": {
|
7955
|
+
"shape": "__string"
|
7956
|
+
},
|
7957
|
+
"KpiResult": {
|
7958
|
+
"shape": "BaseKpiResult"
|
7959
|
+
},
|
7960
|
+
"NextToken": {
|
7961
|
+
"shape": "__string"
|
7962
|
+
},
|
7963
|
+
"StartTime": {
|
7964
|
+
"shape": "__timestampIso8601"
|
7965
|
+
}
|
7966
|
+
},
|
7967
|
+
"required": [
|
7968
|
+
"KpiResult",
|
7969
|
+
"KpiName",
|
7970
|
+
"JourneyId",
|
7971
|
+
"EndTime",
|
7972
|
+
"StartTime",
|
7973
|
+
"ApplicationId"
|
7974
|
+
]
|
7975
|
+
},
|
7976
|
+
"JourneyEmailMessage": {
|
7977
|
+
"type": "structure",
|
7978
|
+
"members": {
|
7979
|
+
"FromAddress": {
|
7980
|
+
"shape": "__string"
|
7981
|
+
}
|
7982
|
+
}
|
7983
|
+
},
|
7984
|
+
"JourneyExecutionActivityMetricsResponse": {
|
7985
|
+
"type": "structure",
|
7986
|
+
"members": {
|
7987
|
+
"ActivityType": {
|
7988
|
+
"shape": "__string"
|
7989
|
+
},
|
7990
|
+
"ApplicationId": {
|
7991
|
+
"shape": "__string"
|
7992
|
+
},
|
7993
|
+
"JourneyActivityId": {
|
7994
|
+
"shape": "__string"
|
7995
|
+
},
|
7996
|
+
"JourneyId": {
|
7997
|
+
"shape": "__string"
|
7998
|
+
},
|
7999
|
+
"LastEvaluatedTime": {
|
8000
|
+
"shape": "__string"
|
8001
|
+
},
|
8002
|
+
"Metrics": {
|
8003
|
+
"shape": "MapOf__string"
|
8004
|
+
}
|
8005
|
+
},
|
8006
|
+
"required": [
|
8007
|
+
"Metrics",
|
8008
|
+
"JourneyId",
|
8009
|
+
"LastEvaluatedTime",
|
8010
|
+
"JourneyActivityId",
|
8011
|
+
"ActivityType",
|
8012
|
+
"ApplicationId"
|
8013
|
+
]
|
8014
|
+
},
|
8015
|
+
"JourneyExecutionMetricsResponse": {
|
8016
|
+
"type": "structure",
|
8017
|
+
"members": {
|
8018
|
+
"ApplicationId": {
|
8019
|
+
"shape": "__string"
|
8020
|
+
},
|
8021
|
+
"JourneyId": {
|
8022
|
+
"shape": "__string"
|
8023
|
+
},
|
8024
|
+
"LastEvaluatedTime": {
|
8025
|
+
"shape": "__string"
|
8026
|
+
},
|
8027
|
+
"Metrics": {
|
8028
|
+
"shape": "MapOf__string"
|
8029
|
+
}
|
8030
|
+
},
|
8031
|
+
"required": [
|
8032
|
+
"Metrics",
|
8033
|
+
"JourneyId",
|
8034
|
+
"LastEvaluatedTime",
|
8035
|
+
"ApplicationId"
|
8036
|
+
]
|
8037
|
+
},
|
8038
|
+
"JourneyLimits": {
|
8039
|
+
"type": "structure",
|
8040
|
+
"members": {
|
8041
|
+
"DailyCap": {
|
8042
|
+
"shape": "__integer"
|
8043
|
+
},
|
8044
|
+
"EndpointReentryCap": {
|
8045
|
+
"shape": "__integer"
|
8046
|
+
},
|
8047
|
+
"MessagesPerSecond": {
|
8048
|
+
"shape": "__integer"
|
8049
|
+
}
|
8050
|
+
}
|
8051
|
+
},
|
8052
|
+
"JourneyResponse": {
|
8053
|
+
"type": "structure",
|
8054
|
+
"members": {
|
8055
|
+
"Activities": {
|
8056
|
+
"shape": "MapOfActivity"
|
8057
|
+
},
|
8058
|
+
"ApplicationId": {
|
8059
|
+
"shape": "__string"
|
8060
|
+
},
|
8061
|
+
"CreationDate": {
|
8062
|
+
"shape": "__string"
|
8063
|
+
},
|
8064
|
+
"Id": {
|
8065
|
+
"shape": "__string"
|
8066
|
+
},
|
8067
|
+
"LastModifiedDate": {
|
8068
|
+
"shape": "__string"
|
8069
|
+
},
|
8070
|
+
"Limits": {
|
8071
|
+
"shape": "JourneyLimits"
|
8072
|
+
},
|
8073
|
+
"LocalTime": {
|
8074
|
+
"shape": "__boolean"
|
8075
|
+
},
|
8076
|
+
"Name": {
|
8077
|
+
"shape": "__string"
|
8078
|
+
},
|
8079
|
+
"QuietTime": {
|
8080
|
+
"shape": "QuietTime"
|
8081
|
+
},
|
8082
|
+
"RefreshFrequency": {
|
8083
|
+
"shape": "__string"
|
8084
|
+
},
|
8085
|
+
"Schedule": {
|
8086
|
+
"shape": "JourneySchedule"
|
8087
|
+
},
|
8088
|
+
"StartActivity": {
|
8089
|
+
"shape": "__string"
|
8090
|
+
},
|
8091
|
+
"StartCondition": {
|
8092
|
+
"shape": "StartCondition"
|
8093
|
+
},
|
8094
|
+
"State": {
|
8095
|
+
"shape": "State"
|
8096
|
+
},
|
8097
|
+
"tags": {
|
8098
|
+
"shape": "MapOf__string",
|
8099
|
+
"locationName": "tags"
|
8100
|
+
}
|
8101
|
+
},
|
8102
|
+
"required": [
|
8103
|
+
"Name",
|
8104
|
+
"Id",
|
8105
|
+
"ApplicationId"
|
8106
|
+
]
|
8107
|
+
},
|
8108
|
+
"JourneySchedule": {
|
8109
|
+
"type": "structure",
|
8110
|
+
"members": {
|
8111
|
+
"EndTime": {
|
8112
|
+
"shape": "__timestampIso8601"
|
8113
|
+
},
|
8114
|
+
"StartTime": {
|
8115
|
+
"shape": "__timestampIso8601"
|
8116
|
+
},
|
8117
|
+
"Timezone": {
|
8118
|
+
"shape": "__string"
|
8119
|
+
}
|
8120
|
+
}
|
8121
|
+
},
|
8122
|
+
"JourneyStateRequest": {
|
8123
|
+
"type": "structure",
|
8124
|
+
"members": {
|
8125
|
+
"State": {
|
8126
|
+
"shape": "State"
|
8127
|
+
}
|
8128
|
+
}
|
8129
|
+
},
|
8130
|
+
"JourneysResponse": {
|
8131
|
+
"type": "structure",
|
8132
|
+
"members": {
|
8133
|
+
"Item": {
|
8134
|
+
"shape": "ListOfJourneyResponse"
|
8135
|
+
},
|
8136
|
+
"NextToken": {
|
8137
|
+
"shape": "__string"
|
8138
|
+
}
|
8139
|
+
},
|
8140
|
+
"required": [
|
8141
|
+
"Item"
|
8142
|
+
]
|
8143
|
+
},
|
8144
|
+
"ListJourneysRequest": {
|
8145
|
+
"type": "structure",
|
8146
|
+
"members": {
|
8147
|
+
"ApplicationId": {
|
8148
|
+
"shape": "__string",
|
8149
|
+
"location": "uri",
|
8150
|
+
"locationName": "application-id"
|
8151
|
+
},
|
8152
|
+
"PageSize": {
|
8153
|
+
"shape": "__string",
|
8154
|
+
"location": "querystring",
|
8155
|
+
"locationName": "page-size"
|
8156
|
+
},
|
8157
|
+
"Token": {
|
8158
|
+
"shape": "__string",
|
8159
|
+
"location": "querystring",
|
8160
|
+
"locationName": "token"
|
8161
|
+
}
|
8162
|
+
},
|
8163
|
+
"required": [
|
8164
|
+
"ApplicationId"
|
8165
|
+
]
|
8166
|
+
},
|
8167
|
+
"ListJourneysResponse": {
|
8168
|
+
"type": "structure",
|
8169
|
+
"members": {
|
8170
|
+
"JourneysResponse": {
|
8171
|
+
"shape": "JourneysResponse"
|
8172
|
+
}
|
8173
|
+
},
|
8174
|
+
"required": [
|
8175
|
+
"JourneysResponse"
|
8176
|
+
],
|
8177
|
+
"payload": "JourneysResponse"
|
8178
|
+
},
|
7298
8179
|
"ListTagsForResourceRequest": {
|
7299
8180
|
"type": "structure",
|
7300
8181
|
"members": {
|
@@ -7549,6 +8430,31 @@
|
|
7549
8430
|
"FILTER"
|
7550
8431
|
]
|
7551
8432
|
},
|
8433
|
+
"MultiConditionalBranch": {
|
8434
|
+
"type": "structure",
|
8435
|
+
"members": {
|
8436
|
+
"Condition": {
|
8437
|
+
"shape": "SimpleCondition"
|
8438
|
+
},
|
8439
|
+
"NextActivity": {
|
8440
|
+
"shape": "__string"
|
8441
|
+
}
|
8442
|
+
}
|
8443
|
+
},
|
8444
|
+
"MultiConditionalSplitActivity": {
|
8445
|
+
"type": "structure",
|
8446
|
+
"members": {
|
8447
|
+
"Branches": {
|
8448
|
+
"shape": "ListOfMultiConditionalBranch"
|
8449
|
+
},
|
8450
|
+
"DefaultActivity": {
|
8451
|
+
"shape": "__string"
|
8452
|
+
},
|
8453
|
+
"EvaluationWaitTime": {
|
8454
|
+
"shape": "WaitTime"
|
8455
|
+
}
|
8456
|
+
}
|
8457
|
+
},
|
7552
8458
|
"NotFoundException": {
|
7553
8459
|
"type": "structure",
|
7554
8460
|
"members": {
|
@@ -7622,6 +8528,13 @@
|
|
7622
8528
|
}
|
7623
8529
|
}
|
7624
8530
|
},
|
8531
|
+
"Operator": {
|
8532
|
+
"type": "string",
|
8533
|
+
"enum": [
|
8534
|
+
"ALL",
|
8535
|
+
"ANY"
|
8536
|
+
]
|
8537
|
+
},
|
7625
8538
|
"PhoneNumberValidateRequest": {
|
7626
8539
|
"type": "structure",
|
7627
8540
|
"members": {
|
@@ -7824,6 +8737,25 @@
|
|
7824
8737
|
}
|
7825
8738
|
}
|
7826
8739
|
},
|
8740
|
+
"RandomSplitActivity": {
|
8741
|
+
"type": "structure",
|
8742
|
+
"members": {
|
8743
|
+
"Branches": {
|
8744
|
+
"shape": "ListOfRandomSplitEntry"
|
8745
|
+
}
|
8746
|
+
}
|
8747
|
+
},
|
8748
|
+
"RandomSplitEntry": {
|
8749
|
+
"type": "structure",
|
8750
|
+
"members": {
|
8751
|
+
"NextActivity": {
|
8752
|
+
"shape": "__string"
|
8753
|
+
},
|
8754
|
+
"Percentage": {
|
8755
|
+
"shape": "__integer"
|
8756
|
+
}
|
8757
|
+
}
|
8758
|
+
},
|
7827
8759
|
"RawEmail": {
|
7828
8760
|
"type": "structure",
|
7829
8761
|
"members": {
|
@@ -8096,6 +9028,17 @@
|
|
8096
9028
|
}
|
8097
9029
|
}
|
8098
9030
|
},
|
9031
|
+
"SegmentCondition": {
|
9032
|
+
"type": "structure",
|
9033
|
+
"members": {
|
9034
|
+
"SegmentId": {
|
9035
|
+
"shape": "__string"
|
9036
|
+
}
|
9037
|
+
},
|
9038
|
+
"required": [
|
9039
|
+
"SegmentId"
|
9040
|
+
]
|
9041
|
+
},
|
8099
9042
|
"SegmentDemographics": {
|
8100
9043
|
"type": "structure",
|
8101
9044
|
"members": {
|
@@ -8431,6 +9374,21 @@
|
|
8431
9374
|
"Values"
|
8432
9375
|
]
|
8433
9376
|
},
|
9377
|
+
"SimpleCondition": {
|
9378
|
+
"type": "structure",
|
9379
|
+
"members": {
|
9380
|
+
"EventCondition": {
|
9381
|
+
"shape": "EventCondition"
|
9382
|
+
},
|
9383
|
+
"SegmentCondition": {
|
9384
|
+
"shape": "SegmentCondition"
|
9385
|
+
},
|
9386
|
+
"SegmentDimensions": {
|
9387
|
+
"shape": "SegmentDimensions",
|
9388
|
+
"locationName": "segmentDimensions"
|
9389
|
+
}
|
9390
|
+
}
|
9391
|
+
},
|
8434
9392
|
"SimpleEmail": {
|
8435
9393
|
"type": "structure",
|
8436
9394
|
"members": {
|
@@ -8464,6 +9422,27 @@
|
|
8464
9422
|
"NONE"
|
8465
9423
|
]
|
8466
9424
|
},
|
9425
|
+
"StartCondition": {
|
9426
|
+
"type": "structure",
|
9427
|
+
"members": {
|
9428
|
+
"Description": {
|
9429
|
+
"shape": "__string"
|
9430
|
+
},
|
9431
|
+
"SegmentStartCondition": {
|
9432
|
+
"shape": "SegmentCondition"
|
9433
|
+
}
|
9434
|
+
}
|
9435
|
+
},
|
9436
|
+
"State": {
|
9437
|
+
"type": "string",
|
9438
|
+
"enum": [
|
9439
|
+
"DRAFT",
|
9440
|
+
"ACTIVE",
|
9441
|
+
"COMPLETED",
|
9442
|
+
"CANCELLED",
|
9443
|
+
"CLOSED"
|
9444
|
+
]
|
9445
|
+
},
|
8467
9446
|
"TagResourceRequest": {
|
8468
9447
|
"type": "structure",
|
8469
9448
|
"members": {
|
@@ -8551,6 +9530,7 @@
|
|
8551
9530
|
"enum": [
|
8552
9531
|
"EMAIL",
|
8553
9532
|
"SMS",
|
9533
|
+
"VOICE",
|
8554
9534
|
"PUSH"
|
8555
9535
|
]
|
8556
9536
|
},
|
@@ -9053,6 +10033,78 @@
|
|
9053
10033
|
],
|
9054
10034
|
"payload": "GCMChannelResponse"
|
9055
10035
|
},
|
10036
|
+
"UpdateJourneyRequest": {
|
10037
|
+
"type": "structure",
|
10038
|
+
"members": {
|
10039
|
+
"ApplicationId": {
|
10040
|
+
"shape": "__string",
|
10041
|
+
"location": "uri",
|
10042
|
+
"locationName": "application-id"
|
10043
|
+
},
|
10044
|
+
"JourneyId": {
|
10045
|
+
"shape": "__string",
|
10046
|
+
"location": "uri",
|
10047
|
+
"locationName": "journey-id"
|
10048
|
+
},
|
10049
|
+
"WriteJourneyRequest": {
|
10050
|
+
"shape": "WriteJourneyRequest"
|
10051
|
+
}
|
10052
|
+
},
|
10053
|
+
"required": [
|
10054
|
+
"JourneyId",
|
10055
|
+
"ApplicationId",
|
10056
|
+
"WriteJourneyRequest"
|
10057
|
+
],
|
10058
|
+
"payload": "WriteJourneyRequest"
|
10059
|
+
},
|
10060
|
+
"UpdateJourneyResponse": {
|
10061
|
+
"type": "structure",
|
10062
|
+
"members": {
|
10063
|
+
"JourneyResponse": {
|
10064
|
+
"shape": "JourneyResponse"
|
10065
|
+
}
|
10066
|
+
},
|
10067
|
+
"required": [
|
10068
|
+
"JourneyResponse"
|
10069
|
+
],
|
10070
|
+
"payload": "JourneyResponse"
|
10071
|
+
},
|
10072
|
+
"UpdateJourneyStateRequest": {
|
10073
|
+
"type": "structure",
|
10074
|
+
"members": {
|
10075
|
+
"ApplicationId": {
|
10076
|
+
"shape": "__string",
|
10077
|
+
"location": "uri",
|
10078
|
+
"locationName": "application-id"
|
10079
|
+
},
|
10080
|
+
"JourneyId": {
|
10081
|
+
"shape": "__string",
|
10082
|
+
"location": "uri",
|
10083
|
+
"locationName": "journey-id"
|
10084
|
+
},
|
10085
|
+
"JourneyStateRequest": {
|
10086
|
+
"shape": "JourneyStateRequest"
|
10087
|
+
}
|
10088
|
+
},
|
10089
|
+
"required": [
|
10090
|
+
"JourneyId",
|
10091
|
+
"ApplicationId",
|
10092
|
+
"JourneyStateRequest"
|
10093
|
+
],
|
10094
|
+
"payload": "JourneyStateRequest"
|
10095
|
+
},
|
10096
|
+
"UpdateJourneyStateResponse": {
|
10097
|
+
"type": "structure",
|
10098
|
+
"members": {
|
10099
|
+
"JourneyResponse": {
|
10100
|
+
"shape": "JourneyResponse"
|
10101
|
+
}
|
10102
|
+
},
|
10103
|
+
"required": [
|
10104
|
+
"JourneyResponse"
|
10105
|
+
],
|
10106
|
+
"payload": "JourneyResponse"
|
10107
|
+
},
|
9056
10108
|
"UpdatePushTemplateRequest": {
|
9057
10109
|
"type": "structure",
|
9058
10110
|
"members": {
|
@@ -9244,9 +10296,6 @@
|
|
9244
10296
|
"LastModifiedDate": {
|
9245
10297
|
"shape": "__string"
|
9246
10298
|
},
|
9247
|
-
"OriginationNumber": {
|
9248
|
-
"shape": "__string"
|
9249
|
-
},
|
9250
10299
|
"Platform": {
|
9251
10300
|
"shape": "__string"
|
9252
10301
|
},
|
@@ -9278,6 +10327,28 @@
|
|
9278
10327
|
}
|
9279
10328
|
}
|
9280
10329
|
},
|
10330
|
+
"WaitActivity": {
|
10331
|
+
"type": "structure",
|
10332
|
+
"members": {
|
10333
|
+
"NextActivity": {
|
10334
|
+
"shape": "__string"
|
10335
|
+
},
|
10336
|
+
"WaitTime": {
|
10337
|
+
"shape": "WaitTime"
|
10338
|
+
}
|
10339
|
+
}
|
10340
|
+
},
|
10341
|
+
"WaitTime": {
|
10342
|
+
"type": "structure",
|
10343
|
+
"members": {
|
10344
|
+
"WaitFor": {
|
10345
|
+
"shape": "__string"
|
10346
|
+
},
|
10347
|
+
"WaitUntil": {
|
10348
|
+
"shape": "__string"
|
10349
|
+
}
|
10350
|
+
}
|
10351
|
+
},
|
9281
10352
|
"WriteApplicationSettingsRequest": {
|
9282
10353
|
"type": "structure",
|
9283
10354
|
"members": {
|
@@ -9361,6 +10432,50 @@
|
|
9361
10432
|
"DestinationStreamArn"
|
9362
10433
|
]
|
9363
10434
|
},
|
10435
|
+
"WriteJourneyRequest": {
|
10436
|
+
"type": "structure",
|
10437
|
+
"members": {
|
10438
|
+
"Activities": {
|
10439
|
+
"shape": "MapOfActivity"
|
10440
|
+
},
|
10441
|
+
"CreationDate": {
|
10442
|
+
"shape": "__string"
|
10443
|
+
},
|
10444
|
+
"LastModifiedDate": {
|
10445
|
+
"shape": "__string"
|
10446
|
+
},
|
10447
|
+
"Limits": {
|
10448
|
+
"shape": "JourneyLimits"
|
10449
|
+
},
|
10450
|
+
"LocalTime": {
|
10451
|
+
"shape": "__boolean"
|
10452
|
+
},
|
10453
|
+
"Name": {
|
10454
|
+
"shape": "__string"
|
10455
|
+
},
|
10456
|
+
"QuietTime": {
|
10457
|
+
"shape": "QuietTime"
|
10458
|
+
},
|
10459
|
+
"RefreshFrequency": {
|
10460
|
+
"shape": "__string"
|
10461
|
+
},
|
10462
|
+
"Schedule": {
|
10463
|
+
"shape": "JourneySchedule"
|
10464
|
+
},
|
10465
|
+
"StartActivity": {
|
10466
|
+
"shape": "__string"
|
10467
|
+
},
|
10468
|
+
"StartCondition": {
|
10469
|
+
"shape": "StartCondition"
|
10470
|
+
},
|
10471
|
+
"State": {
|
10472
|
+
"shape": "State"
|
10473
|
+
}
|
10474
|
+
},
|
10475
|
+
"required": [
|
10476
|
+
"Name"
|
10477
|
+
]
|
10478
|
+
},
|
9364
10479
|
"WriteSegmentRequest": {
|
9365
10480
|
"type": "structure",
|
9366
10481
|
"members": {
|
@@ -9456,6 +10571,24 @@
|
|
9456
10571
|
"shape": "ImportJobResponse"
|
9457
10572
|
}
|
9458
10573
|
},
|
10574
|
+
"ListOfJourneyResponse": {
|
10575
|
+
"type": "list",
|
10576
|
+
"member": {
|
10577
|
+
"shape": "JourneyResponse"
|
10578
|
+
}
|
10579
|
+
},
|
10580
|
+
"ListOfMultiConditionalBranch": {
|
10581
|
+
"type": "list",
|
10582
|
+
"member": {
|
10583
|
+
"shape": "MultiConditionalBranch"
|
10584
|
+
}
|
10585
|
+
},
|
10586
|
+
"ListOfRandomSplitEntry": {
|
10587
|
+
"type": "list",
|
10588
|
+
"member": {
|
10589
|
+
"shape": "RandomSplitEntry"
|
10590
|
+
}
|
10591
|
+
},
|
9459
10592
|
"ListOfResultRow": {
|
9460
10593
|
"type": "list",
|
9461
10594
|
"member": {
|
@@ -9492,6 +10625,12 @@
|
|
9492
10625
|
"shape": "SegmentResponse"
|
9493
10626
|
}
|
9494
10627
|
},
|
10628
|
+
"ListOfSimpleCondition": {
|
10629
|
+
"type": "list",
|
10630
|
+
"member": {
|
10631
|
+
"shape": "SimpleCondition"
|
10632
|
+
}
|
10633
|
+
},
|
9495
10634
|
"ListOfTemplateResponse": {
|
9496
10635
|
"type": "list",
|
9497
10636
|
"member": {
|
@@ -9519,6 +10658,15 @@
|
|
9519
10658
|
"__long": {
|
9520
10659
|
"type": "long"
|
9521
10660
|
},
|
10661
|
+
"MapOfActivity": {
|
10662
|
+
"type": "map",
|
10663
|
+
"key": {
|
10664
|
+
"shape": "__string"
|
10665
|
+
},
|
10666
|
+
"value": {
|
10667
|
+
"shape": "Activity"
|
10668
|
+
}
|
10669
|
+
},
|
9522
10670
|
"MapOfAddressConfiguration": {
|
9523
10671
|
"type": "map",
|
9524
10672
|
"key": {
|