We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6169211 commit 4227747Copy full SHA for 4227747
packages/aws-cdk-lib/aws-lambda/lib/event-source-mapping.ts
@@ -49,6 +49,11 @@ export class SourceAccessConfigurationType {
49
*/
50
public static readonly SERVER_ROOT_CA_CERTIFICATE = new SourceAccessConfigurationType('SERVER_ROOT_CA_CERTIFICATE');
51
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
+
57
/** A custom source access configuration property */
58
public static of(name: string): SourceAccessConfigurationType {
59
return new SourceAccessConfigurationType(name);
0 commit comments