-
Notifications
You must be signed in to change notification settings - Fork 0
/
table_schema.json
55 lines (55 loc) · 1.68 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
{
"Table": {
"AttributeDefinitions": [
{
"AttributeName": "long_url",
"AttributeType": "S"
},
{
"AttributeName": "short_id",
"AttributeType": "S"
}
],
"TableName": "resolutionservice",
"KeySchema": [
{
"AttributeName": "short_id",
"KeyType": "HASH"
}
],
"TableStatus": "ACTIVE",
"CreationDateTime": "2019-08-20T08:56:45.190000-04:00",
"ProvisionedThroughput": {
"NumberOfDecreasesToday": 0,
"ReadCapacityUnits": 5,
"WriteCapacityUnits": 5
},
"TableSizeBytes": 15351,
"ItemCount": 89,
"TableArn": "arn:aws:dynamodb:us-east-1:xxxx:table/resolutionservice",
"TableId": "xxxx",
"GlobalSecondaryIndexes": [
{
"IndexName": "long_url-index",
"KeySchema": [
{
"AttributeName": "long_url",
"KeyType": "HASH"
}
],
"Projection": {
"ProjectionType": "ALL"
},
"IndexStatus": "ACTIVE",
"ProvisionedThroughput": {
"NumberOfDecreasesToday": 0,
"ReadCapacityUnits": 1,
"WriteCapacityUnits": 1
},
"IndexSizeBytes": 15351,
"ItemCount": 89,
"IndexArn": "arn:aws:dynamodb:us-east-1:xxxx:table/resolutionservice/index/long_url-index"
}
]
}
}