aws-sdk-core 2.10.90 → 2.10.91
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/apis/apigateway/2015-07-09/api-2.json +22 -2
- data/apis/appsync/2017-07-25/api-2.json +1362 -0
- data/apis/appsync/2017-07-25/examples-1.json +5 -0
- data/apis/appsync/2017-07-25/paginators-1.json +4 -0
- data/apis/batch/2016-08-10/api-2.json +54 -4
- data/apis/codedeploy/2014-10-06/api-2.json +214 -18
- data/apis/cognito-idp/2016-04-18/api-2.json +840 -24
- data/apis/ec2/2016-11-15/api-2.json +1705 -29
- data/apis/guardduty/2017-11-28/api-2.json +2622 -0
- data/apis/guardduty/2017-11-28/paginators-1.json +40 -0
- data/apis/lambda/2015-03-31/api-2.json +35 -5
- data/apis/mq/2017-11-27/api-2.json +1865 -0
- data/lib/aws-sdk-core.rb +3 -0
- data/lib/aws-sdk-core/appsync.rb +6 -0
- data/lib/aws-sdk-core/guardduty.rb +5 -0
- data/lib/aws-sdk-core/mq.rb +4 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- data/service-models.json +12 -0
- metadata +11 -2
@@ -0,0 +1,40 @@
|
|
1
|
+
{
|
2
|
+
"pagination": {
|
3
|
+
"ListDetectors": {
|
4
|
+
"input_token": "NextToken",
|
5
|
+
"limit_key": "MaxResults",
|
6
|
+
"output_token": "NextToken",
|
7
|
+
"result_key": "DetectorIds"
|
8
|
+
},
|
9
|
+
"ListFindings": {
|
10
|
+
"input_token": "NextToken",
|
11
|
+
"limit_key": "MaxResults",
|
12
|
+
"output_token": "NextToken",
|
13
|
+
"result_key": "FindingIds"
|
14
|
+
},
|
15
|
+
"ListIPSets": {
|
16
|
+
"input_token": "NextToken",
|
17
|
+
"limit_key": "MaxResults",
|
18
|
+
"output_token": "NextToken",
|
19
|
+
"result_key": "IpSetIds"
|
20
|
+
},
|
21
|
+
"ListThreatIntelSets": {
|
22
|
+
"input_token": "NextToken",
|
23
|
+
"limit_key": "MaxResults",
|
24
|
+
"output_token": "NextToken",
|
25
|
+
"result_key": "ThreatIntelSetIds"
|
26
|
+
},
|
27
|
+
"ListInvitations": {
|
28
|
+
"input_token": "NextToken",
|
29
|
+
"limit_key": "MaxResults",
|
30
|
+
"output_token": "NextToken",
|
31
|
+
"result_key": "Invitations"
|
32
|
+
},
|
33
|
+
"ListMembers": {
|
34
|
+
"input_token": "NextToken",
|
35
|
+
"limit_key": "MaxResults",
|
36
|
+
"output_token": "NextToken",
|
37
|
+
"result_key": "Members"
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
@@ -529,6 +529,17 @@
|
|
529
529
|
"Statement":{"shape":"String"}
|
530
530
|
}
|
531
531
|
},
|
532
|
+
"AdditionalVersion":{
|
533
|
+
"type":"string",
|
534
|
+
"max":1024,
|
535
|
+
"min":1,
|
536
|
+
"pattern":"[0-9]+"
|
537
|
+
},
|
538
|
+
"AdditionalVersionWeights":{
|
539
|
+
"type":"map",
|
540
|
+
"key":{"shape":"AdditionalVersion"},
|
541
|
+
"value":{"shape":"Weight"}
|
542
|
+
},
|
532
543
|
"Alias":{
|
533
544
|
"type":"string",
|
534
545
|
"max":128,
|
@@ -541,13 +552,20 @@
|
|
541
552
|
"AliasArn":{"shape":"FunctionArn"},
|
542
553
|
"Name":{"shape":"Alias"},
|
543
554
|
"FunctionVersion":{"shape":"Version"},
|
544
|
-
"Description":{"shape":"Description"}
|
555
|
+
"Description":{"shape":"Description"},
|
556
|
+
"RoutingConfig":{"shape":"AliasRoutingConfiguration"}
|
545
557
|
}
|
546
558
|
},
|
547
559
|
"AliasList":{
|
548
560
|
"type":"list",
|
549
561
|
"member":{"shape":"AliasConfiguration"}
|
550
562
|
},
|
563
|
+
"AliasRoutingConfiguration":{
|
564
|
+
"type":"structure",
|
565
|
+
"members":{
|
566
|
+
"AdditionalVersionWeights":{"shape":"AdditionalVersionWeights"}
|
567
|
+
}
|
568
|
+
},
|
551
569
|
"Arn":{
|
552
570
|
"type":"string",
|
553
571
|
"pattern":"arn:aws:([a-zA-Z0-9\\-])+:([a-z]{2}-[a-z]+-\\d{1})?:(\\d{12})?:(.*)"
|
@@ -590,7 +608,8 @@
|
|
590
608
|
},
|
591
609
|
"Name":{"shape":"Alias"},
|
592
610
|
"FunctionVersion":{"shape":"Version"},
|
593
|
-
"Description":{"shape":"Description"}
|
611
|
+
"Description":{"shape":"Description"},
|
612
|
+
"RoutingConfig":{"shape":"AliasRoutingConfiguration"}
|
594
613
|
}
|
595
614
|
},
|
596
615
|
"CreateEventSourceMappingRequest":{
|
@@ -1070,7 +1089,12 @@
|
|
1070
1089
|
"location":"header",
|
1071
1090
|
"locationName":"X-Amz-Log-Result"
|
1072
1091
|
},
|
1073
|
-
"Payload":{"shape":"Blob"}
|
1092
|
+
"Payload":{"shape":"Blob"},
|
1093
|
+
"ExecutedVersion":{
|
1094
|
+
"shape":"Version",
|
1095
|
+
"location":"header",
|
1096
|
+
"locationName":"X-Amz-Executed-Version"
|
1097
|
+
}
|
1074
1098
|
},
|
1075
1099
|
"payload":"Payload"
|
1076
1100
|
},
|
@@ -1613,7 +1637,8 @@
|
|
1613
1637
|
"locationName":"Name"
|
1614
1638
|
},
|
1615
1639
|
"FunctionVersion":{"shape":"Version"},
|
1616
|
-
"Description":{"shape":"Description"}
|
1640
|
+
"Description":{"shape":"Description"},
|
1641
|
+
"RoutingConfig":{"shape":"AliasRoutingConfiguration"}
|
1617
1642
|
}
|
1618
1643
|
},
|
1619
1644
|
"UpdateEventSourceMappingRequest":{
|
@@ -1690,6 +1715,11 @@
|
|
1690
1715
|
"VpcId":{"shape":"VpcId"}
|
1691
1716
|
}
|
1692
1717
|
},
|
1693
|
-
"VpcId":{"type":"string"}
|
1718
|
+
"VpcId":{"type":"string"},
|
1719
|
+
"Weight":{
|
1720
|
+
"type":"double",
|
1721
|
+
"max":1.0,
|
1722
|
+
"min":0.0
|
1723
|
+
}
|
1694
1724
|
}
|
1695
1725
|
}
|
@@ -0,0 +1,1865 @@
|
|
1
|
+
{
|
2
|
+
"metadata" : {
|
3
|
+
"apiVersion" : "2017-11-27",
|
4
|
+
"endpointPrefix" : "mq",
|
5
|
+
"signingName" : "mq",
|
6
|
+
"serviceFullName" : "AmazonMQ",
|
7
|
+
"serviceId" : "mq",
|
8
|
+
"protocol" : "rest-json",
|
9
|
+
"jsonVersion" : "1.1",
|
10
|
+
"uid" : "mq-2017-11-27",
|
11
|
+
"signatureVersion" : "v4"
|
12
|
+
},
|
13
|
+
"operations" : {
|
14
|
+
"CreateBroker" : {
|
15
|
+
"name" : "CreateBroker",
|
16
|
+
"http" : {
|
17
|
+
"method" : "POST",
|
18
|
+
"requestUri" : "/v1/brokers",
|
19
|
+
"responseCode" : 200
|
20
|
+
},
|
21
|
+
"input" : {
|
22
|
+
"shape" : "CreateBrokerRequest"
|
23
|
+
},
|
24
|
+
"output" : {
|
25
|
+
"shape" : "CreateBrokerResponse"
|
26
|
+
},
|
27
|
+
"errors" : [ {
|
28
|
+
"shape" : "BadRequestException"
|
29
|
+
}, {
|
30
|
+
"shape" : "InternalServerErrorException"
|
31
|
+
}, {
|
32
|
+
"shape" : "UnauthorizedException"
|
33
|
+
}, {
|
34
|
+
"shape" : "ConflictException"
|
35
|
+
}, {
|
36
|
+
"shape" : "ForbiddenException"
|
37
|
+
} ]
|
38
|
+
},
|
39
|
+
"CreateConfiguration" : {
|
40
|
+
"name" : "CreateConfiguration",
|
41
|
+
"http" : {
|
42
|
+
"method" : "POST",
|
43
|
+
"requestUri" : "/v1/configurations",
|
44
|
+
"responseCode" : 200
|
45
|
+
},
|
46
|
+
"input" : {
|
47
|
+
"shape" : "CreateConfigurationRequest"
|
48
|
+
},
|
49
|
+
"output" : {
|
50
|
+
"shape" : "CreateConfigurationResponse"
|
51
|
+
},
|
52
|
+
"errors" : [ {
|
53
|
+
"shape" : "BadRequestException"
|
54
|
+
}, {
|
55
|
+
"shape" : "InternalServerErrorException"
|
56
|
+
}, {
|
57
|
+
"shape" : "ConflictException"
|
58
|
+
}, {
|
59
|
+
"shape" : "ForbiddenException"
|
60
|
+
} ]
|
61
|
+
},
|
62
|
+
"CreateUser" : {
|
63
|
+
"name" : "CreateUser",
|
64
|
+
"http" : {
|
65
|
+
"method" : "POST",
|
66
|
+
"requestUri" : "/v1/brokers/{broker-id}/users/{username}",
|
67
|
+
"responseCode" : 200
|
68
|
+
},
|
69
|
+
"input" : {
|
70
|
+
"shape" : "CreateUserRequest"
|
71
|
+
},
|
72
|
+
"output" : {
|
73
|
+
"shape" : "CreateUserResponse"
|
74
|
+
},
|
75
|
+
"errors" : [ {
|
76
|
+
"shape" : "NotFoundException"
|
77
|
+
}, {
|
78
|
+
"shape" : "BadRequestException"
|
79
|
+
}, {
|
80
|
+
"shape" : "InternalServerErrorException"
|
81
|
+
}, {
|
82
|
+
"shape" : "ConflictException"
|
83
|
+
}, {
|
84
|
+
"shape" : "ForbiddenException"
|
85
|
+
} ]
|
86
|
+
},
|
87
|
+
"DeleteBroker" : {
|
88
|
+
"name" : "DeleteBroker",
|
89
|
+
"http" : {
|
90
|
+
"method" : "DELETE",
|
91
|
+
"requestUri" : "/v1/brokers/{broker-id}",
|
92
|
+
"responseCode" : 200
|
93
|
+
},
|
94
|
+
"input" : {
|
95
|
+
"shape" : "DeleteBrokerRequest"
|
96
|
+
},
|
97
|
+
"output" : {
|
98
|
+
"shape" : "DeleteBrokerResponse"
|
99
|
+
},
|
100
|
+
"errors" : [ {
|
101
|
+
"shape" : "NotFoundException"
|
102
|
+
}, {
|
103
|
+
"shape" : "BadRequestException"
|
104
|
+
}, {
|
105
|
+
"shape" : "InternalServerErrorException"
|
106
|
+
}, {
|
107
|
+
"shape" : "ForbiddenException"
|
108
|
+
} ]
|
109
|
+
},
|
110
|
+
"DeleteUser" : {
|
111
|
+
"name" : "DeleteUser",
|
112
|
+
"http" : {
|
113
|
+
"method" : "DELETE",
|
114
|
+
"requestUri" : "/v1/brokers/{broker-id}/users/{username}",
|
115
|
+
"responseCode" : 200
|
116
|
+
},
|
117
|
+
"input" : {
|
118
|
+
"shape" : "DeleteUserRequest"
|
119
|
+
},
|
120
|
+
"output" : {
|
121
|
+
"shape" : "DeleteUserResponse"
|
122
|
+
},
|
123
|
+
"errors" : [ {
|
124
|
+
"shape" : "NotFoundException"
|
125
|
+
}, {
|
126
|
+
"shape" : "BadRequestException"
|
127
|
+
}, {
|
128
|
+
"shape" : "InternalServerErrorException"
|
129
|
+
}, {
|
130
|
+
"shape" : "ForbiddenException"
|
131
|
+
} ]
|
132
|
+
},
|
133
|
+
"DescribeBroker" : {
|
134
|
+
"name" : "DescribeBroker",
|
135
|
+
"http" : {
|
136
|
+
"method" : "GET",
|
137
|
+
"requestUri" : "/v1/brokers/{broker-id}",
|
138
|
+
"responseCode" : 200
|
139
|
+
},
|
140
|
+
"input" : {
|
141
|
+
"shape" : "DescribeBrokerRequest"
|
142
|
+
},
|
143
|
+
"output" : {
|
144
|
+
"shape" : "DescribeBrokerResponse"
|
145
|
+
},
|
146
|
+
"errors" : [ {
|
147
|
+
"shape" : "NotFoundException"
|
148
|
+
}, {
|
149
|
+
"shape" : "BadRequestException"
|
150
|
+
}, {
|
151
|
+
"shape" : "InternalServerErrorException"
|
152
|
+
}, {
|
153
|
+
"shape" : "ForbiddenException"
|
154
|
+
} ]
|
155
|
+
},
|
156
|
+
"DescribeConfiguration" : {
|
157
|
+
"name" : "DescribeConfiguration",
|
158
|
+
"http" : {
|
159
|
+
"method" : "GET",
|
160
|
+
"requestUri" : "/v1/configurations/{configuration-id}",
|
161
|
+
"responseCode" : 200
|
162
|
+
},
|
163
|
+
"input" : {
|
164
|
+
"shape" : "DescribeConfigurationRequest"
|
165
|
+
},
|
166
|
+
"output" : {
|
167
|
+
"shape" : "DescribeConfigurationResponse"
|
168
|
+
},
|
169
|
+
"errors" : [ {
|
170
|
+
"shape" : "NotFoundException"
|
171
|
+
}, {
|
172
|
+
"shape" : "BadRequestException"
|
173
|
+
}, {
|
174
|
+
"shape" : "InternalServerErrorException"
|
175
|
+
}, {
|
176
|
+
"shape" : "ForbiddenException"
|
177
|
+
} ]
|
178
|
+
},
|
179
|
+
"DescribeConfigurationRevision" : {
|
180
|
+
"name" : "DescribeConfigurationRevision",
|
181
|
+
"http" : {
|
182
|
+
"method" : "GET",
|
183
|
+
"requestUri" : "/v1/configurations/{configuration-id}/revisions/{configuration-revision}",
|
184
|
+
"responseCode" : 200
|
185
|
+
},
|
186
|
+
"input" : {
|
187
|
+
"shape" : "DescribeConfigurationRevisionRequest"
|
188
|
+
},
|
189
|
+
"output" : {
|
190
|
+
"shape" : "DescribeConfigurationRevisionResponse"
|
191
|
+
},
|
192
|
+
"errors" : [ {
|
193
|
+
"shape" : "NotFoundException"
|
194
|
+
}, {
|
195
|
+
"shape" : "BadRequestException"
|
196
|
+
}, {
|
197
|
+
"shape" : "InternalServerErrorException"
|
198
|
+
}, {
|
199
|
+
"shape" : "ForbiddenException"
|
200
|
+
} ]
|
201
|
+
},
|
202
|
+
"DescribeUser" : {
|
203
|
+
"name" : "DescribeUser",
|
204
|
+
"http" : {
|
205
|
+
"method" : "GET",
|
206
|
+
"requestUri" : "/v1/brokers/{broker-id}/users/{username}",
|
207
|
+
"responseCode" : 200
|
208
|
+
},
|
209
|
+
"input" : {
|
210
|
+
"shape" : "DescribeUserRequest"
|
211
|
+
},
|
212
|
+
"output" : {
|
213
|
+
"shape" : "DescribeUserResponse"
|
214
|
+
},
|
215
|
+
"errors" : [ {
|
216
|
+
"shape" : "NotFoundException"
|
217
|
+
}, {
|
218
|
+
"shape" : "BadRequestException"
|
219
|
+
}, {
|
220
|
+
"shape" : "InternalServerErrorException"
|
221
|
+
}, {
|
222
|
+
"shape" : "ForbiddenException"
|
223
|
+
} ]
|
224
|
+
},
|
225
|
+
"ListBrokers" : {
|
226
|
+
"name" : "ListBrokers",
|
227
|
+
"http" : {
|
228
|
+
"method" : "GET",
|
229
|
+
"requestUri" : "/v1/brokers",
|
230
|
+
"responseCode" : 200
|
231
|
+
},
|
232
|
+
"input" : {
|
233
|
+
"shape" : "ListBrokersRequest"
|
234
|
+
},
|
235
|
+
"output" : {
|
236
|
+
"shape" : "ListBrokersResponse"
|
237
|
+
},
|
238
|
+
"errors" : [ {
|
239
|
+
"shape" : "BadRequestException"
|
240
|
+
}, {
|
241
|
+
"shape" : "InternalServerErrorException"
|
242
|
+
}, {
|
243
|
+
"shape" : "ForbiddenException"
|
244
|
+
} ]
|
245
|
+
},
|
246
|
+
"ListConfigurationRevisions" : {
|
247
|
+
"name" : "ListConfigurationRevisions",
|
248
|
+
"http" : {
|
249
|
+
"method" : "GET",
|
250
|
+
"requestUri" : "/v1/configurations/{configuration-id}/revisions",
|
251
|
+
"responseCode" : 200
|
252
|
+
},
|
253
|
+
"input" : {
|
254
|
+
"shape" : "ListConfigurationRevisionsRequest"
|
255
|
+
},
|
256
|
+
"output" : {
|
257
|
+
"shape" : "ListConfigurationRevisionsResponse"
|
258
|
+
},
|
259
|
+
"errors" : [ {
|
260
|
+
"shape" : "NotFoundException"
|
261
|
+
}, {
|
262
|
+
"shape" : "BadRequestException"
|
263
|
+
}, {
|
264
|
+
"shape" : "InternalServerErrorException"
|
265
|
+
}, {
|
266
|
+
"shape" : "ForbiddenException"
|
267
|
+
} ]
|
268
|
+
},
|
269
|
+
"ListConfigurations" : {
|
270
|
+
"name" : "ListConfigurations",
|
271
|
+
"http" : {
|
272
|
+
"method" : "GET",
|
273
|
+
"requestUri" : "/v1/configurations",
|
274
|
+
"responseCode" : 200
|
275
|
+
},
|
276
|
+
"input" : {
|
277
|
+
"shape" : "ListConfigurationsRequest"
|
278
|
+
},
|
279
|
+
"output" : {
|
280
|
+
"shape" : "ListConfigurationsResponse"
|
281
|
+
},
|
282
|
+
"errors" : [ {
|
283
|
+
"shape" : "BadRequestException"
|
284
|
+
}, {
|
285
|
+
"shape" : "InternalServerErrorException"
|
286
|
+
}, {
|
287
|
+
"shape" : "ForbiddenException"
|
288
|
+
} ]
|
289
|
+
},
|
290
|
+
"ListUsers" : {
|
291
|
+
"name" : "ListUsers",
|
292
|
+
"http" : {
|
293
|
+
"method" : "GET",
|
294
|
+
"requestUri" : "/v1/brokers/{broker-id}/users",
|
295
|
+
"responseCode" : 200
|
296
|
+
},
|
297
|
+
"input" : {
|
298
|
+
"shape" : "ListUsersRequest"
|
299
|
+
},
|
300
|
+
"output" : {
|
301
|
+
"shape" : "ListUsersResponse"
|
302
|
+
},
|
303
|
+
"errors" : [ {
|
304
|
+
"shape" : "NotFoundException"
|
305
|
+
}, {
|
306
|
+
"shape" : "BadRequestException"
|
307
|
+
}, {
|
308
|
+
"shape" : "InternalServerErrorException"
|
309
|
+
}, {
|
310
|
+
"shape" : "ForbiddenException"
|
311
|
+
} ]
|
312
|
+
},
|
313
|
+
"RebootBroker" : {
|
314
|
+
"name" : "RebootBroker",
|
315
|
+
"http" : {
|
316
|
+
"method" : "POST",
|
317
|
+
"requestUri" : "/v1/brokers/{broker-id}/reboot",
|
318
|
+
"responseCode" : 200
|
319
|
+
},
|
320
|
+
"input" : {
|
321
|
+
"shape" : "RebootBrokerRequest"
|
322
|
+
},
|
323
|
+
"output" : {
|
324
|
+
"shape" : "RebootBrokerResponse"
|
325
|
+
},
|
326
|
+
"errors" : [ {
|
327
|
+
"shape" : "NotFoundException"
|
328
|
+
}, {
|
329
|
+
"shape" : "BadRequestException"
|
330
|
+
}, {
|
331
|
+
"shape" : "InternalServerErrorException"
|
332
|
+
}, {
|
333
|
+
"shape" : "ForbiddenException"
|
334
|
+
} ]
|
335
|
+
},
|
336
|
+
"UpdateBroker" : {
|
337
|
+
"name" : "UpdateBroker",
|
338
|
+
"http" : {
|
339
|
+
"method" : "PUT",
|
340
|
+
"requestUri" : "/v1/brokers/{broker-id}",
|
341
|
+
"responseCode" : 200
|
342
|
+
},
|
343
|
+
"input" : {
|
344
|
+
"shape" : "UpdateBrokerRequest"
|
345
|
+
},
|
346
|
+
"output" : {
|
347
|
+
"shape" : "UpdateBrokerResponse"
|
348
|
+
},
|
349
|
+
"errors" : [ {
|
350
|
+
"shape" : "NotFoundException"
|
351
|
+
}, {
|
352
|
+
"shape" : "BadRequestException"
|
353
|
+
}, {
|
354
|
+
"shape" : "InternalServerErrorException"
|
355
|
+
}, {
|
356
|
+
"shape" : "ForbiddenException"
|
357
|
+
} ]
|
358
|
+
},
|
359
|
+
"UpdateConfiguration" : {
|
360
|
+
"name" : "UpdateConfiguration",
|
361
|
+
"http" : {
|
362
|
+
"method" : "PUT",
|
363
|
+
"requestUri" : "/v1/configurations/{configuration-id}",
|
364
|
+
"responseCode" : 200
|
365
|
+
},
|
366
|
+
"input" : {
|
367
|
+
"shape" : "UpdateConfigurationRequest"
|
368
|
+
},
|
369
|
+
"output" : {
|
370
|
+
"shape" : "UpdateConfigurationResponse"
|
371
|
+
},
|
372
|
+
"errors" : [ {
|
373
|
+
"shape" : "NotFoundException"
|
374
|
+
}, {
|
375
|
+
"shape" : "BadRequestException"
|
376
|
+
}, {
|
377
|
+
"shape" : "InternalServerErrorException"
|
378
|
+
}, {
|
379
|
+
"shape" : "ConflictException"
|
380
|
+
}, {
|
381
|
+
"shape" : "ForbiddenException"
|
382
|
+
} ]
|
383
|
+
},
|
384
|
+
"UpdateUser" : {
|
385
|
+
"name" : "UpdateUser",
|
386
|
+
"http" : {
|
387
|
+
"method" : "PUT",
|
388
|
+
"requestUri" : "/v1/brokers/{broker-id}/users/{username}",
|
389
|
+
"responseCode" : 200
|
390
|
+
},
|
391
|
+
"input" : {
|
392
|
+
"shape" : "UpdateUserRequest"
|
393
|
+
},
|
394
|
+
"output" : {
|
395
|
+
"shape" : "UpdateUserResponse"
|
396
|
+
},
|
397
|
+
"errors" : [ {
|
398
|
+
"shape" : "NotFoundException"
|
399
|
+
}, {
|
400
|
+
"shape" : "BadRequestException"
|
401
|
+
}, {
|
402
|
+
"shape" : "InternalServerErrorException"
|
403
|
+
}, {
|
404
|
+
"shape" : "ConflictException"
|
405
|
+
}, {
|
406
|
+
"shape" : "ForbiddenException"
|
407
|
+
} ]
|
408
|
+
}
|
409
|
+
},
|
410
|
+
"shapes" : {
|
411
|
+
"BadRequestException" : {
|
412
|
+
"type" : "structure",
|
413
|
+
"members" : {
|
414
|
+
"ErrorAttribute" : {
|
415
|
+
"shape" : "__string",
|
416
|
+
"locationName" : "errorAttribute"
|
417
|
+
},
|
418
|
+
"Message" : {
|
419
|
+
"shape" : "__string",
|
420
|
+
"locationName" : "message"
|
421
|
+
}
|
422
|
+
},
|
423
|
+
"exception" : true,
|
424
|
+
"error" : {
|
425
|
+
"httpStatusCode" : 400
|
426
|
+
}
|
427
|
+
},
|
428
|
+
"BrokerInstance" : {
|
429
|
+
"type" : "structure",
|
430
|
+
"members" : {
|
431
|
+
"ConsoleURL" : {
|
432
|
+
"shape" : "__string",
|
433
|
+
"locationName" : "consoleURL"
|
434
|
+
},
|
435
|
+
"Endpoints" : {
|
436
|
+
"shape" : "ListOf__string",
|
437
|
+
"locationName" : "endpoints"
|
438
|
+
}
|
439
|
+
}
|
440
|
+
},
|
441
|
+
"BrokerState" : {
|
442
|
+
"type" : "string",
|
443
|
+
"enum" : [ "CREATION_IN_PROGRESS", "CREATION_FAILED", "DELETION_IN_PROGRESS", "RUNNING", "REBOOT_IN_PROGRESS" ]
|
444
|
+
},
|
445
|
+
"BrokerSummary" : {
|
446
|
+
"type" : "structure",
|
447
|
+
"members" : {
|
448
|
+
"BrokerArn" : {
|
449
|
+
"shape" : "__string",
|
450
|
+
"locationName" : "brokerArn"
|
451
|
+
},
|
452
|
+
"BrokerId" : {
|
453
|
+
"shape" : "__string",
|
454
|
+
"locationName" : "brokerId"
|
455
|
+
},
|
456
|
+
"BrokerName" : {
|
457
|
+
"shape" : "__string",
|
458
|
+
"locationName" : "brokerName"
|
459
|
+
},
|
460
|
+
"BrokerState" : {
|
461
|
+
"shape" : "BrokerState",
|
462
|
+
"locationName" : "brokerState"
|
463
|
+
},
|
464
|
+
"DeploymentMode" : {
|
465
|
+
"shape" : "DeploymentMode",
|
466
|
+
"locationName" : "deploymentMode"
|
467
|
+
},
|
468
|
+
"HostInstanceType" : {
|
469
|
+
"shape" : "__string",
|
470
|
+
"locationName" : "hostInstanceType"
|
471
|
+
}
|
472
|
+
}
|
473
|
+
},
|
474
|
+
"ChangeType" : {
|
475
|
+
"type" : "string",
|
476
|
+
"enum" : [ "CREATE", "UPDATE", "DELETE" ]
|
477
|
+
},
|
478
|
+
"Configuration" : {
|
479
|
+
"type" : "structure",
|
480
|
+
"members" : {
|
481
|
+
"Arn" : {
|
482
|
+
"shape" : "__string",
|
483
|
+
"locationName" : "arn"
|
484
|
+
},
|
485
|
+
"Description" : {
|
486
|
+
"shape" : "__string",
|
487
|
+
"locationName" : "description"
|
488
|
+
},
|
489
|
+
"EngineType" : {
|
490
|
+
"shape" : "EngineType",
|
491
|
+
"locationName" : "engineType"
|
492
|
+
},
|
493
|
+
"EngineVersion" : {
|
494
|
+
"shape" : "__string",
|
495
|
+
"locationName" : "engineVersion"
|
496
|
+
},
|
497
|
+
"Id" : {
|
498
|
+
"shape" : "__string",
|
499
|
+
"locationName" : "id"
|
500
|
+
},
|
501
|
+
"LatestRevision" : {
|
502
|
+
"shape" : "ConfigurationRevision",
|
503
|
+
"locationName" : "latestRevision"
|
504
|
+
},
|
505
|
+
"Name" : {
|
506
|
+
"shape" : "__string",
|
507
|
+
"locationName" : "name"
|
508
|
+
}
|
509
|
+
}
|
510
|
+
},
|
511
|
+
"ConfigurationId" : {
|
512
|
+
"type" : "structure",
|
513
|
+
"members" : {
|
514
|
+
"Id" : {
|
515
|
+
"shape" : "__string",
|
516
|
+
"locationName" : "id"
|
517
|
+
},
|
518
|
+
"Revision" : {
|
519
|
+
"shape" : "__integer",
|
520
|
+
"locationName" : "revision"
|
521
|
+
}
|
522
|
+
}
|
523
|
+
},
|
524
|
+
"ConfigurationRevision" : {
|
525
|
+
"type" : "structure",
|
526
|
+
"members" : {
|
527
|
+
"Description" : {
|
528
|
+
"shape" : "__string",
|
529
|
+
"locationName" : "description"
|
530
|
+
},
|
531
|
+
"Revision" : {
|
532
|
+
"shape" : "__integer",
|
533
|
+
"locationName" : "revision"
|
534
|
+
}
|
535
|
+
}
|
536
|
+
},
|
537
|
+
"Configurations" : {
|
538
|
+
"type" : "structure",
|
539
|
+
"members" : {
|
540
|
+
"Current" : {
|
541
|
+
"shape" : "ConfigurationId",
|
542
|
+
"locationName" : "current"
|
543
|
+
},
|
544
|
+
"History" : {
|
545
|
+
"shape" : "ListOfConfigurationId",
|
546
|
+
"locationName" : "history"
|
547
|
+
},
|
548
|
+
"Pending" : {
|
549
|
+
"shape" : "ConfigurationId",
|
550
|
+
"locationName" : "pending"
|
551
|
+
}
|
552
|
+
}
|
553
|
+
},
|
554
|
+
"ConflictException" : {
|
555
|
+
"type" : "structure",
|
556
|
+
"members" : {
|
557
|
+
"ErrorAttribute" : {
|
558
|
+
"shape" : "__string",
|
559
|
+
"locationName" : "errorAttribute"
|
560
|
+
},
|
561
|
+
"Message" : {
|
562
|
+
"shape" : "__string",
|
563
|
+
"locationName" : "message"
|
564
|
+
}
|
565
|
+
},
|
566
|
+
"exception" : true,
|
567
|
+
"error" : {
|
568
|
+
"httpStatusCode" : 409
|
569
|
+
}
|
570
|
+
},
|
571
|
+
"CreateBrokerInput" : {
|
572
|
+
"type" : "structure",
|
573
|
+
"members" : {
|
574
|
+
"AutoMinorVersionUpgrade" : {
|
575
|
+
"shape" : "__boolean",
|
576
|
+
"locationName" : "autoMinorVersionUpgrade"
|
577
|
+
},
|
578
|
+
"BrokerName" : {
|
579
|
+
"shape" : "__string",
|
580
|
+
"locationName" : "brokerName"
|
581
|
+
},
|
582
|
+
"Configuration" : {
|
583
|
+
"shape" : "ConfigurationId",
|
584
|
+
"locationName" : "configuration"
|
585
|
+
},
|
586
|
+
"CreatorRequestId" : {
|
587
|
+
"shape" : "__string",
|
588
|
+
"locationName" : "creatorRequestId",
|
589
|
+
"idempotencyToken" : true
|
590
|
+
},
|
591
|
+
"DeploymentMode" : {
|
592
|
+
"shape" : "DeploymentMode",
|
593
|
+
"locationName" : "deploymentMode"
|
594
|
+
},
|
595
|
+
"EngineType" : {
|
596
|
+
"shape" : "EngineType",
|
597
|
+
"locationName" : "engineType"
|
598
|
+
},
|
599
|
+
"EngineVersion" : {
|
600
|
+
"shape" : "__string",
|
601
|
+
"locationName" : "engineVersion"
|
602
|
+
},
|
603
|
+
"HostInstanceType" : {
|
604
|
+
"shape" : "__string",
|
605
|
+
"locationName" : "hostInstanceType"
|
606
|
+
},
|
607
|
+
"MaintenanceWindowStartTime" : {
|
608
|
+
"shape" : "WeeklyStartTime",
|
609
|
+
"locationName" : "maintenanceWindowStartTime"
|
610
|
+
},
|
611
|
+
"PubliclyAccessible" : {
|
612
|
+
"shape" : "__boolean",
|
613
|
+
"locationName" : "publiclyAccessible"
|
614
|
+
},
|
615
|
+
"SecurityGroups" : {
|
616
|
+
"shape" : "ListOf__string",
|
617
|
+
"locationName" : "securityGroups"
|
618
|
+
},
|
619
|
+
"SubnetIds" : {
|
620
|
+
"shape" : "ListOf__string",
|
621
|
+
"locationName" : "subnetIds"
|
622
|
+
},
|
623
|
+
"Users" : {
|
624
|
+
"shape" : "ListOfUser",
|
625
|
+
"locationName" : "users"
|
626
|
+
}
|
627
|
+
}
|
628
|
+
},
|
629
|
+
"CreateBrokerOutput" : {
|
630
|
+
"type" : "structure",
|
631
|
+
"members" : {
|
632
|
+
"BrokerArn" : {
|
633
|
+
"shape" : "__string",
|
634
|
+
"locationName" : "brokerArn"
|
635
|
+
},
|
636
|
+
"BrokerId" : {
|
637
|
+
"shape" : "__string",
|
638
|
+
"locationName" : "brokerId"
|
639
|
+
}
|
640
|
+
}
|
641
|
+
},
|
642
|
+
"CreateBrokerRequest" : {
|
643
|
+
"type" : "structure",
|
644
|
+
"members" : {
|
645
|
+
"AutoMinorVersionUpgrade" : {
|
646
|
+
"shape" : "__boolean",
|
647
|
+
"locationName" : "autoMinorVersionUpgrade"
|
648
|
+
},
|
649
|
+
"BrokerName" : {
|
650
|
+
"shape" : "__string",
|
651
|
+
"locationName" : "brokerName"
|
652
|
+
},
|
653
|
+
"Configuration" : {
|
654
|
+
"shape" : "ConfigurationId",
|
655
|
+
"locationName" : "configuration"
|
656
|
+
},
|
657
|
+
"CreatorRequestId" : {
|
658
|
+
"shape" : "__string",
|
659
|
+
"locationName" : "creatorRequestId",
|
660
|
+
"idempotencyToken" : true
|
661
|
+
},
|
662
|
+
"DeploymentMode" : {
|
663
|
+
"shape" : "DeploymentMode",
|
664
|
+
"locationName" : "deploymentMode"
|
665
|
+
},
|
666
|
+
"EngineType" : {
|
667
|
+
"shape" : "EngineType",
|
668
|
+
"locationName" : "engineType"
|
669
|
+
},
|
670
|
+
"EngineVersion" : {
|
671
|
+
"shape" : "__string",
|
672
|
+
"locationName" : "engineVersion"
|
673
|
+
},
|
674
|
+
"HostInstanceType" : {
|
675
|
+
"shape" : "__string",
|
676
|
+
"locationName" : "hostInstanceType"
|
677
|
+
},
|
678
|
+
"MaintenanceWindowStartTime" : {
|
679
|
+
"shape" : "WeeklyStartTime",
|
680
|
+
"locationName" : "maintenanceWindowStartTime"
|
681
|
+
},
|
682
|
+
"PubliclyAccessible" : {
|
683
|
+
"shape" : "__boolean",
|
684
|
+
"locationName" : "publiclyAccessible"
|
685
|
+
},
|
686
|
+
"SecurityGroups" : {
|
687
|
+
"shape" : "ListOf__string",
|
688
|
+
"locationName" : "securityGroups"
|
689
|
+
},
|
690
|
+
"SubnetIds" : {
|
691
|
+
"shape" : "ListOf__string",
|
692
|
+
"locationName" : "subnetIds"
|
693
|
+
},
|
694
|
+
"Users" : {
|
695
|
+
"shape" : "ListOfUser",
|
696
|
+
"locationName" : "users"
|
697
|
+
}
|
698
|
+
}
|
699
|
+
},
|
700
|
+
"CreateBrokerResponse" : {
|
701
|
+
"type" : "structure",
|
702
|
+
"members" : {
|
703
|
+
"BrokerArn" : {
|
704
|
+
"shape" : "__string",
|
705
|
+
"locationName" : "brokerArn"
|
706
|
+
},
|
707
|
+
"BrokerId" : {
|
708
|
+
"shape" : "__string",
|
709
|
+
"locationName" : "brokerId"
|
710
|
+
}
|
711
|
+
}
|
712
|
+
},
|
713
|
+
"CreateConfigurationInput" : {
|
714
|
+
"type" : "structure",
|
715
|
+
"members" : {
|
716
|
+
"EngineType" : {
|
717
|
+
"shape" : "EngineType",
|
718
|
+
"locationName" : "engineType"
|
719
|
+
},
|
720
|
+
"EngineVersion" : {
|
721
|
+
"shape" : "__string",
|
722
|
+
"locationName" : "engineVersion"
|
723
|
+
},
|
724
|
+
"Name" : {
|
725
|
+
"shape" : "__string",
|
726
|
+
"locationName" : "name"
|
727
|
+
}
|
728
|
+
}
|
729
|
+
},
|
730
|
+
"CreateConfigurationOutput" : {
|
731
|
+
"type" : "structure",
|
732
|
+
"members" : {
|
733
|
+
"Arn" : {
|
734
|
+
"shape" : "__string",
|
735
|
+
"locationName" : "arn"
|
736
|
+
},
|
737
|
+
"Id" : {
|
738
|
+
"shape" : "__string",
|
739
|
+
"locationName" : "id"
|
740
|
+
},
|
741
|
+
"LatestRevision" : {
|
742
|
+
"shape" : "ConfigurationRevision",
|
743
|
+
"locationName" : "latestRevision"
|
744
|
+
},
|
745
|
+
"Name" : {
|
746
|
+
"shape" : "__string",
|
747
|
+
"locationName" : "name"
|
748
|
+
}
|
749
|
+
}
|
750
|
+
},
|
751
|
+
"CreateConfigurationRequest" : {
|
752
|
+
"type" : "structure",
|
753
|
+
"members" : {
|
754
|
+
"EngineType" : {
|
755
|
+
"shape" : "EngineType",
|
756
|
+
"locationName" : "engineType"
|
757
|
+
},
|
758
|
+
"EngineVersion" : {
|
759
|
+
"shape" : "__string",
|
760
|
+
"locationName" : "engineVersion"
|
761
|
+
},
|
762
|
+
"Name" : {
|
763
|
+
"shape" : "__string",
|
764
|
+
"locationName" : "name"
|
765
|
+
}
|
766
|
+
}
|
767
|
+
},
|
768
|
+
"CreateConfigurationResponse" : {
|
769
|
+
"type" : "structure",
|
770
|
+
"members" : {
|
771
|
+
"Arn" : {
|
772
|
+
"shape" : "__string",
|
773
|
+
"locationName" : "arn"
|
774
|
+
},
|
775
|
+
"Id" : {
|
776
|
+
"shape" : "__string",
|
777
|
+
"locationName" : "id"
|
778
|
+
},
|
779
|
+
"LatestRevision" : {
|
780
|
+
"shape" : "ConfigurationRevision",
|
781
|
+
"locationName" : "latestRevision"
|
782
|
+
},
|
783
|
+
"Name" : {
|
784
|
+
"shape" : "__string",
|
785
|
+
"locationName" : "name"
|
786
|
+
}
|
787
|
+
}
|
788
|
+
},
|
789
|
+
"CreateUserInput" : {
|
790
|
+
"type" : "structure",
|
791
|
+
"members" : {
|
792
|
+
"ConsoleAccess" : {
|
793
|
+
"shape" : "__boolean",
|
794
|
+
"locationName" : "consoleAccess"
|
795
|
+
},
|
796
|
+
"Groups" : {
|
797
|
+
"shape" : "ListOf__string",
|
798
|
+
"locationName" : "groups"
|
799
|
+
},
|
800
|
+
"Password" : {
|
801
|
+
"shape" : "__string",
|
802
|
+
"locationName" : "password"
|
803
|
+
}
|
804
|
+
}
|
805
|
+
},
|
806
|
+
"CreateUserRequest" : {
|
807
|
+
"type" : "structure",
|
808
|
+
"members" : {
|
809
|
+
"BrokerId" : {
|
810
|
+
"shape" : "__string",
|
811
|
+
"location" : "uri",
|
812
|
+
"locationName" : "broker-id"
|
813
|
+
},
|
814
|
+
"ConsoleAccess" : {
|
815
|
+
"shape" : "__boolean",
|
816
|
+
"locationName" : "consoleAccess"
|
817
|
+
},
|
818
|
+
"Groups" : {
|
819
|
+
"shape" : "ListOf__string",
|
820
|
+
"locationName" : "groups"
|
821
|
+
},
|
822
|
+
"Password" : {
|
823
|
+
"shape" : "__string",
|
824
|
+
"locationName" : "password"
|
825
|
+
},
|
826
|
+
"Username" : {
|
827
|
+
"shape" : "__string",
|
828
|
+
"location" : "uri",
|
829
|
+
"locationName" : "username"
|
830
|
+
}
|
831
|
+
},
|
832
|
+
"required" : [ "Username", "BrokerId" ]
|
833
|
+
},
|
834
|
+
"CreateUserResponse" : {
|
835
|
+
"type" : "structure",
|
836
|
+
"members" : { }
|
837
|
+
},
|
838
|
+
"DayOfWeek" : {
|
839
|
+
"type" : "string",
|
840
|
+
"enum" : [ "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY" ]
|
841
|
+
},
|
842
|
+
"DeleteBrokerOutput" : {
|
843
|
+
"type" : "structure",
|
844
|
+
"members" : {
|
845
|
+
"BrokerId" : {
|
846
|
+
"shape" : "__string",
|
847
|
+
"locationName" : "brokerId"
|
848
|
+
}
|
849
|
+
}
|
850
|
+
},
|
851
|
+
"DeleteBrokerRequest" : {
|
852
|
+
"type" : "structure",
|
853
|
+
"members" : {
|
854
|
+
"BrokerId" : {
|
855
|
+
"shape" : "__string",
|
856
|
+
"location" : "uri",
|
857
|
+
"locationName" : "broker-id"
|
858
|
+
}
|
859
|
+
},
|
860
|
+
"required" : [ "BrokerId" ]
|
861
|
+
},
|
862
|
+
"DeleteBrokerResponse" : {
|
863
|
+
"type" : "structure",
|
864
|
+
"members" : {
|
865
|
+
"BrokerId" : {
|
866
|
+
"shape" : "__string",
|
867
|
+
"locationName" : "brokerId"
|
868
|
+
}
|
869
|
+
}
|
870
|
+
},
|
871
|
+
"DeleteUserRequest" : {
|
872
|
+
"type" : "structure",
|
873
|
+
"members" : {
|
874
|
+
"BrokerId" : {
|
875
|
+
"shape" : "__string",
|
876
|
+
"location" : "uri",
|
877
|
+
"locationName" : "broker-id"
|
878
|
+
},
|
879
|
+
"Username" : {
|
880
|
+
"shape" : "__string",
|
881
|
+
"location" : "uri",
|
882
|
+
"locationName" : "username"
|
883
|
+
}
|
884
|
+
},
|
885
|
+
"required" : [ "Username", "BrokerId" ]
|
886
|
+
},
|
887
|
+
"DeleteUserResponse" : {
|
888
|
+
"type" : "structure",
|
889
|
+
"members" : { }
|
890
|
+
},
|
891
|
+
"DeploymentMode" : {
|
892
|
+
"type" : "string",
|
893
|
+
"enum" : [ "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ" ]
|
894
|
+
},
|
895
|
+
"DescribeBrokerOutput" : {
|
896
|
+
"type" : "structure",
|
897
|
+
"members" : {
|
898
|
+
"AutoMinorVersionUpgrade" : {
|
899
|
+
"shape" : "__boolean",
|
900
|
+
"locationName" : "autoMinorVersionUpgrade"
|
901
|
+
},
|
902
|
+
"BrokerArn" : {
|
903
|
+
"shape" : "__string",
|
904
|
+
"locationName" : "brokerArn"
|
905
|
+
},
|
906
|
+
"BrokerId" : {
|
907
|
+
"shape" : "__string",
|
908
|
+
"locationName" : "brokerId"
|
909
|
+
},
|
910
|
+
"BrokerInstances" : {
|
911
|
+
"shape" : "ListOfBrokerInstance",
|
912
|
+
"locationName" : "brokerInstances"
|
913
|
+
},
|
914
|
+
"BrokerName" : {
|
915
|
+
"shape" : "__string",
|
916
|
+
"locationName" : "brokerName"
|
917
|
+
},
|
918
|
+
"BrokerState" : {
|
919
|
+
"shape" : "BrokerState",
|
920
|
+
"locationName" : "brokerState"
|
921
|
+
},
|
922
|
+
"Configurations" : {
|
923
|
+
"shape" : "Configurations",
|
924
|
+
"locationName" : "configurations"
|
925
|
+
},
|
926
|
+
"DeploymentMode" : {
|
927
|
+
"shape" : "DeploymentMode",
|
928
|
+
"locationName" : "deploymentMode"
|
929
|
+
},
|
930
|
+
"EngineType" : {
|
931
|
+
"shape" : "EngineType",
|
932
|
+
"locationName" : "engineType"
|
933
|
+
},
|
934
|
+
"EngineVersion" : {
|
935
|
+
"shape" : "__string",
|
936
|
+
"locationName" : "engineVersion"
|
937
|
+
},
|
938
|
+
"HostInstanceType" : {
|
939
|
+
"shape" : "__string",
|
940
|
+
"locationName" : "hostInstanceType"
|
941
|
+
},
|
942
|
+
"MaintenanceWindowStartTime" : {
|
943
|
+
"shape" : "WeeklyStartTime",
|
944
|
+
"locationName" : "maintenanceWindowStartTime"
|
945
|
+
},
|
946
|
+
"PubliclyAccessible" : {
|
947
|
+
"shape" : "__boolean",
|
948
|
+
"locationName" : "publiclyAccessible"
|
949
|
+
},
|
950
|
+
"SecurityGroups" : {
|
951
|
+
"shape" : "ListOf__string",
|
952
|
+
"locationName" : "securityGroups"
|
953
|
+
},
|
954
|
+
"SubnetIds" : {
|
955
|
+
"shape" : "ListOf__string",
|
956
|
+
"locationName" : "subnetIds"
|
957
|
+
},
|
958
|
+
"Users" : {
|
959
|
+
"shape" : "ListOfUserSummary",
|
960
|
+
"locationName" : "users"
|
961
|
+
}
|
962
|
+
}
|
963
|
+
},
|
964
|
+
"DescribeBrokerRequest" : {
|
965
|
+
"type" : "structure",
|
966
|
+
"members" : {
|
967
|
+
"BrokerId" : {
|
968
|
+
"shape" : "__string",
|
969
|
+
"location" : "uri",
|
970
|
+
"locationName" : "broker-id"
|
971
|
+
}
|
972
|
+
},
|
973
|
+
"required" : [ "BrokerId" ]
|
974
|
+
},
|
975
|
+
"DescribeBrokerResponse" : {
|
976
|
+
"type" : "structure",
|
977
|
+
"members" : {
|
978
|
+
"AutoMinorVersionUpgrade" : {
|
979
|
+
"shape" : "__boolean",
|
980
|
+
"locationName" : "autoMinorVersionUpgrade"
|
981
|
+
},
|
982
|
+
"BrokerArn" : {
|
983
|
+
"shape" : "__string",
|
984
|
+
"locationName" : "brokerArn"
|
985
|
+
},
|
986
|
+
"BrokerId" : {
|
987
|
+
"shape" : "__string",
|
988
|
+
"locationName" : "brokerId"
|
989
|
+
},
|
990
|
+
"BrokerInstances" : {
|
991
|
+
"shape" : "ListOfBrokerInstance",
|
992
|
+
"locationName" : "brokerInstances"
|
993
|
+
},
|
994
|
+
"BrokerName" : {
|
995
|
+
"shape" : "__string",
|
996
|
+
"locationName" : "brokerName"
|
997
|
+
},
|
998
|
+
"BrokerState" : {
|
999
|
+
"shape" : "BrokerState",
|
1000
|
+
"locationName" : "brokerState"
|
1001
|
+
},
|
1002
|
+
"Configurations" : {
|
1003
|
+
"shape" : "Configurations",
|
1004
|
+
"locationName" : "configurations"
|
1005
|
+
},
|
1006
|
+
"DeploymentMode" : {
|
1007
|
+
"shape" : "DeploymentMode",
|
1008
|
+
"locationName" : "deploymentMode"
|
1009
|
+
},
|
1010
|
+
"EngineType" : {
|
1011
|
+
"shape" : "EngineType",
|
1012
|
+
"locationName" : "engineType"
|
1013
|
+
},
|
1014
|
+
"EngineVersion" : {
|
1015
|
+
"shape" : "__string",
|
1016
|
+
"locationName" : "engineVersion"
|
1017
|
+
},
|
1018
|
+
"HostInstanceType" : {
|
1019
|
+
"shape" : "__string",
|
1020
|
+
"locationName" : "hostInstanceType"
|
1021
|
+
},
|
1022
|
+
"MaintenanceWindowStartTime" : {
|
1023
|
+
"shape" : "WeeklyStartTime",
|
1024
|
+
"locationName" : "maintenanceWindowStartTime"
|
1025
|
+
},
|
1026
|
+
"PubliclyAccessible" : {
|
1027
|
+
"shape" : "__boolean",
|
1028
|
+
"locationName" : "publiclyAccessible"
|
1029
|
+
},
|
1030
|
+
"SecurityGroups" : {
|
1031
|
+
"shape" : "ListOf__string",
|
1032
|
+
"locationName" : "securityGroups"
|
1033
|
+
},
|
1034
|
+
"SubnetIds" : {
|
1035
|
+
"shape" : "ListOf__string",
|
1036
|
+
"locationName" : "subnetIds"
|
1037
|
+
},
|
1038
|
+
"Users" : {
|
1039
|
+
"shape" : "ListOfUserSummary",
|
1040
|
+
"locationName" : "users"
|
1041
|
+
}
|
1042
|
+
}
|
1043
|
+
},
|
1044
|
+
"DescribeConfigurationRequest" : {
|
1045
|
+
"type" : "structure",
|
1046
|
+
"members" : {
|
1047
|
+
"ConfigurationId" : {
|
1048
|
+
"shape" : "__string",
|
1049
|
+
"location" : "uri",
|
1050
|
+
"locationName" : "configuration-id"
|
1051
|
+
}
|
1052
|
+
},
|
1053
|
+
"required" : [ "ConfigurationId" ]
|
1054
|
+
},
|
1055
|
+
"DescribeConfigurationResponse" : {
|
1056
|
+
"type" : "structure",
|
1057
|
+
"members" : {
|
1058
|
+
"Arn" : {
|
1059
|
+
"shape" : "__string",
|
1060
|
+
"locationName" : "arn"
|
1061
|
+
},
|
1062
|
+
"Description" : {
|
1063
|
+
"shape" : "__string",
|
1064
|
+
"locationName" : "description"
|
1065
|
+
},
|
1066
|
+
"EngineType" : {
|
1067
|
+
"shape" : "EngineType",
|
1068
|
+
"locationName" : "engineType"
|
1069
|
+
},
|
1070
|
+
"EngineVersion" : {
|
1071
|
+
"shape" : "__string",
|
1072
|
+
"locationName" : "engineVersion"
|
1073
|
+
},
|
1074
|
+
"Id" : {
|
1075
|
+
"shape" : "__string",
|
1076
|
+
"locationName" : "id"
|
1077
|
+
},
|
1078
|
+
"LatestRevision" : {
|
1079
|
+
"shape" : "ConfigurationRevision",
|
1080
|
+
"locationName" : "latestRevision"
|
1081
|
+
},
|
1082
|
+
"Name" : {
|
1083
|
+
"shape" : "__string",
|
1084
|
+
"locationName" : "name"
|
1085
|
+
}
|
1086
|
+
}
|
1087
|
+
},
|
1088
|
+
"DescribeConfigurationRevisionOutput" : {
|
1089
|
+
"type" : "structure",
|
1090
|
+
"members" : {
|
1091
|
+
"ConfigurationId" : {
|
1092
|
+
"shape" : "__string",
|
1093
|
+
"locationName" : "configurationId"
|
1094
|
+
},
|
1095
|
+
"Data" : {
|
1096
|
+
"shape" : "__string",
|
1097
|
+
"locationName" : "data"
|
1098
|
+
},
|
1099
|
+
"Description" : {
|
1100
|
+
"shape" : "__string",
|
1101
|
+
"locationName" : "description"
|
1102
|
+
}
|
1103
|
+
}
|
1104
|
+
},
|
1105
|
+
"DescribeConfigurationRevisionRequest" : {
|
1106
|
+
"type" : "structure",
|
1107
|
+
"members" : {
|
1108
|
+
"ConfigurationId" : {
|
1109
|
+
"shape" : "__string",
|
1110
|
+
"location" : "uri",
|
1111
|
+
"locationName" : "configuration-id"
|
1112
|
+
},
|
1113
|
+
"ConfigurationRevision" : {
|
1114
|
+
"shape" : "__string",
|
1115
|
+
"location" : "uri",
|
1116
|
+
"locationName" : "configuration-revision"
|
1117
|
+
}
|
1118
|
+
},
|
1119
|
+
"required" : [ "ConfigurationRevision", "ConfigurationId" ]
|
1120
|
+
},
|
1121
|
+
"DescribeConfigurationRevisionResponse" : {
|
1122
|
+
"type" : "structure",
|
1123
|
+
"members" : {
|
1124
|
+
"ConfigurationId" : {
|
1125
|
+
"shape" : "__string",
|
1126
|
+
"locationName" : "configurationId"
|
1127
|
+
},
|
1128
|
+
"Data" : {
|
1129
|
+
"shape" : "__string",
|
1130
|
+
"locationName" : "data"
|
1131
|
+
},
|
1132
|
+
"Description" : {
|
1133
|
+
"shape" : "__string",
|
1134
|
+
"locationName" : "description"
|
1135
|
+
}
|
1136
|
+
}
|
1137
|
+
},
|
1138
|
+
"DescribeUserOutput" : {
|
1139
|
+
"type" : "structure",
|
1140
|
+
"members" : {
|
1141
|
+
"BrokerId" : {
|
1142
|
+
"shape" : "__string",
|
1143
|
+
"locationName" : "brokerId"
|
1144
|
+
},
|
1145
|
+
"ConsoleAccess" : {
|
1146
|
+
"shape" : "__boolean",
|
1147
|
+
"locationName" : "consoleAccess"
|
1148
|
+
},
|
1149
|
+
"Groups" : {
|
1150
|
+
"shape" : "ListOf__string",
|
1151
|
+
"locationName" : "groups"
|
1152
|
+
},
|
1153
|
+
"Pending" : {
|
1154
|
+
"shape" : "UserPendingChanges",
|
1155
|
+
"locationName" : "pending"
|
1156
|
+
},
|
1157
|
+
"Username" : {
|
1158
|
+
"shape" : "__string",
|
1159
|
+
"locationName" : "username"
|
1160
|
+
}
|
1161
|
+
}
|
1162
|
+
},
|
1163
|
+
"DescribeUserRequest" : {
|
1164
|
+
"type" : "structure",
|
1165
|
+
"members" : {
|
1166
|
+
"BrokerId" : {
|
1167
|
+
"shape" : "__string",
|
1168
|
+
"location" : "uri",
|
1169
|
+
"locationName" : "broker-id"
|
1170
|
+
},
|
1171
|
+
"Username" : {
|
1172
|
+
"shape" : "__string",
|
1173
|
+
"location" : "uri",
|
1174
|
+
"locationName" : "username"
|
1175
|
+
}
|
1176
|
+
},
|
1177
|
+
"required" : [ "Username", "BrokerId" ]
|
1178
|
+
},
|
1179
|
+
"DescribeUserResponse" : {
|
1180
|
+
"type" : "structure",
|
1181
|
+
"members" : {
|
1182
|
+
"BrokerId" : {
|
1183
|
+
"shape" : "__string",
|
1184
|
+
"locationName" : "brokerId"
|
1185
|
+
},
|
1186
|
+
"ConsoleAccess" : {
|
1187
|
+
"shape" : "__boolean",
|
1188
|
+
"locationName" : "consoleAccess"
|
1189
|
+
},
|
1190
|
+
"Groups" : {
|
1191
|
+
"shape" : "ListOf__string",
|
1192
|
+
"locationName" : "groups"
|
1193
|
+
},
|
1194
|
+
"Pending" : {
|
1195
|
+
"shape" : "UserPendingChanges",
|
1196
|
+
"locationName" : "pending"
|
1197
|
+
},
|
1198
|
+
"Username" : {
|
1199
|
+
"shape" : "__string",
|
1200
|
+
"locationName" : "username"
|
1201
|
+
}
|
1202
|
+
}
|
1203
|
+
},
|
1204
|
+
"EngineType" : {
|
1205
|
+
"type" : "string",
|
1206
|
+
"enum" : [ "ACTIVEMQ" ]
|
1207
|
+
},
|
1208
|
+
"Error" : {
|
1209
|
+
"type" : "structure",
|
1210
|
+
"members" : {
|
1211
|
+
"ErrorAttribute" : {
|
1212
|
+
"shape" : "__string",
|
1213
|
+
"locationName" : "errorAttribute"
|
1214
|
+
},
|
1215
|
+
"Message" : {
|
1216
|
+
"shape" : "__string",
|
1217
|
+
"locationName" : "message"
|
1218
|
+
}
|
1219
|
+
}
|
1220
|
+
},
|
1221
|
+
"ForbiddenException" : {
|
1222
|
+
"type" : "structure",
|
1223
|
+
"members" : {
|
1224
|
+
"ErrorAttribute" : {
|
1225
|
+
"shape" : "__string",
|
1226
|
+
"locationName" : "errorAttribute"
|
1227
|
+
},
|
1228
|
+
"Message" : {
|
1229
|
+
"shape" : "__string",
|
1230
|
+
"locationName" : "message"
|
1231
|
+
}
|
1232
|
+
},
|
1233
|
+
"exception" : true,
|
1234
|
+
"error" : {
|
1235
|
+
"httpStatusCode" : 403
|
1236
|
+
}
|
1237
|
+
},
|
1238
|
+
"InternalServerErrorException" : {
|
1239
|
+
"type" : "structure",
|
1240
|
+
"members" : {
|
1241
|
+
"ErrorAttribute" : {
|
1242
|
+
"shape" : "__string",
|
1243
|
+
"locationName" : "errorAttribute"
|
1244
|
+
},
|
1245
|
+
"Message" : {
|
1246
|
+
"shape" : "__string",
|
1247
|
+
"locationName" : "message"
|
1248
|
+
}
|
1249
|
+
},
|
1250
|
+
"exception" : true,
|
1251
|
+
"error" : {
|
1252
|
+
"httpStatusCode" : 500
|
1253
|
+
}
|
1254
|
+
},
|
1255
|
+
"ListBrokersOutput" : {
|
1256
|
+
"type" : "structure",
|
1257
|
+
"members" : {
|
1258
|
+
"BrokerSummaries" : {
|
1259
|
+
"shape" : "ListOfBrokerSummary",
|
1260
|
+
"locationName" : "brokerSummaries"
|
1261
|
+
},
|
1262
|
+
"NextToken" : {
|
1263
|
+
"shape" : "__string",
|
1264
|
+
"locationName" : "nextToken"
|
1265
|
+
}
|
1266
|
+
}
|
1267
|
+
},
|
1268
|
+
"ListBrokersRequest" : {
|
1269
|
+
"type" : "structure",
|
1270
|
+
"members" : {
|
1271
|
+
"MaxResults" : {
|
1272
|
+
"shape" : "MaxResults",
|
1273
|
+
"location" : "querystring",
|
1274
|
+
"locationName" : "maxResults"
|
1275
|
+
},
|
1276
|
+
"NextToken" : {
|
1277
|
+
"shape" : "__string",
|
1278
|
+
"location" : "querystring",
|
1279
|
+
"locationName" : "nextToken"
|
1280
|
+
}
|
1281
|
+
}
|
1282
|
+
},
|
1283
|
+
"ListBrokersResponse" : {
|
1284
|
+
"type" : "structure",
|
1285
|
+
"members" : {
|
1286
|
+
"BrokerSummaries" : {
|
1287
|
+
"shape" : "ListOfBrokerSummary",
|
1288
|
+
"locationName" : "brokerSummaries"
|
1289
|
+
},
|
1290
|
+
"NextToken" : {
|
1291
|
+
"shape" : "__string",
|
1292
|
+
"locationName" : "nextToken"
|
1293
|
+
}
|
1294
|
+
}
|
1295
|
+
},
|
1296
|
+
"ListConfigurationRevisionsOutput" : {
|
1297
|
+
"type" : "structure",
|
1298
|
+
"members" : {
|
1299
|
+
"ConfigurationId" : {
|
1300
|
+
"shape" : "__string",
|
1301
|
+
"locationName" : "configurationId"
|
1302
|
+
},
|
1303
|
+
"MaxResults" : {
|
1304
|
+
"shape" : "__integer",
|
1305
|
+
"locationName" : "maxResults"
|
1306
|
+
},
|
1307
|
+
"NextToken" : {
|
1308
|
+
"shape" : "__string",
|
1309
|
+
"locationName" : "nextToken"
|
1310
|
+
},
|
1311
|
+
"Revisions" : {
|
1312
|
+
"shape" : "ListOfConfigurationRevision",
|
1313
|
+
"locationName" : "revisions"
|
1314
|
+
}
|
1315
|
+
}
|
1316
|
+
},
|
1317
|
+
"ListConfigurationRevisionsRequest" : {
|
1318
|
+
"type" : "structure",
|
1319
|
+
"members" : {
|
1320
|
+
"ConfigurationId" : {
|
1321
|
+
"shape" : "__string",
|
1322
|
+
"location" : "uri",
|
1323
|
+
"locationName" : "configuration-id"
|
1324
|
+
},
|
1325
|
+
"MaxResults" : {
|
1326
|
+
"shape" : "MaxResults",
|
1327
|
+
"location" : "querystring",
|
1328
|
+
"locationName" : "maxResults"
|
1329
|
+
},
|
1330
|
+
"NextToken" : {
|
1331
|
+
"shape" : "__string",
|
1332
|
+
"location" : "querystring",
|
1333
|
+
"locationName" : "nextToken"
|
1334
|
+
}
|
1335
|
+
},
|
1336
|
+
"required" : [ "ConfigurationId" ]
|
1337
|
+
},
|
1338
|
+
"ListConfigurationRevisionsResponse" : {
|
1339
|
+
"type" : "structure",
|
1340
|
+
"members" : {
|
1341
|
+
"ConfigurationId" : {
|
1342
|
+
"shape" : "__string",
|
1343
|
+
"locationName" : "configurationId"
|
1344
|
+
},
|
1345
|
+
"MaxResults" : {
|
1346
|
+
"shape" : "__integer",
|
1347
|
+
"locationName" : "maxResults"
|
1348
|
+
},
|
1349
|
+
"NextToken" : {
|
1350
|
+
"shape" : "__string",
|
1351
|
+
"locationName" : "nextToken"
|
1352
|
+
},
|
1353
|
+
"Revisions" : {
|
1354
|
+
"shape" : "ListOfConfigurationRevision",
|
1355
|
+
"locationName" : "revisions"
|
1356
|
+
}
|
1357
|
+
}
|
1358
|
+
},
|
1359
|
+
"ListConfigurationsOutput" : {
|
1360
|
+
"type" : "structure",
|
1361
|
+
"members" : {
|
1362
|
+
"Configurations" : {
|
1363
|
+
"shape" : "ListOfConfiguration",
|
1364
|
+
"locationName" : "configurations"
|
1365
|
+
},
|
1366
|
+
"MaxResults" : {
|
1367
|
+
"shape" : "__integer",
|
1368
|
+
"locationName" : "maxResults"
|
1369
|
+
},
|
1370
|
+
"NextToken" : {
|
1371
|
+
"shape" : "__string",
|
1372
|
+
"locationName" : "nextToken"
|
1373
|
+
}
|
1374
|
+
}
|
1375
|
+
},
|
1376
|
+
"ListConfigurationsRequest" : {
|
1377
|
+
"type" : "structure",
|
1378
|
+
"members" : {
|
1379
|
+
"MaxResults" : {
|
1380
|
+
"shape" : "MaxResults",
|
1381
|
+
"location" : "querystring",
|
1382
|
+
"locationName" : "maxResults"
|
1383
|
+
},
|
1384
|
+
"NextToken" : {
|
1385
|
+
"shape" : "__string",
|
1386
|
+
"location" : "querystring",
|
1387
|
+
"locationName" : "nextToken"
|
1388
|
+
}
|
1389
|
+
}
|
1390
|
+
},
|
1391
|
+
"ListConfigurationsResponse" : {
|
1392
|
+
"type" : "structure",
|
1393
|
+
"members" : {
|
1394
|
+
"Configurations" : {
|
1395
|
+
"shape" : "ListOfConfiguration",
|
1396
|
+
"locationName" : "configurations"
|
1397
|
+
},
|
1398
|
+
"MaxResults" : {
|
1399
|
+
"shape" : "__integer",
|
1400
|
+
"locationName" : "maxResults"
|
1401
|
+
},
|
1402
|
+
"NextToken" : {
|
1403
|
+
"shape" : "__string",
|
1404
|
+
"locationName" : "nextToken"
|
1405
|
+
}
|
1406
|
+
}
|
1407
|
+
},
|
1408
|
+
"ListOfBrokerInstance" : {
|
1409
|
+
"type" : "list",
|
1410
|
+
"member" : {
|
1411
|
+
"shape" : "BrokerInstance"
|
1412
|
+
}
|
1413
|
+
},
|
1414
|
+
"ListOfBrokerSummary" : {
|
1415
|
+
"type" : "list",
|
1416
|
+
"member" : {
|
1417
|
+
"shape" : "BrokerSummary"
|
1418
|
+
}
|
1419
|
+
},
|
1420
|
+
"ListOfConfiguration" : {
|
1421
|
+
"type" : "list",
|
1422
|
+
"member" : {
|
1423
|
+
"shape" : "Configuration"
|
1424
|
+
}
|
1425
|
+
},
|
1426
|
+
"ListOfConfigurationId" : {
|
1427
|
+
"type" : "list",
|
1428
|
+
"member" : {
|
1429
|
+
"shape" : "ConfigurationId"
|
1430
|
+
}
|
1431
|
+
},
|
1432
|
+
"ListOfConfigurationRevision" : {
|
1433
|
+
"type" : "list",
|
1434
|
+
"member" : {
|
1435
|
+
"shape" : "ConfigurationRevision"
|
1436
|
+
}
|
1437
|
+
},
|
1438
|
+
"ListOfSanitizationWarning" : {
|
1439
|
+
"type" : "list",
|
1440
|
+
"member" : {
|
1441
|
+
"shape" : "SanitizationWarning"
|
1442
|
+
}
|
1443
|
+
},
|
1444
|
+
"ListOfUser" : {
|
1445
|
+
"type" : "list",
|
1446
|
+
"member" : {
|
1447
|
+
"shape" : "User"
|
1448
|
+
}
|
1449
|
+
},
|
1450
|
+
"ListOfUserSummary" : {
|
1451
|
+
"type" : "list",
|
1452
|
+
"member" : {
|
1453
|
+
"shape" : "UserSummary"
|
1454
|
+
}
|
1455
|
+
},
|
1456
|
+
"ListOf__string" : {
|
1457
|
+
"type" : "list",
|
1458
|
+
"member" : {
|
1459
|
+
"shape" : "__string"
|
1460
|
+
}
|
1461
|
+
},
|
1462
|
+
"ListUsersOutput" : {
|
1463
|
+
"type" : "structure",
|
1464
|
+
"members" : {
|
1465
|
+
"BrokerId" : {
|
1466
|
+
"shape" : "__string",
|
1467
|
+
"locationName" : "brokerId"
|
1468
|
+
},
|
1469
|
+
"MaxResults" : {
|
1470
|
+
"shape" : "__integer",
|
1471
|
+
"locationName" : "maxResults"
|
1472
|
+
},
|
1473
|
+
"NextToken" : {
|
1474
|
+
"shape" : "__string",
|
1475
|
+
"locationName" : "nextToken"
|
1476
|
+
},
|
1477
|
+
"Users" : {
|
1478
|
+
"shape" : "ListOfUserSummary",
|
1479
|
+
"locationName" : "users"
|
1480
|
+
}
|
1481
|
+
}
|
1482
|
+
},
|
1483
|
+
"ListUsersRequest" : {
|
1484
|
+
"type" : "structure",
|
1485
|
+
"members" : {
|
1486
|
+
"BrokerId" : {
|
1487
|
+
"shape" : "__string",
|
1488
|
+
"location" : "uri",
|
1489
|
+
"locationName" : "broker-id"
|
1490
|
+
},
|
1491
|
+
"MaxResults" : {
|
1492
|
+
"shape" : "MaxResults",
|
1493
|
+
"location" : "querystring",
|
1494
|
+
"locationName" : "maxResults"
|
1495
|
+
},
|
1496
|
+
"NextToken" : {
|
1497
|
+
"shape" : "__string",
|
1498
|
+
"location" : "querystring",
|
1499
|
+
"locationName" : "nextToken"
|
1500
|
+
}
|
1501
|
+
},
|
1502
|
+
"required" : [ "BrokerId" ]
|
1503
|
+
},
|
1504
|
+
"ListUsersResponse" : {
|
1505
|
+
"type" : "structure",
|
1506
|
+
"members" : {
|
1507
|
+
"BrokerId" : {
|
1508
|
+
"shape" : "__string",
|
1509
|
+
"locationName" : "brokerId"
|
1510
|
+
},
|
1511
|
+
"MaxResults" : {
|
1512
|
+
"shape" : "__integer",
|
1513
|
+
"locationName" : "maxResults"
|
1514
|
+
},
|
1515
|
+
"NextToken" : {
|
1516
|
+
"shape" : "__string",
|
1517
|
+
"locationName" : "nextToken"
|
1518
|
+
},
|
1519
|
+
"Users" : {
|
1520
|
+
"shape" : "ListOfUserSummary",
|
1521
|
+
"locationName" : "users"
|
1522
|
+
}
|
1523
|
+
}
|
1524
|
+
},
|
1525
|
+
"MaxResults" : {
|
1526
|
+
"type" : "integer",
|
1527
|
+
"min" : 1,
|
1528
|
+
"max" : 100
|
1529
|
+
},
|
1530
|
+
"NotFoundException" : {
|
1531
|
+
"type" : "structure",
|
1532
|
+
"members" : {
|
1533
|
+
"ErrorAttribute" : {
|
1534
|
+
"shape" : "__string",
|
1535
|
+
"locationName" : "errorAttribute"
|
1536
|
+
},
|
1537
|
+
"Message" : {
|
1538
|
+
"shape" : "__string",
|
1539
|
+
"locationName" : "message"
|
1540
|
+
}
|
1541
|
+
},
|
1542
|
+
"exception" : true,
|
1543
|
+
"error" : {
|
1544
|
+
"httpStatusCode" : 404
|
1545
|
+
}
|
1546
|
+
},
|
1547
|
+
"RebootBrokerRequest" : {
|
1548
|
+
"type" : "structure",
|
1549
|
+
"members" : {
|
1550
|
+
"BrokerId" : {
|
1551
|
+
"shape" : "__string",
|
1552
|
+
"location" : "uri",
|
1553
|
+
"locationName" : "broker-id"
|
1554
|
+
}
|
1555
|
+
},
|
1556
|
+
"required" : [ "BrokerId" ]
|
1557
|
+
},
|
1558
|
+
"RebootBrokerResponse" : {
|
1559
|
+
"type" : "structure",
|
1560
|
+
"members" : { }
|
1561
|
+
},
|
1562
|
+
"SanitizationWarning" : {
|
1563
|
+
"type" : "structure",
|
1564
|
+
"members" : {
|
1565
|
+
"AttributeName" : {
|
1566
|
+
"shape" : "__string",
|
1567
|
+
"locationName" : "attributeName"
|
1568
|
+
},
|
1569
|
+
"ElementName" : {
|
1570
|
+
"shape" : "__string",
|
1571
|
+
"locationName" : "elementName"
|
1572
|
+
},
|
1573
|
+
"Reason" : {
|
1574
|
+
"shape" : "SanitizationWarningReason",
|
1575
|
+
"locationName" : "reason"
|
1576
|
+
}
|
1577
|
+
}
|
1578
|
+
},
|
1579
|
+
"SanitizationWarningReason" : {
|
1580
|
+
"type" : "string",
|
1581
|
+
"enum" : [ "DISALLOWED_ELEMENT_REMOVED", "DISALLOWED_ATTRIBUTE_REMOVED", "INVALID_ATTRIBUTE_VALUE_REMOVED" ]
|
1582
|
+
},
|
1583
|
+
"UnauthorizedException" : {
|
1584
|
+
"type" : "structure",
|
1585
|
+
"members" : {
|
1586
|
+
"ErrorAttribute" : {
|
1587
|
+
"shape" : "__string",
|
1588
|
+
"locationName" : "errorAttribute"
|
1589
|
+
},
|
1590
|
+
"Message" : {
|
1591
|
+
"shape" : "__string",
|
1592
|
+
"locationName" : "message"
|
1593
|
+
}
|
1594
|
+
},
|
1595
|
+
"exception" : true,
|
1596
|
+
"error" : {
|
1597
|
+
"httpStatusCode" : 401
|
1598
|
+
}
|
1599
|
+
},
|
1600
|
+
"UpdateBrokerInput" : {
|
1601
|
+
"type" : "structure",
|
1602
|
+
"members" : {
|
1603
|
+
"Configuration" : {
|
1604
|
+
"shape" : "ConfigurationId",
|
1605
|
+
"locationName" : "configuration"
|
1606
|
+
}
|
1607
|
+
}
|
1608
|
+
},
|
1609
|
+
"UpdateBrokerOutput" : {
|
1610
|
+
"type" : "structure",
|
1611
|
+
"members" : {
|
1612
|
+
"BrokerId" : {
|
1613
|
+
"shape" : "__string",
|
1614
|
+
"locationName" : "brokerId"
|
1615
|
+
},
|
1616
|
+
"Configuration" : {
|
1617
|
+
"shape" : "ConfigurationId",
|
1618
|
+
"locationName" : "configuration"
|
1619
|
+
}
|
1620
|
+
}
|
1621
|
+
},
|
1622
|
+
"UpdateBrokerRequest" : {
|
1623
|
+
"type" : "structure",
|
1624
|
+
"members" : {
|
1625
|
+
"BrokerId" : {
|
1626
|
+
"shape" : "__string",
|
1627
|
+
"location" : "uri",
|
1628
|
+
"locationName" : "broker-id"
|
1629
|
+
},
|
1630
|
+
"Configuration" : {
|
1631
|
+
"shape" : "ConfigurationId",
|
1632
|
+
"locationName" : "configuration"
|
1633
|
+
}
|
1634
|
+
},
|
1635
|
+
"required" : [ "BrokerId" ]
|
1636
|
+
},
|
1637
|
+
"UpdateBrokerResponse" : {
|
1638
|
+
"type" : "structure",
|
1639
|
+
"members" : {
|
1640
|
+
"BrokerId" : {
|
1641
|
+
"shape" : "__string",
|
1642
|
+
"locationName" : "brokerId"
|
1643
|
+
},
|
1644
|
+
"Configuration" : {
|
1645
|
+
"shape" : "ConfigurationId",
|
1646
|
+
"locationName" : "configuration"
|
1647
|
+
}
|
1648
|
+
}
|
1649
|
+
},
|
1650
|
+
"UpdateConfigurationInput" : {
|
1651
|
+
"type" : "structure",
|
1652
|
+
"members" : {
|
1653
|
+
"Data" : {
|
1654
|
+
"shape" : "__string",
|
1655
|
+
"locationName" : "data"
|
1656
|
+
},
|
1657
|
+
"Description" : {
|
1658
|
+
"shape" : "__string",
|
1659
|
+
"locationName" : "description"
|
1660
|
+
}
|
1661
|
+
}
|
1662
|
+
},
|
1663
|
+
"UpdateConfigurationOutput" : {
|
1664
|
+
"type" : "structure",
|
1665
|
+
"members" : {
|
1666
|
+
"Arn" : {
|
1667
|
+
"shape" : "__string",
|
1668
|
+
"locationName" : "arn"
|
1669
|
+
},
|
1670
|
+
"Id" : {
|
1671
|
+
"shape" : "__string",
|
1672
|
+
"locationName" : "id"
|
1673
|
+
},
|
1674
|
+
"LatestRevision" : {
|
1675
|
+
"shape" : "ConfigurationRevision",
|
1676
|
+
"locationName" : "latestRevision"
|
1677
|
+
},
|
1678
|
+
"Name" : {
|
1679
|
+
"shape" : "__string",
|
1680
|
+
"locationName" : "name"
|
1681
|
+
},
|
1682
|
+
"Warnings" : {
|
1683
|
+
"shape" : "ListOfSanitizationWarning",
|
1684
|
+
"locationName" : "warnings"
|
1685
|
+
}
|
1686
|
+
}
|
1687
|
+
},
|
1688
|
+
"UpdateConfigurationRequest" : {
|
1689
|
+
"type" : "structure",
|
1690
|
+
"members" : {
|
1691
|
+
"ConfigurationId" : {
|
1692
|
+
"shape" : "__string",
|
1693
|
+
"location" : "uri",
|
1694
|
+
"locationName" : "configuration-id"
|
1695
|
+
},
|
1696
|
+
"Data" : {
|
1697
|
+
"shape" : "__string",
|
1698
|
+
"locationName" : "data"
|
1699
|
+
},
|
1700
|
+
"Description" : {
|
1701
|
+
"shape" : "__string",
|
1702
|
+
"locationName" : "description"
|
1703
|
+
}
|
1704
|
+
},
|
1705
|
+
"required" : [ "ConfigurationId" ]
|
1706
|
+
},
|
1707
|
+
"UpdateConfigurationResponse" : {
|
1708
|
+
"type" : "structure",
|
1709
|
+
"members" : {
|
1710
|
+
"Arn" : {
|
1711
|
+
"shape" : "__string",
|
1712
|
+
"locationName" : "arn"
|
1713
|
+
},
|
1714
|
+
"Id" : {
|
1715
|
+
"shape" : "__string",
|
1716
|
+
"locationName" : "id"
|
1717
|
+
},
|
1718
|
+
"LatestRevision" : {
|
1719
|
+
"shape" : "ConfigurationRevision",
|
1720
|
+
"locationName" : "latestRevision"
|
1721
|
+
},
|
1722
|
+
"Name" : {
|
1723
|
+
"shape" : "__string",
|
1724
|
+
"locationName" : "name"
|
1725
|
+
},
|
1726
|
+
"Warnings" : {
|
1727
|
+
"shape" : "ListOfSanitizationWarning",
|
1728
|
+
"locationName" : "warnings"
|
1729
|
+
}
|
1730
|
+
}
|
1731
|
+
},
|
1732
|
+
"UpdateUserInput" : {
|
1733
|
+
"type" : "structure",
|
1734
|
+
"members" : {
|
1735
|
+
"ConsoleAccess" : {
|
1736
|
+
"shape" : "__boolean",
|
1737
|
+
"locationName" : "consoleAccess"
|
1738
|
+
},
|
1739
|
+
"Groups" : {
|
1740
|
+
"shape" : "ListOf__string",
|
1741
|
+
"locationName" : "groups"
|
1742
|
+
},
|
1743
|
+
"Password" : {
|
1744
|
+
"shape" : "__string",
|
1745
|
+
"locationName" : "password"
|
1746
|
+
}
|
1747
|
+
}
|
1748
|
+
},
|
1749
|
+
"UpdateUserRequest" : {
|
1750
|
+
"type" : "structure",
|
1751
|
+
"members" : {
|
1752
|
+
"BrokerId" : {
|
1753
|
+
"shape" : "__string",
|
1754
|
+
"location" : "uri",
|
1755
|
+
"locationName" : "broker-id"
|
1756
|
+
},
|
1757
|
+
"ConsoleAccess" : {
|
1758
|
+
"shape" : "__boolean",
|
1759
|
+
"locationName" : "consoleAccess"
|
1760
|
+
},
|
1761
|
+
"Groups" : {
|
1762
|
+
"shape" : "ListOf__string",
|
1763
|
+
"locationName" : "groups"
|
1764
|
+
},
|
1765
|
+
"Password" : {
|
1766
|
+
"shape" : "__string",
|
1767
|
+
"locationName" : "password"
|
1768
|
+
},
|
1769
|
+
"Username" : {
|
1770
|
+
"shape" : "__string",
|
1771
|
+
"location" : "uri",
|
1772
|
+
"locationName" : "username"
|
1773
|
+
}
|
1774
|
+
},
|
1775
|
+
"required" : [ "Username", "BrokerId" ]
|
1776
|
+
},
|
1777
|
+
"UpdateUserResponse" : {
|
1778
|
+
"type" : "structure",
|
1779
|
+
"members" : { }
|
1780
|
+
},
|
1781
|
+
"User" : {
|
1782
|
+
"type" : "structure",
|
1783
|
+
"members" : {
|
1784
|
+
"ConsoleAccess" : {
|
1785
|
+
"shape" : "__boolean",
|
1786
|
+
"locationName" : "consoleAccess"
|
1787
|
+
},
|
1788
|
+
"Groups" : {
|
1789
|
+
"shape" : "ListOf__string",
|
1790
|
+
"locationName" : "groups"
|
1791
|
+
},
|
1792
|
+
"Password" : {
|
1793
|
+
"shape" : "__string",
|
1794
|
+
"locationName" : "password"
|
1795
|
+
},
|
1796
|
+
"Username" : {
|
1797
|
+
"shape" : "__string",
|
1798
|
+
"locationName" : "username"
|
1799
|
+
}
|
1800
|
+
}
|
1801
|
+
},
|
1802
|
+
"UserPendingChanges" : {
|
1803
|
+
"type" : "structure",
|
1804
|
+
"members" : {
|
1805
|
+
"ConsoleAccess" : {
|
1806
|
+
"shape" : "__boolean",
|
1807
|
+
"locationName" : "consoleAccess"
|
1808
|
+
},
|
1809
|
+
"Groups" : {
|
1810
|
+
"shape" : "ListOf__string",
|
1811
|
+
"locationName" : "groups"
|
1812
|
+
},
|
1813
|
+
"PendingChange" : {
|
1814
|
+
"shape" : "ChangeType",
|
1815
|
+
"locationName" : "pendingChange"
|
1816
|
+
}
|
1817
|
+
}
|
1818
|
+
},
|
1819
|
+
"UserSummary" : {
|
1820
|
+
"type" : "structure",
|
1821
|
+
"members" : {
|
1822
|
+
"PendingChange" : {
|
1823
|
+
"shape" : "ChangeType",
|
1824
|
+
"locationName" : "pendingChange"
|
1825
|
+
},
|
1826
|
+
"Username" : {
|
1827
|
+
"shape" : "__string",
|
1828
|
+
"locationName" : "username"
|
1829
|
+
}
|
1830
|
+
}
|
1831
|
+
},
|
1832
|
+
"WeeklyStartTime" : {
|
1833
|
+
"type" : "structure",
|
1834
|
+
"members" : {
|
1835
|
+
"DayOfWeek" : {
|
1836
|
+
"shape" : "DayOfWeek",
|
1837
|
+
"locationName" : "dayOfWeek"
|
1838
|
+
},
|
1839
|
+
"TimeOfDay" : {
|
1840
|
+
"shape" : "__string",
|
1841
|
+
"locationName" : "timeOfDay"
|
1842
|
+
},
|
1843
|
+
"TimeZone" : {
|
1844
|
+
"shape" : "__string",
|
1845
|
+
"locationName" : "timeZone"
|
1846
|
+
}
|
1847
|
+
}
|
1848
|
+
},
|
1849
|
+
"__boolean" : {
|
1850
|
+
"type" : "boolean"
|
1851
|
+
},
|
1852
|
+
"__double" : {
|
1853
|
+
"type" : "double"
|
1854
|
+
},
|
1855
|
+
"__integer" : {
|
1856
|
+
"type" : "integer"
|
1857
|
+
},
|
1858
|
+
"__string" : {
|
1859
|
+
"type" : "string"
|
1860
|
+
},
|
1861
|
+
"__timestamp" : {
|
1862
|
+
"type" : "timestamp"
|
1863
|
+
}
|
1864
|
+
}
|
1865
|
+
}
|