-
Notifications
You must be signed in to change notification settings - Fork 3
/
dbModel.json
85 lines (85 loc) · 2.06 KB
/
dbModel.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"KeySchema": [
{
"AttributeName": "pk",
"KeyType": "HASH"
},
{
"AttributeName": "sk",
"KeyType": "RANGE"
}
],
"AttributeDefinitions": [
{
"AttributeName": "pk",
"AttributeType": "S"
},
{
"AttributeName": "sk",
"AttributeType": "S"
},
{
"AttributeName": "legalName",
"AttributeType": "S"
},
{
"AttributeName": "displayName",
"AttributeType": "S"
},
{
"AttributeName": "status",
"AttributeType": "S"
}
],
"GlobalSecondaryIndexes": [
{
"IndexName": "ByLegalName",
"KeySchema": [
{
"AttributeName": "legalName",
"KeyType": "HASH"
}
],
"Projection": {
"ProjectionType": "ALL"
},
"BillingMode": "PAY_PER_REQUEST"
},
{
"IndexName": "ByDisplayName",
"KeySchema": [
{
"AttributeName": "displayName",
"KeyType": "HASH"
}
],
"Projection": {
"ProjectionType": "ALL"
},
"BillingMode": "PAY_PER_REQUEST"
},
{
"IndexName": "ByStatusOfOrcs",
"KeySchema": [
{
"AttributeName": "status",
"KeyType": "HASH"
},
{
"AttributeName": "pk",
"KeyType": "RANGE"
}
],
"Projection": {
"ProjectionType": "ALL"
},
"BillingMode": "PAY_PER_REQUEST"
}
],
"TableName": "NameRegister",
"StreamSpecification": {
"StreamEnabled": true,
"StreamViewType": "NEW_AND_OLD_IMAGES"
},
"BillingMode": "PAY_PER_REQUEST"
}