We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cff8f68 commit 15359f9Copy full SHA for 15359f9
1 file changed
packages/cdkConstructs/src/constructs/RestApiGateway.ts
@@ -58,11 +58,11 @@ export interface RestApiGatewayProps {
58
readonly enableServiceDomain?: boolean
59
}
60
61
-const function getTrustStoreKeyPrefix(stackName: string, stackUUID?: string) {
+const getTrustStoreKeyPrefix = (stackName: string, stackUUID?: string) => {
62
if (stackUUID) {
63
return `cpt-api/${stackName}-${stackUUID}-truststore`
64
} else {
65
- return `cpt-api/${props.stackName}-truststore`
+ return `cpt-api/${stackName}-truststore`
66
67
68
0 commit comments