serverless/lib/utils/aws-schema-get-cf-value.js
2024-05-29 11:51:04 -04:00

10 lines
174 B
JavaScript

export const cfValue = (value) => {
return {
anyOf: [
value,
{ $ref: '#/definitions/awsCfFunction' },
{ $ref: '#/definitions/awsCfIf' },
],
}
}