Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(lambda): backfill missing enums for lambda #33651

Merged
merged 7 commits into from
Mar 4, 2025
5 changes: 5 additions & 0 deletions packages/aws-cdk-lib/aws-lambda/lib/event-source-mapping.ts
Original file line number Diff line number Diff line change
@@ -49,6 +49,11 @@ export class SourceAccessConfigurationType {
*/
public static readonly SERVER_ROOT_CA_CERTIFICATE = new SourceAccessConfigurationType('SERVER_ROOT_CA_CERTIFICATE');

/**
* The name of the virtual host in your RabbitMQ broker. Lambda uses this RabbitMQ host as the event source.
*/
public static readonly VIRTUAL_HOST = new SourceAccessConfigurationType('VIRTUAL_HOST');

/** A custom source access configuration property */
public static of(name: string): SourceAccessConfigurationType {
return new SourceAccessConfigurationType(name);