hey folks, any chance I can find an EventBridge B...
# guide
h
hey folks, any chance I can find an EventBridge Bus archive example with SST ? For archive, it seems like I should use the Archive construct from CDK and stitch it to my SST Bus? is that right ?
Copy code
const bus = new EventBus(this, 'bus', {
      rules: {
        rule1: {
          eventPattern: { source: ['mySource'] },
          targets: [myTargetQueue],
        },
      },
    })

    new events.Archive(this, 'EventArchive', {
      description: 'my event bus',
      eventBus: bus,
      retention: cdk.Duration.days(10),
    });
does this look legit ?