-
Notifications
You must be signed in to change notification settings - Fork 0
/
table_schema.json
59 lines (59 loc) · 1.8 KB
/
table_schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"Table": {
"AttributeDefinitions": [
{
"AttributeName": "long_url",
"AttributeType": "S"
},
{
"AttributeName": "short_id",
"AttributeType": "S"
}
],
"TableName": "mint",
"KeySchema": [
{
"AttributeName": "short_id",
"KeyType": "HASH"
}
],
"TableStatus": "ACTIVE",
"CreationDateTime": "2020-08-05T10:06:49.048000-04:00",
"ProvisionedThroughput": {
"NumberOfDecreasesToday": 0,
"ReadCapacityUnits": 0,
"WriteCapacityUnits": 0
},
"TableSizeBytes": 169,
"ItemCount": 2,
"TableArn": "arn:aws:dynamodb:us-east-1:xxxx:table/mint",
"TableId": "xxxx",
"BillingModeSummary": {
"BillingMode": "PAY_PER_REQUEST",
"LastUpdateToPayPerRequestDateTime": "2020-08-05T10:06:49.048000-04:00"
},
"GlobalSecondaryIndexes": [
{
"IndexName": "long_url-index",
"KeySchema": [
{
"AttributeName": "long_url",
"KeyType": "HASH"
}
],
"Projection": {
"ProjectionType": "ALL"
},
"IndexStatus": "ACTIVE",
"ProvisionedThroughput": {
"NumberOfDecreasesToday": 0,
"ReadCapacityUnits": 0,
"WriteCapacityUnits": 0
},
"IndexSizeBytes": 169,
"ItemCount": 2,
"IndexArn": "arn:aws:dynamodb:us-east-1:xxxx:table/mint/index/long_url-index"
}
]
}
}