-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathamplifyconfiguration.js
85 lines (83 loc) · 2.28 KB
/
amplifyconfiguration.js
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
const amplifyConfig = {
"aws_user_pools_id": "us-west-2_7Z4Gi8505",
"aws_user_pools_web_client_id": "51oj71rh127kbfoarl2djqcr",
"aws_cognito_region": "us-west-2",
"aws_appsync_graphqlEndpoint": "https://2mth6ceyrrbbtlfdqpuicw5oly.appsync-api.us-west-2.amazonaws.com/graphql",
"aws_appsync_region": "us-west-2",
"aws_appsync_authenticationType": "AMAZON_COGNITO_USER_POOLS",
"aws_appsync_additionalAuthenticationTypes": "AWS_IAM",
"modelIntrospection": {
"version": 1,
"models": {
"Todo": {
"name": "Todo",
"fields": {
"id": {
"name": "id",
"isArray": false,
"type": "ID",
"isRequired": true,
"attributes": []
},
"name": {
"name": "name",
"isArray": false,
"type": "String",
"isRequired": true,
"attributes": []
},
"createdAt": {
"name": "createdAt",
"isArray": false,
"type": "AWSDateTime",
"isRequired": false,
"attributes": [],
"isReadOnly": true
},
"updatedAt": {
"name": "updatedAt",
"isArray": false,
"type": "AWSDateTime",
"isRequired": false,
"attributes": [],
"isReadOnly": true
}
},
"syncable": true,
"pluralName": "Todos",
"attributes": [
{
"type": "model",
"properties": {}
},
{
"type": "auth",
"properties": {
"rules": [
{
"allow": "private",
"operations": [
"create",
"update",
"delete",
"read"
]
}
]
}
}
],
"primaryKeyInfo": {
"isCustomPrimaryKey": false,
"primaryKeyFieldName": "id",
"sortKeyFieldNames": []
}
}
},
"enums": {},
"nonModels": {}
},
"aws_user_files_s3_bucket_region": "us-west-2",
"aws_user_files_s3_bucket": "amplify-test-samsara-app-amplifystorageamplifysto-1t1ztpsqognzq"
}
export default amplifyConfig;