|
1086 | 1086 | {"shape":"GlueEncryptionException"} |
1087 | 1087 | ] |
1088 | 1088 | }, |
| 1089 | + "GetPartitionIndexes":{ |
| 1090 | + "name":"GetPartitionIndexes", |
| 1091 | + "http":{ |
| 1092 | + "method":"POST", |
| 1093 | + "requestUri":"/" |
| 1094 | + }, |
| 1095 | + "input":{"shape":"GetPartitionIndexesRequest"}, |
| 1096 | + "output":{"shape":"GetPartitionIndexesResponse"}, |
| 1097 | + "errors":[ |
| 1098 | + {"shape":"InternalServiceException"}, |
| 1099 | + {"shape":"OperationTimeoutException"}, |
| 1100 | + {"shape":"InvalidInputException"}, |
| 1101 | + {"shape":"EntityNotFoundException"}, |
| 1102 | + {"shape":"ConflictException"} |
| 1103 | + ] |
| 1104 | + }, |
1089 | 1105 | "GetPartitions":{ |
1090 | 1106 | "name":"GetPartitions", |
1091 | 1107 | "http":{ |
|
2681 | 2697 | "type":"list", |
2682 | 2698 | "member":{"shape":"Condition"} |
2683 | 2699 | }, |
| 2700 | + "ConflictException":{ |
| 2701 | + "type":"structure", |
| 2702 | + "members":{ |
| 2703 | + "Message":{"shape":"MessageString"} |
| 2704 | + }, |
| 2705 | + "exception":true |
| 2706 | + }, |
2684 | 2707 | "ConfusionMatrix":{ |
2685 | 2708 | "type":"structure", |
2686 | 2709 | "members":{ |
|
3188 | 3211 | "members":{ |
3189 | 3212 | "CatalogId":{"shape":"CatalogIdString"}, |
3190 | 3213 | "DatabaseName":{"shape":"NameString"}, |
3191 | | - "TableInput":{"shape":"TableInput"} |
| 3214 | + "TableInput":{"shape":"TableInput"}, |
| 3215 | + "PartitionIndexes":{"shape":"PartitionIndexList"} |
3192 | 3216 | } |
3193 | 3217 | }, |
3194 | 3218 | "CreateTableResponse":{ |
|
4337 | 4361 | "Mapping":{"shape":"MappingList"} |
4338 | 4362 | } |
4339 | 4363 | }, |
| 4364 | + "GetPartitionIndexesRequest":{ |
| 4365 | + "type":"structure", |
| 4366 | + "required":[ |
| 4367 | + "DatabaseName", |
| 4368 | + "TableName" |
| 4369 | + ], |
| 4370 | + "members":{ |
| 4371 | + "CatalogId":{"shape":"CatalogIdString"}, |
| 4372 | + "DatabaseName":{"shape":"NameString"}, |
| 4373 | + "TableName":{"shape":"NameString"}, |
| 4374 | + "NextToken":{"shape":"Token"} |
| 4375 | + } |
| 4376 | + }, |
| 4377 | + "GetPartitionIndexesResponse":{ |
| 4378 | + "type":"structure", |
| 4379 | + "members":{ |
| 4380 | + "PartitionIndexDescriptorList":{"shape":"PartitionIndexDescriptorList"}, |
| 4381 | + "NextToken":{"shape":"Token"} |
| 4382 | + } |
| 4383 | + }, |
4340 | 4384 | "GetPartitionRequest":{ |
4341 | 4385 | "type":"structure", |
4342 | 4386 | "required":[ |
|
4999 | 5043 | }, |
5000 | 5044 | "JsonPath":{"type":"string"}, |
5001 | 5045 | "JsonValue":{"type":"string"}, |
| 5046 | + "KeyList":{ |
| 5047 | + "type":"list", |
| 5048 | + "member":{"shape":"NameString"}, |
| 5049 | + "min":1 |
| 5050 | + }, |
| 5051 | + "KeySchemaElement":{ |
| 5052 | + "type":"structure", |
| 5053 | + "required":[ |
| 5054 | + "Name", |
| 5055 | + "Type" |
| 5056 | + ], |
| 5057 | + "members":{ |
| 5058 | + "Name":{"shape":"NameString"}, |
| 5059 | + "Type":{"shape":"ColumnTypeString"} |
| 5060 | + } |
| 5061 | + }, |
| 5062 | + "KeySchemaElementList":{ |
| 5063 | + "type":"list", |
| 5064 | + "member":{"shape":"KeySchemaElement"}, |
| 5065 | + "min":1 |
| 5066 | + }, |
5002 | 5067 | "KeyString":{ |
5003 | 5068 | "type":"string", |
5004 | 5069 | "max":255, |
|
5404 | 5469 | "type":"list", |
5405 | 5470 | "member":{"shape":"PartitionError"} |
5406 | 5471 | }, |
| 5472 | + "PartitionIndex":{ |
| 5473 | + "type":"structure", |
| 5474 | + "required":[ |
| 5475 | + "Keys", |
| 5476 | + "IndexName" |
| 5477 | + ], |
| 5478 | + "members":{ |
| 5479 | + "Keys":{"shape":"KeyList"}, |
| 5480 | + "IndexName":{"shape":"NameString"} |
| 5481 | + } |
| 5482 | + }, |
| 5483 | + "PartitionIndexDescriptor":{ |
| 5484 | + "type":"structure", |
| 5485 | + "required":[ |
| 5486 | + "IndexName", |
| 5487 | + "Keys", |
| 5488 | + "IndexStatus" |
| 5489 | + ], |
| 5490 | + "members":{ |
| 5491 | + "IndexName":{"shape":"NameString"}, |
| 5492 | + "Keys":{"shape":"KeySchemaElementList"}, |
| 5493 | + "IndexStatus":{"shape":"PartitionIndexStatus"} |
| 5494 | + } |
| 5495 | + }, |
| 5496 | + "PartitionIndexDescriptorList":{ |
| 5497 | + "type":"list", |
| 5498 | + "member":{"shape":"PartitionIndexDescriptor"} |
| 5499 | + }, |
| 5500 | + "PartitionIndexList":{ |
| 5501 | + "type":"list", |
| 5502 | + "member":{"shape":"PartitionIndex"}, |
| 5503 | + "max":3 |
| 5504 | + }, |
| 5505 | + "PartitionIndexStatus":{ |
| 5506 | + "type":"string", |
| 5507 | + "enum":["ACTIVE"] |
| 5508 | + }, |
5407 | 5509 | "PartitionInput":{ |
5408 | 5510 | "type":"structure", |
5409 | 5511 | "members":{ |
|
0 commit comments