-
Notifications
You must be signed in to change notification settings - Fork 14.3k
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
Add Amazon EventBridge PutRule hook and operator #32869
Add Amazon EventBridge PutRule hook and operator #32869
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Solid start. Needs a small fix in the system test and left a couple of additional non-blocking thoughts.
@@ -32,6 +32,10 @@ class EventBridgePutEventsOperator(BaseOperator): | |||
""" | |||
Put Events onto Amazon EventBridge. | |||
|
|||
.. seealso:: | |||
For more information on how to use this operator, take a look at the guide: | |||
:ref:`howto/operator: EventBridgePutEventsOperator` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
try this here and in the rst:
:ref:`howto/operator: EventBridgePutEventsOperator` | |
:ref:`howto/operator:EventBridgePutEventsOperator` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice PR! LGTM (besides Elad's comment which I agree with)
Co-authored-by: eladkal <[email protected]>
The method you renamed didn't get changed in some tests. |
Implementation for Amazon EventBridge PutRule hook and operator.