aws-sdk-core 2.11.349 → 2.11.350

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,6 +6,7 @@
6
6
  "jsonVersion":"1.1",
7
7
  "protocol":"json",
8
8
  "serviceFullName":"AWS Marketplace Commerce Analytics",
9
+ "serviceId":"Marketplace Commerce Analytics",
9
10
  "signatureVersion":"v4",
10
11
  "signingName":"marketplacecommerceanalytics",
11
12
  "targetPrefix":"MarketplaceCommerceAnalytics20150701",
@@ -60,6 +61,8 @@
60
61
  "daily_business_canceled_product_subscribers",
61
62
  "monthly_revenue_billing_and_revenue_data",
62
63
  "monthly_revenue_annual_subscriptions",
64
+ "monthly_revenue_field_demonstration_usage",
65
+ "monthly_revenue_flexible_payment_schedule",
63
66
  "disbursed_amount_by_product",
64
67
  "disbursed_amount_by_product_with_uncollected_funds",
65
68
  "disbursed_amount_by_instance_hours",
@@ -0,0 +1,17 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-east-1",
4
+ "testCases": [
5
+ {
6
+ "operationName": "GenerateDataSet",
7
+ "input": {
8
+ "dataSetType": "fake-type",
9
+ "dataSetPublicationDate": 0,
10
+ "roleNameArn": "fake-arn",
11
+ "destinationS3BucketName": "fake-bucket",
12
+ "snsTopicArn": "fake-arn"
13
+ },
14
+ "errorExpectedFromService": true
15
+ }
16
+ ]
17
+ }
@@ -0,0 +1,259 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2019-07-11",
5
+ "endpointPrefix":"session.qldb",
6
+ "jsonVersion":"1.0",
7
+ "protocol":"json",
8
+ "serviceAbbreviation":"QLDB Session",
9
+ "serviceFullName":"Amazon QLDB Session",
10
+ "serviceId":"QLDB Session",
11
+ "signatureVersion":"v4",
12
+ "signingName":"qldb",
13
+ "targetPrefix":"QLDBSession",
14
+ "uid":"qldb-session-2019-07-11"
15
+ },
16
+ "operations":{
17
+ "SendCommand":{
18
+ "name":"SendCommand",
19
+ "http":{
20
+ "method":"POST",
21
+ "requestUri":"/"
22
+ },
23
+ "input":{"shape":"SendCommandRequest"},
24
+ "output":{"shape":"SendCommandResult"},
25
+ "errors":[
26
+ {"shape":"BadRequestException"},
27
+ {"shape":"InvalidSessionException"},
28
+ {"shape":"OccConflictException"},
29
+ {"shape":"RateExceededException"},
30
+ {"shape":"LimitExceededException"}
31
+ ]
32
+ }
33
+ },
34
+ "shapes":{
35
+ "AbortTransactionRequest":{
36
+ "type":"structure",
37
+ "members":{
38
+ }
39
+ },
40
+ "AbortTransactionResult":{
41
+ "type":"structure",
42
+ "members":{
43
+ }
44
+ },
45
+ "BadRequestException":{
46
+ "type":"structure",
47
+ "members":{
48
+ "Message":{"shape":"ErrorMessage"},
49
+ "Code":{"shape":"ErrorCode"}
50
+ },
51
+ "exception":true
52
+ },
53
+ "CommitDigest":{"type":"blob"},
54
+ "CommitTransactionRequest":{
55
+ "type":"structure",
56
+ "required":[
57
+ "TransactionId",
58
+ "CommitDigest"
59
+ ],
60
+ "members":{
61
+ "TransactionId":{"shape":"TransactionId"},
62
+ "CommitDigest":{"shape":"CommitDigest"}
63
+ }
64
+ },
65
+ "CommitTransactionResult":{
66
+ "type":"structure",
67
+ "members":{
68
+ "TransactionId":{"shape":"TransactionId"},
69
+ "CommitDigest":{"shape":"CommitDigest"}
70
+ }
71
+ },
72
+ "EndSessionRequest":{
73
+ "type":"structure",
74
+ "members":{
75
+ }
76
+ },
77
+ "EndSessionResult":{
78
+ "type":"structure",
79
+ "members":{
80
+ }
81
+ },
82
+ "ErrorCode":{"type":"string"},
83
+ "ErrorMessage":{"type":"string"},
84
+ "ExecuteStatementRequest":{
85
+ "type":"structure",
86
+ "required":[
87
+ "TransactionId",
88
+ "Statement"
89
+ ],
90
+ "members":{
91
+ "TransactionId":{"shape":"TransactionId"},
92
+ "Statement":{"shape":"Statement"},
93
+ "Parameters":{"shape":"StatementParameters"}
94
+ }
95
+ },
96
+ "ExecuteStatementResult":{
97
+ "type":"structure",
98
+ "members":{
99
+ "FirstPage":{"shape":"Page"}
100
+ }
101
+ },
102
+ "FetchPageRequest":{
103
+ "type":"structure",
104
+ "required":[
105
+ "TransactionId",
106
+ "NextPageToken"
107
+ ],
108
+ "members":{
109
+ "TransactionId":{"shape":"TransactionId"},
110
+ "NextPageToken":{"shape":"PageToken"}
111
+ }
112
+ },
113
+ "FetchPageResult":{
114
+ "type":"structure",
115
+ "members":{
116
+ "Page":{"shape":"Page"}
117
+ }
118
+ },
119
+ "InvalidSessionException":{
120
+ "type":"structure",
121
+ "members":{
122
+ "Message":{"shape":"ErrorMessage"},
123
+ "Code":{"shape":"ErrorCode"}
124
+ },
125
+ "exception":true
126
+ },
127
+ "IonBinary":{
128
+ "type":"blob",
129
+ "max":131072,
130
+ "min":1
131
+ },
132
+ "IonText":{
133
+ "type":"string",
134
+ "max":1048576,
135
+ "min":1
136
+ },
137
+ "LedgerName":{
138
+ "type":"string",
139
+ "max":32,
140
+ "min":1,
141
+ "pattern":"(?!^.*--)(?!^[0-9]+$)(?!^-)(?!.*-$)^[A-Za-z0-9-]+$"
142
+ },
143
+ "LimitExceededException":{
144
+ "type":"structure",
145
+ "members":{
146
+ "Message":{"shape":"ErrorMessage"}
147
+ },
148
+ "exception":true
149
+ },
150
+ "OccConflictException":{
151
+ "type":"structure",
152
+ "members":{
153
+ "Message":{"shape":"ErrorMessage"}
154
+ },
155
+ "exception":true
156
+ },
157
+ "Page":{
158
+ "type":"structure",
159
+ "members":{
160
+ "Values":{"shape":"ValueHolders"},
161
+ "NextPageToken":{"shape":"PageToken"}
162
+ }
163
+ },
164
+ "PageToken":{
165
+ "type":"string",
166
+ "max":1024,
167
+ "min":4,
168
+ "pattern":"^[A-Za-z-0-9+/=]+$"
169
+ },
170
+ "RateExceededException":{
171
+ "type":"structure",
172
+ "members":{
173
+ "Message":{"shape":"ErrorMessage"}
174
+ },
175
+ "exception":true
176
+ },
177
+ "SendCommandRequest":{
178
+ "type":"structure",
179
+ "members":{
180
+ "SessionToken":{"shape":"SessionToken"},
181
+ "StartSession":{"shape":"StartSessionRequest"},
182
+ "StartTransaction":{"shape":"StartTransactionRequest"},
183
+ "EndSession":{"shape":"EndSessionRequest"},
184
+ "CommitTransaction":{"shape":"CommitTransactionRequest"},
185
+ "AbortTransaction":{"shape":"AbortTransactionRequest"},
186
+ "ExecuteStatement":{"shape":"ExecuteStatementRequest"},
187
+ "FetchPage":{"shape":"FetchPageRequest"}
188
+ }
189
+ },
190
+ "SendCommandResult":{
191
+ "type":"structure",
192
+ "members":{
193
+ "StartSession":{"shape":"StartSessionResult"},
194
+ "StartTransaction":{"shape":"StartTransactionResult"},
195
+ "EndSession":{"shape":"EndSessionResult"},
196
+ "CommitTransaction":{"shape":"CommitTransactionResult"},
197
+ "AbortTransaction":{"shape":"AbortTransactionResult"},
198
+ "ExecuteStatement":{"shape":"ExecuteStatementResult"},
199
+ "FetchPage":{"shape":"FetchPageResult"}
200
+ }
201
+ },
202
+ "SessionToken":{
203
+ "type":"string",
204
+ "max":1024,
205
+ "min":4,
206
+ "pattern":"^[A-Za-z-0-9+/=]+$"
207
+ },
208
+ "StartSessionRequest":{
209
+ "type":"structure",
210
+ "required":["LedgerName"],
211
+ "members":{
212
+ "LedgerName":{"shape":"LedgerName"}
213
+ }
214
+ },
215
+ "StartSessionResult":{
216
+ "type":"structure",
217
+ "members":{
218
+ "SessionToken":{"shape":"SessionToken"}
219
+ }
220
+ },
221
+ "StartTransactionRequest":{
222
+ "type":"structure",
223
+ "members":{
224
+ }
225
+ },
226
+ "StartTransactionResult":{
227
+ "type":"structure",
228
+ "members":{
229
+ "TransactionId":{"shape":"TransactionId"}
230
+ }
231
+ },
232
+ "Statement":{
233
+ "type":"string",
234
+ "max":100000,
235
+ "min":1
236
+ },
237
+ "StatementParameters":{
238
+ "type":"list",
239
+ "member":{"shape":"ValueHolder"}
240
+ },
241
+ "TransactionId":{
242
+ "type":"string",
243
+ "max":22,
244
+ "min":22,
245
+ "pattern":"^[A-Za-z-0-9]+$"
246
+ },
247
+ "ValueHolder":{
248
+ "type":"structure",
249
+ "members":{
250
+ "IonBinary":{"shape":"IonBinary"},
251
+ "IonText":{"shape":"IonText"}
252
+ }
253
+ },
254
+ "ValueHolders":{
255
+ "type":"list",
256
+ "member":{"shape":"ValueHolder"}
257
+ }
258
+ }
259
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -0,0 +1,776 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2019-01-02",
5
+ "endpointPrefix":"qldb",
6
+ "jsonVersion":"1.0",
7
+ "protocol":"rest-json",
8
+ "serviceAbbreviation":"QLDB",
9
+ "serviceFullName":"Amazon QLDB",
10
+ "serviceId":"QLDB",
11
+ "signatureVersion":"v4",
12
+ "signingName":"qldb",
13
+ "uid":"qldb-2019-01-02"
14
+ },
15
+ "operations":{
16
+ "CreateLedger":{
17
+ "name":"CreateLedger",
18
+ "http":{
19
+ "method":"POST",
20
+ "requestUri":"/ledgers"
21
+ },
22
+ "input":{"shape":"CreateLedgerRequest"},
23
+ "output":{"shape":"CreateLedgerResponse"},
24
+ "errors":[
25
+ {"shape":"InvalidParameterException"},
26
+ {"shape":"ResourceAlreadyExistsException"},
27
+ {"shape":"LimitExceededException"},
28
+ {"shape":"ResourceInUseException"}
29
+ ]
30
+ },
31
+ "DeleteLedger":{
32
+ "name":"DeleteLedger",
33
+ "http":{
34
+ "method":"DELETE",
35
+ "requestUri":"/ledgers/{name}"
36
+ },
37
+ "input":{"shape":"DeleteLedgerRequest"},
38
+ "errors":[
39
+ {"shape":"InvalidParameterException"},
40
+ {"shape":"ResourceNotFoundException"},
41
+ {"shape":"ResourceInUseException"},
42
+ {"shape":"ResourcePreconditionNotMetException"}
43
+ ]
44
+ },
45
+ "DescribeJournalS3Export":{
46
+ "name":"DescribeJournalS3Export",
47
+ "http":{
48
+ "method":"GET",
49
+ "requestUri":"/ledgers/{name}/journal-s3-exports/{exportId}"
50
+ },
51
+ "input":{"shape":"DescribeJournalS3ExportRequest"},
52
+ "output":{"shape":"DescribeJournalS3ExportResponse"},
53
+ "errors":[
54
+ {"shape":"ResourceNotFoundException"}
55
+ ]
56
+ },
57
+ "DescribeLedger":{
58
+ "name":"DescribeLedger",
59
+ "http":{
60
+ "method":"GET",
61
+ "requestUri":"/ledgers/{name}"
62
+ },
63
+ "input":{"shape":"DescribeLedgerRequest"},
64
+ "output":{"shape":"DescribeLedgerResponse"},
65
+ "errors":[
66
+ {"shape":"InvalidParameterException"},
67
+ {"shape":"ResourceNotFoundException"}
68
+ ]
69
+ },
70
+ "ExportJournalToS3":{
71
+ "name":"ExportJournalToS3",
72
+ "http":{
73
+ "method":"POST",
74
+ "requestUri":"/ledgers/{name}/journal-s3-exports"
75
+ },
76
+ "input":{"shape":"ExportJournalToS3Request"},
77
+ "output":{"shape":"ExportJournalToS3Response"},
78
+ "errors":[
79
+ {"shape":"ResourceNotFoundException"},
80
+ {"shape":"ResourcePreconditionNotMetException"}
81
+ ]
82
+ },
83
+ "GetBlock":{
84
+ "name":"GetBlock",
85
+ "http":{
86
+ "method":"POST",
87
+ "requestUri":"/ledgers/{name}/block"
88
+ },
89
+ "input":{"shape":"GetBlockRequest"},
90
+ "output":{"shape":"GetBlockResponse"},
91
+ "errors":[
92
+ {"shape":"InvalidParameterException"},
93
+ {"shape":"ResourceNotFoundException"},
94
+ {"shape":"ResourcePreconditionNotMetException"}
95
+ ]
96
+ },
97
+ "GetDigest":{
98
+ "name":"GetDigest",
99
+ "http":{
100
+ "method":"POST",
101
+ "requestUri":"/ledgers/{name}/digest"
102
+ },
103
+ "input":{"shape":"GetDigestRequest"},
104
+ "output":{"shape":"GetDigestResponse"},
105
+ "errors":[
106
+ {"shape":"InvalidParameterException"},
107
+ {"shape":"ResourceNotFoundException"},
108
+ {"shape":"ResourcePreconditionNotMetException"}
109
+ ]
110
+ },
111
+ "GetRevision":{
112
+ "name":"GetRevision",
113
+ "http":{
114
+ "method":"POST",
115
+ "requestUri":"/ledgers/{name}/revision"
116
+ },
117
+ "input":{"shape":"GetRevisionRequest"},
118
+ "output":{"shape":"GetRevisionResponse"},
119
+ "errors":[
120
+ {"shape":"InvalidParameterException"},
121
+ {"shape":"ResourceNotFoundException"},
122
+ {"shape":"ResourcePreconditionNotMetException"}
123
+ ]
124
+ },
125
+ "ListJournalS3Exports":{
126
+ "name":"ListJournalS3Exports",
127
+ "http":{
128
+ "method":"GET",
129
+ "requestUri":"/journal-s3-exports"
130
+ },
131
+ "input":{"shape":"ListJournalS3ExportsRequest"},
132
+ "output":{"shape":"ListJournalS3ExportsResponse"}
133
+ },
134
+ "ListJournalS3ExportsForLedger":{
135
+ "name":"ListJournalS3ExportsForLedger",
136
+ "http":{
137
+ "method":"GET",
138
+ "requestUri":"/ledgers/{name}/journal-s3-exports"
139
+ },
140
+ "input":{"shape":"ListJournalS3ExportsForLedgerRequest"},
141
+ "output":{"shape":"ListJournalS3ExportsForLedgerResponse"}
142
+ },
143
+ "ListLedgers":{
144
+ "name":"ListLedgers",
145
+ "http":{
146
+ "method":"GET",
147
+ "requestUri":"/ledgers"
148
+ },
149
+ "input":{"shape":"ListLedgersRequest"},
150
+ "output":{"shape":"ListLedgersResponse"}
151
+ },
152
+ "ListTagsForResource":{
153
+ "name":"ListTagsForResource",
154
+ "http":{
155
+ "method":"GET",
156
+ "requestUri":"/tags/{resourceArn}"
157
+ },
158
+ "input":{"shape":"ListTagsForResourceRequest"},
159
+ "output":{"shape":"ListTagsForResourceResponse"},
160
+ "errors":[
161
+ {"shape":"InvalidParameterException"},
162
+ {"shape":"ResourceNotFoundException"}
163
+ ]
164
+ },
165
+ "TagResource":{
166
+ "name":"TagResource",
167
+ "http":{
168
+ "method":"POST",
169
+ "requestUri":"/tags/{resourceArn}"
170
+ },
171
+ "input":{"shape":"TagResourceRequest"},
172
+ "output":{"shape":"TagResourceResponse"},
173
+ "errors":[
174
+ {"shape":"InvalidParameterException"},
175
+ {"shape":"ResourceNotFoundException"}
176
+ ]
177
+ },
178
+ "UntagResource":{
179
+ "name":"UntagResource",
180
+ "http":{
181
+ "method":"DELETE",
182
+ "requestUri":"/tags/{resourceArn}"
183
+ },
184
+ "input":{"shape":"UntagResourceRequest"},
185
+ "output":{"shape":"UntagResourceResponse"},
186
+ "errors":[
187
+ {"shape":"InvalidParameterException"},
188
+ {"shape":"ResourceNotFoundException"}
189
+ ]
190
+ },
191
+ "UpdateLedger":{
192
+ "name":"UpdateLedger",
193
+ "http":{
194
+ "method":"PATCH",
195
+ "requestUri":"/ledgers/{name}"
196
+ },
197
+ "input":{"shape":"UpdateLedgerRequest"},
198
+ "output":{"shape":"UpdateLedgerResponse"},
199
+ "errors":[
200
+ {"shape":"InvalidParameterException"},
201
+ {"shape":"ResourceNotFoundException"}
202
+ ]
203
+ }
204
+ },
205
+ "shapes":{
206
+ "Arn":{
207
+ "type":"string",
208
+ "max":1600,
209
+ "min":20
210
+ },
211
+ "CreateLedgerRequest":{
212
+ "type":"structure",
213
+ "required":[
214
+ "Name",
215
+ "PermissionsMode"
216
+ ],
217
+ "members":{
218
+ "Name":{"shape":"LedgerName"},
219
+ "Tags":{"shape":"Tags"},
220
+ "PermissionsMode":{"shape":"PermissionsMode"},
221
+ "DeletionProtection":{"shape":"DeletionProtection"}
222
+ }
223
+ },
224
+ "CreateLedgerResponse":{
225
+ "type":"structure",
226
+ "members":{
227
+ "Name":{"shape":"LedgerName"},
228
+ "Arn":{"shape":"Arn"},
229
+ "State":{"shape":"LedgerState"},
230
+ "CreationDateTime":{"shape":"Timestamp"},
231
+ "DeletionProtection":{"shape":"DeletionProtection"}
232
+ }
233
+ },
234
+ "DeleteLedgerRequest":{
235
+ "type":"structure",
236
+ "required":["Name"],
237
+ "members":{
238
+ "Name":{
239
+ "shape":"LedgerName",
240
+ "location":"uri",
241
+ "locationName":"name"
242
+ }
243
+ }
244
+ },
245
+ "DeletionProtection":{"type":"boolean"},
246
+ "DescribeJournalS3ExportRequest":{
247
+ "type":"structure",
248
+ "required":[
249
+ "Name",
250
+ "ExportId"
251
+ ],
252
+ "members":{
253
+ "Name":{
254
+ "shape":"LedgerName",
255
+ "location":"uri",
256
+ "locationName":"name"
257
+ },
258
+ "ExportId":{
259
+ "shape":"UniqueId",
260
+ "location":"uri",
261
+ "locationName":"exportId"
262
+ }
263
+ }
264
+ },
265
+ "DescribeJournalS3ExportResponse":{
266
+ "type":"structure",
267
+ "required":["ExportDescription"],
268
+ "members":{
269
+ "ExportDescription":{"shape":"JournalS3ExportDescription"}
270
+ }
271
+ },
272
+ "DescribeLedgerRequest":{
273
+ "type":"structure",
274
+ "required":["Name"],
275
+ "members":{
276
+ "Name":{
277
+ "shape":"LedgerName",
278
+ "location":"uri",
279
+ "locationName":"name"
280
+ }
281
+ }
282
+ },
283
+ "DescribeLedgerResponse":{
284
+ "type":"structure",
285
+ "members":{
286
+ "Name":{"shape":"LedgerName"},
287
+ "Arn":{"shape":"Arn"},
288
+ "State":{"shape":"LedgerState"},
289
+ "CreationDateTime":{"shape":"Timestamp"},
290
+ "DeletionProtection":{"shape":"DeletionProtection"}
291
+ }
292
+ },
293
+ "Digest":{
294
+ "type":"blob",
295
+ "max":32,
296
+ "min":32
297
+ },
298
+ "ErrorMessage":{"type":"string"},
299
+ "ExportJournalToS3Request":{
300
+ "type":"structure",
301
+ "required":[
302
+ "Name",
303
+ "InclusiveStartTime",
304
+ "ExclusiveEndTime",
305
+ "S3ExportConfiguration",
306
+ "RoleArn"
307
+ ],
308
+ "members":{
309
+ "Name":{
310
+ "shape":"LedgerName",
311
+ "location":"uri",
312
+ "locationName":"name"
313
+ },
314
+ "InclusiveStartTime":{"shape":"Timestamp"},
315
+ "ExclusiveEndTime":{"shape":"Timestamp"},
316
+ "S3ExportConfiguration":{"shape":"S3ExportConfiguration"},
317
+ "RoleArn":{"shape":"Arn"}
318
+ }
319
+ },
320
+ "ExportJournalToS3Response":{
321
+ "type":"structure",
322
+ "required":["ExportId"],
323
+ "members":{
324
+ "ExportId":{"shape":"UniqueId"}
325
+ }
326
+ },
327
+ "ExportStatus":{
328
+ "type":"string",
329
+ "enum":[
330
+ "IN_PROGRESS",
331
+ "COMPLETED",
332
+ "CANCELLED"
333
+ ]
334
+ },
335
+ "GetBlockRequest":{
336
+ "type":"structure",
337
+ "required":[
338
+ "Name",
339
+ "BlockAddress"
340
+ ],
341
+ "members":{
342
+ "Name":{
343
+ "shape":"LedgerName",
344
+ "location":"uri",
345
+ "locationName":"name"
346
+ },
347
+ "BlockAddress":{"shape":"ValueHolder"},
348
+ "DigestTipAddress":{"shape":"ValueHolder"}
349
+ }
350
+ },
351
+ "GetBlockResponse":{
352
+ "type":"structure",
353
+ "required":["Block"],
354
+ "members":{
355
+ "Block":{"shape":"ValueHolder"},
356
+ "Proof":{"shape":"ValueHolder"}
357
+ }
358
+ },
359
+ "GetDigestRequest":{
360
+ "type":"structure",
361
+ "required":["Name"],
362
+ "members":{
363
+ "Name":{
364
+ "shape":"LedgerName",
365
+ "location":"uri",
366
+ "locationName":"name"
367
+ }
368
+ }
369
+ },
370
+ "GetDigestResponse":{
371
+ "type":"structure",
372
+ "required":[
373
+ "Digest",
374
+ "DigestTipAddress"
375
+ ],
376
+ "members":{
377
+ "Digest":{"shape":"Digest"},
378
+ "DigestTipAddress":{"shape":"ValueHolder"}
379
+ }
380
+ },
381
+ "GetRevisionRequest":{
382
+ "type":"structure",
383
+ "required":[
384
+ "Name",
385
+ "BlockAddress",
386
+ "DocumentId"
387
+ ],
388
+ "members":{
389
+ "Name":{
390
+ "shape":"LedgerName",
391
+ "location":"uri",
392
+ "locationName":"name"
393
+ },
394
+ "BlockAddress":{"shape":"ValueHolder"},
395
+ "DocumentId":{"shape":"UniqueId"},
396
+ "DigestTipAddress":{"shape":"ValueHolder"}
397
+ }
398
+ },
399
+ "GetRevisionResponse":{
400
+ "type":"structure",
401
+ "required":["Revision"],
402
+ "members":{
403
+ "Proof":{"shape":"ValueHolder"},
404
+ "Revision":{"shape":"ValueHolder"}
405
+ }
406
+ },
407
+ "InvalidParameterException":{
408
+ "type":"structure",
409
+ "members":{
410
+ "Message":{"shape":"ErrorMessage"},
411
+ "ParameterName":{"shape":"ParameterName"}
412
+ },
413
+ "error":{"httpStatusCode":400},
414
+ "exception":true
415
+ },
416
+ "IonText":{
417
+ "type":"string",
418
+ "max":1048576,
419
+ "min":1,
420
+ "sensitive":true
421
+ },
422
+ "JournalS3ExportDescription":{
423
+ "type":"structure",
424
+ "required":[
425
+ "LedgerName",
426
+ "ExportId",
427
+ "ExportCreationTime",
428
+ "Status",
429
+ "InclusiveStartTime",
430
+ "ExclusiveEndTime",
431
+ "S3ExportConfiguration",
432
+ "RoleArn"
433
+ ],
434
+ "members":{
435
+ "LedgerName":{"shape":"LedgerName"},
436
+ "ExportId":{"shape":"UniqueId"},
437
+ "ExportCreationTime":{"shape":"Timestamp"},
438
+ "Status":{"shape":"ExportStatus"},
439
+ "InclusiveStartTime":{"shape":"Timestamp"},
440
+ "ExclusiveEndTime":{"shape":"Timestamp"},
441
+ "S3ExportConfiguration":{"shape":"S3ExportConfiguration"},
442
+ "RoleArn":{"shape":"Arn"}
443
+ }
444
+ },
445
+ "JournalS3ExportList":{
446
+ "type":"list",
447
+ "member":{"shape":"JournalS3ExportDescription"}
448
+ },
449
+ "LedgerList":{
450
+ "type":"list",
451
+ "member":{"shape":"LedgerSummary"}
452
+ },
453
+ "LedgerName":{
454
+ "type":"string",
455
+ "max":32,
456
+ "min":1,
457
+ "pattern":"(?!^.*--)(?!^[0-9]+$)(?!^-)(?!.*-$)^[A-Za-z0-9-]+$"
458
+ },
459
+ "LedgerState":{
460
+ "type":"string",
461
+ "enum":[
462
+ "CREATING",
463
+ "ACTIVE",
464
+ "DELETING",
465
+ "DELETED"
466
+ ]
467
+ },
468
+ "LedgerSummary":{
469
+ "type":"structure",
470
+ "members":{
471
+ "Name":{"shape":"LedgerName"},
472
+ "State":{"shape":"LedgerState"},
473
+ "CreationDateTime":{"shape":"Timestamp"}
474
+ }
475
+ },
476
+ "LimitExceededException":{
477
+ "type":"structure",
478
+ "members":{
479
+ "Message":{"shape":"ErrorMessage"},
480
+ "ResourceType":{"shape":"ResourceType"}
481
+ },
482
+ "error":{"httpStatusCode":400},
483
+ "exception":true
484
+ },
485
+ "ListJournalS3ExportsForLedgerRequest":{
486
+ "type":"structure",
487
+ "required":["Name"],
488
+ "members":{
489
+ "Name":{
490
+ "shape":"LedgerName",
491
+ "location":"uri",
492
+ "locationName":"name"
493
+ },
494
+ "MaxResults":{
495
+ "shape":"MaxResults",
496
+ "location":"querystring",
497
+ "locationName":"max_results"
498
+ },
499
+ "NextToken":{
500
+ "shape":"NextToken",
501
+ "location":"querystring",
502
+ "locationName":"next_token"
503
+ }
504
+ }
505
+ },
506
+ "ListJournalS3ExportsForLedgerResponse":{
507
+ "type":"structure",
508
+ "members":{
509
+ "JournalS3Exports":{"shape":"JournalS3ExportList"},
510
+ "NextToken":{"shape":"NextToken"}
511
+ }
512
+ },
513
+ "ListJournalS3ExportsRequest":{
514
+ "type":"structure",
515
+ "members":{
516
+ "MaxResults":{
517
+ "shape":"MaxResults",
518
+ "location":"querystring",
519
+ "locationName":"max_results"
520
+ },
521
+ "NextToken":{
522
+ "shape":"NextToken",
523
+ "location":"querystring",
524
+ "locationName":"next_token"
525
+ }
526
+ }
527
+ },
528
+ "ListJournalS3ExportsResponse":{
529
+ "type":"structure",
530
+ "members":{
531
+ "JournalS3Exports":{"shape":"JournalS3ExportList"},
532
+ "NextToken":{"shape":"NextToken"}
533
+ }
534
+ },
535
+ "ListLedgersRequest":{
536
+ "type":"structure",
537
+ "members":{
538
+ "MaxResults":{
539
+ "shape":"MaxResults",
540
+ "location":"querystring",
541
+ "locationName":"max_results"
542
+ },
543
+ "NextToken":{
544
+ "shape":"NextToken",
545
+ "location":"querystring",
546
+ "locationName":"next_token"
547
+ }
548
+ }
549
+ },
550
+ "ListLedgersResponse":{
551
+ "type":"structure",
552
+ "members":{
553
+ "Ledgers":{"shape":"LedgerList"},
554
+ "NextToken":{"shape":"NextToken"}
555
+ }
556
+ },
557
+ "ListTagsForResourceRequest":{
558
+ "type":"structure",
559
+ "required":["ResourceArn"],
560
+ "members":{
561
+ "ResourceArn":{
562
+ "shape":"Arn",
563
+ "location":"uri",
564
+ "locationName":"resourceArn"
565
+ }
566
+ }
567
+ },
568
+ "ListTagsForResourceResponse":{
569
+ "type":"structure",
570
+ "members":{
571
+ "Tags":{"shape":"Tags"}
572
+ }
573
+ },
574
+ "MaxResults":{
575
+ "type":"integer",
576
+ "max":100,
577
+ "min":1
578
+ },
579
+ "NextToken":{
580
+ "type":"string",
581
+ "max":1024,
582
+ "min":4,
583
+ "pattern":"^[A-Za-z-0-9+/=]+$"
584
+ },
585
+ "ParameterName":{"type":"string"},
586
+ "PermissionsMode":{
587
+ "type":"string",
588
+ "enum":["ALLOW_ALL"]
589
+ },
590
+ "ResourceAlreadyExistsException":{
591
+ "type":"structure",
592
+ "members":{
593
+ "Message":{"shape":"ErrorMessage"},
594
+ "ResourceType":{"shape":"ResourceType"},
595
+ "ResourceName":{"shape":"ResourceName"}
596
+ },
597
+ "error":{"httpStatusCode":409},
598
+ "exception":true
599
+ },
600
+ "ResourceInUseException":{
601
+ "type":"structure",
602
+ "members":{
603
+ "Message":{"shape":"ErrorMessage"},
604
+ "ResourceType":{"shape":"ResourceType"},
605
+ "ResourceName":{"shape":"ResourceName"}
606
+ },
607
+ "error":{"httpStatusCode":409},
608
+ "exception":true
609
+ },
610
+ "ResourceName":{"type":"string"},
611
+ "ResourceNotFoundException":{
612
+ "type":"structure",
613
+ "members":{
614
+ "Message":{"shape":"ErrorMessage"},
615
+ "ResourceType":{"shape":"ResourceType"},
616
+ "ResourceName":{"shape":"ResourceName"}
617
+ },
618
+ "error":{"httpStatusCode":404},
619
+ "exception":true
620
+ },
621
+ "ResourcePreconditionNotMetException":{
622
+ "type":"structure",
623
+ "members":{
624
+ "Message":{"shape":"ErrorMessage"},
625
+ "ResourceType":{"shape":"ResourceType"},
626
+ "ResourceName":{"shape":"ResourceName"}
627
+ },
628
+ "error":{"httpStatusCode":412},
629
+ "exception":true
630
+ },
631
+ "ResourceType":{"type":"string"},
632
+ "S3Bucket":{
633
+ "type":"string",
634
+ "max":255,
635
+ "min":3,
636
+ "pattern":"^[A-Za-z-0-9-_.]+$"
637
+ },
638
+ "S3EncryptionConfiguration":{
639
+ "type":"structure",
640
+ "required":["ObjectEncryptionType"],
641
+ "members":{
642
+ "ObjectEncryptionType":{"shape":"S3ObjectEncryptionType"},
643
+ "KmsKeyArn":{"shape":"Arn"}
644
+ }
645
+ },
646
+ "S3ExportConfiguration":{
647
+ "type":"structure",
648
+ "required":[
649
+ "Bucket",
650
+ "Prefix",
651
+ "EncryptionConfiguration"
652
+ ],
653
+ "members":{
654
+ "Bucket":{"shape":"S3Bucket"},
655
+ "Prefix":{"shape":"S3Prefix"},
656
+ "EncryptionConfiguration":{"shape":"S3EncryptionConfiguration"}
657
+ }
658
+ },
659
+ "S3ObjectEncryptionType":{
660
+ "type":"string",
661
+ "enum":[
662
+ "SSE_KMS",
663
+ "SSE_S3",
664
+ "NO_ENCRYPTION"
665
+ ]
666
+ },
667
+ "S3Prefix":{
668
+ "type":"string",
669
+ "max":128,
670
+ "min":0
671
+ },
672
+ "TagKey":{
673
+ "type":"string",
674
+ "max":128,
675
+ "min":1
676
+ },
677
+ "TagKeyList":{
678
+ "type":"list",
679
+ "member":{"shape":"TagKey"},
680
+ "max":200,
681
+ "min":0
682
+ },
683
+ "TagResourceRequest":{
684
+ "type":"structure",
685
+ "required":[
686
+ "ResourceArn",
687
+ "Tags"
688
+ ],
689
+ "members":{
690
+ "ResourceArn":{
691
+ "shape":"Arn",
692
+ "location":"uri",
693
+ "locationName":"resourceArn"
694
+ },
695
+ "Tags":{"shape":"Tags"}
696
+ }
697
+ },
698
+ "TagResourceResponse":{
699
+ "type":"structure",
700
+ "members":{
701
+ }
702
+ },
703
+ "TagValue":{
704
+ "type":"string",
705
+ "max":256,
706
+ "min":0
707
+ },
708
+ "Tags":{
709
+ "type":"map",
710
+ "key":{"shape":"TagKey"},
711
+ "value":{"shape":"TagValue"},
712
+ "max":200,
713
+ "min":0
714
+ },
715
+ "Timestamp":{"type":"timestamp"},
716
+ "UniqueId":{
717
+ "type":"string",
718
+ "max":22,
719
+ "min":22,
720
+ "pattern":"^[A-Za-z-0-9]+$"
721
+ },
722
+ "UntagResourceRequest":{
723
+ "type":"structure",
724
+ "required":[
725
+ "ResourceArn",
726
+ "TagKeys"
727
+ ],
728
+ "members":{
729
+ "ResourceArn":{
730
+ "shape":"Arn",
731
+ "location":"uri",
732
+ "locationName":"resourceArn"
733
+ },
734
+ "TagKeys":{
735
+ "shape":"TagKeyList",
736
+ "location":"querystring",
737
+ "locationName":"tagKeys"
738
+ }
739
+ }
740
+ },
741
+ "UntagResourceResponse":{
742
+ "type":"structure",
743
+ "members":{
744
+ }
745
+ },
746
+ "UpdateLedgerRequest":{
747
+ "type":"structure",
748
+ "required":["Name"],
749
+ "members":{
750
+ "Name":{
751
+ "shape":"LedgerName",
752
+ "location":"uri",
753
+ "locationName":"name"
754
+ },
755
+ "DeletionProtection":{"shape":"DeletionProtection"}
756
+ }
757
+ },
758
+ "UpdateLedgerResponse":{
759
+ "type":"structure",
760
+ "members":{
761
+ "Name":{"shape":"LedgerName"},
762
+ "Arn":{"shape":"Arn"},
763
+ "State":{"shape":"LedgerState"},
764
+ "CreationDateTime":{"shape":"Timestamp"},
765
+ "DeletionProtection":{"shape":"DeletionProtection"}
766
+ }
767
+ },
768
+ "ValueHolder":{
769
+ "type":"structure",
770
+ "members":{
771
+ "IonText":{"shape":"IonText"}
772
+ },
773
+ "sensitive":true
774
+ }
775
+ }
776
+ }