Skip to content

Commit 4227747

Browse files
authoredMar 4, 2025
chore(lambda): backfill missing enums for lambda (#33651)
### Description of changes backfill missing enums for lambda ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 6169211 commit 4227747

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎packages/aws-cdk-lib/aws-lambda/lib/event-source-mapping.ts

+5
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@ export class SourceAccessConfigurationType {
4949
*/
5050
public static readonly SERVER_ROOT_CA_CERTIFICATE = new SourceAccessConfigurationType('SERVER_ROOT_CA_CERTIFICATE');
5151

52+
/**
53+
* The name of the virtual host in your RabbitMQ broker. Lambda uses this RabbitMQ host as the event source.
54+
*/
55+
public static readonly VIRTUAL_HOST = new SourceAccessConfigurationType('VIRTUAL_HOST');
56+
5257
/** A custom source access configuration property */
5358
public static of(name: string): SourceAccessConfigurationType {
5459
return new SourceAccessConfigurationType(name);

0 commit comments

Comments
 (0)
Failed to load comments.