-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathNaming.ts
More file actions
111 lines (87 loc) · 2.53 KB
/
Naming.ts
File metadata and controls
111 lines (87 loc) · 2.53 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import {
AppSyncConfig,
DataSourceConfig,
PipelineFunctionConfig,
ResolverConfig,
} from '../types/plugin';
export class Naming {
constructor(private config: AppSyncConfig) {}
getCfnName(name: string) {
return name.replace(/[^a-zA-Z0-9]/g, '');
}
getLogicalId(name: string): string {
const logicalIdPrefix = this.config.logicalIdPrefix || '';
return this.getCfnName(`${logicalIdPrefix}${name}`);
}
getApiLogicalId() {
return this.getLogicalId(`GraphQlApi`);
}
getSchemaLogicalId() {
return this.getLogicalId(`GraphQlSchema`);
}
getDomainNameLogicalId() {
return this.getLogicalId(`GraphQlDomainName`);
}
getDomainCertificateLogicalId() {
return this.getLogicalId(`GraphQlDomainCertificate`);
}
getDomainAssociationLogicalId() {
return this.getLogicalId(`GraphQlDomainAssociation`);
}
getDomainReoute53RecordLogicalId() {
return this.getLogicalId(`GraphQlDomainRoute53Record`);
}
getLogGroupLogicalId() {
return this.getLogicalId(`GraphQlApiLogGroup`);
}
getLogGroupRoleLogicalId() {
return this.getLogicalId(`GraphQlApiLogGroupRole`);
}
getLogGroupPolicyLogicalId() {
return this.getLogicalId(`GraphQlApiLogGroupPolicy`);
}
getCachingLogicalId() {
return this.getLogicalId(`GraphQlCaching`);
}
getLambdaAuthLogicalId() {
return this.getLogicalId(`LambdaAuthorizerPermission`);
}
getApiKeyLogicalId(name: string) {
return this.getLogicalId(`GraphQlApi${name}`);
}
// Warning: breaking change.
// api name added
getDataSourceLogicalId(name: string) {
return this.getLogicalId(`GraphQlDs${name}`);
}
getDataSourceRoleLogicalId(name: string) {
return this.getDataSourceLogicalId(`${name}Role`);
}
getResolverLogicalId(type: string, field: string) {
return this.getLogicalId(`GraphQlResolver${type}${field}`);
}
getPipelineFunctionLogicalId(name: string) {
return this.getLogicalId(`GraphQlFunctionConfiguration${name}`);
}
getWafLogicalId() {
return this.getLogicalId('GraphQlWaf');
}
getWafAssociationLogicalId() {
return this.getLogicalId('GraphQlWafAssoc');
}
getDataSourceEmbeddedLambdaResolverName(config: DataSourceConfig) {
return config.name;
}
getResolverEmbeddedSyncLambdaName(
config: ResolverConfig | PipelineFunctionConfig,
) {
if ('name' in config) {
return `${config.name}_Sync`;
} else {
return `${config.type}_${config.field}_Sync`;
}
}
getAuthenticationEmbeddedLamdbaName() {
return `${this.config.name}Authorizer`;
}
}