Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
eladcon committed Mar 7, 2024
1 parent 7fbd3fa commit 1861b0c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion eventbridge/lib.w
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ bring cloud;
bring util;
bring "./types.w" as types;
bring "./platform/sim" as sim;
bring "./platform/tf-aws" as aws;
bring "./platform/tfaws" as aws;
bring "./platform/awscdk" as awscdk;

/**
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion eventbridge/platform/awscdk/eventbridge.w
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ bring "./../../types.w" as types;
bring "aws-cdk-lib" as cdk;

pub class Bus impl types.IBus {
extern "../shared-aws/publish.js" pub static inflight putEvent(name: str, event: types.PublishEvent): void;
extern "../aws/publish.js" pub static inflight putEvent(name: str, event: types.PublishEvent): void;
extern "./helper.js" pub static addRulePermission(handler: str, arn: str): void;

eventBridge: cdk.aws_events.EventBus;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ bring "cdktf" as cdktf;
bring "@cdktf/provider-aws" as tfAws;

pub class Bus impl types.IBus {
extern "../shared-aws/publish.js" pub static inflight putEvent(name: str, event: types.PublishEvent): void;
extern "../aws/publish.js" pub static inflight putEvent(name: str, event: types.PublishEvent): void;

busName: str;
busArn: str;
Expand Down

0 comments on commit 1861b0c

Please sign in to comment.