@intentius/chant-lexicon-aws 0.0.24 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/integrity.json +4 -4
- package/dist/manifest.json +1 -1
- package/dist/meta.json +586 -54
- package/dist/types/index.d.ts +655 -60
- package/package.json +5 -2
- package/src/codegen/docs.ts +9 -1
- package/src/composites/efs-with-access-point.ts +90 -0
- package/src/composites/fargate-service.ts +93 -2
- package/src/composites/index.ts +2 -0
- package/src/composites/lambda-dynamodb.ts +66 -17
- package/src/composites/lambda-s3.ts +66 -20
- package/src/generated/index.d.ts +655 -60
- package/src/generated/index.ts +56 -9
- package/src/generated/lexicon-aws.json +586 -54
- package/src/index.ts +2 -0
- package/src/serializer.ts +1 -3
package/src/index.ts
CHANGED
|
@@ -78,11 +78,13 @@ export {
|
|
|
78
78
|
LambdaScheduled, ScheduledLambda,
|
|
79
79
|
LambdaSqs, LambdaEventBridge, LambdaDynamoDB, LambdaS3, LambdaSns,
|
|
80
80
|
VpcDefault, FargateAlb, AlbShared, FargateService, RdsInstance, RdsPostgres,
|
|
81
|
+
EfsWithAccessPoint,
|
|
81
82
|
} from "./composites/index";
|
|
82
83
|
export type {
|
|
83
84
|
LambdaFunctionProps, LambdaApiProps, ScheduledLambdaProps,
|
|
84
85
|
LambdaSqsProps, LambdaEventBridgeProps, LambdaDynamoDBProps, LambdaS3Props, LambdaSnsProps,
|
|
85
86
|
VpcDefaultProps, FargateAlbProps, AlbSharedProps, FargateServiceProps, RdsInstanceProps, RdsPostgresProps,
|
|
87
|
+
EfsWithAccessPointProps,
|
|
86
88
|
} from "./composites/index";
|
|
87
89
|
|
|
88
90
|
// Code generation pipeline
|
package/src/serializer.ts
CHANGED
|
@@ -303,9 +303,7 @@ function serializeToTemplate(
|
|
|
303
303
|
template.Outputs = template.Outputs ?? {};
|
|
304
304
|
for (const output of outputs) {
|
|
305
305
|
template.Outputs[output.outputName] = {
|
|
306
|
-
Value:
|
|
307
|
-
"Fn::GetAtt": [output.sourceEntity, output.sourceAttribute],
|
|
308
|
-
},
|
|
306
|
+
Value: output.getOutputValue(),
|
|
309
307
|
};
|
|
310
308
|
}
|
|
311
309
|
}
|