Skip to content
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

(iot): TopicRule action for HTTP in AWS IoT #17704

Closed
2 tasks
yamatatsu opened this issue Nov 25, 2021 · 3 comments
Closed
2 tasks

(iot): TopicRule action for HTTP in AWS IoT #17704

yamatatsu opened this issue Nov 25, 2021 · 3 comments
Labels
@aws-cdk/aws-iot Related to AWS IoT closed-for-staleness This issue was automatically closed because it hadn't received any attention in a while. effort/small Small work item – less than a day of effort feature/service-integration Add functionality to an L2 construct to enable easier integration with another service feature-request A feature should be added or improved. p2

Comments

@yamatatsu
Copy link
Contributor

Description

The CDK has no support to post HTTP request via AWS IoT Rule.

Use Case

Adding the action that posts HTTP requests to AWS IoT topic rule.

Proposed Solution

Implementing action class.

Probably, following PRs help coding.

Other information

Follofing documentation will be help.

It will be good first issue for learning implement feature in CDK!

Acknowledge

  • I may be able to implement this feature request
  • This feature might incur a breaking change
@yamatatsu yamatatsu added feature-request A feature should be added or improved. needs-triage This issue or PR still needs to be triaged. labels Nov 25, 2021
@github-actions github-actions bot added the @aws-cdk/aws-iot Related to AWS IoT label Nov 25, 2021
@peterwoodworth peterwoodworth added effort/small Small work item – less than a day of effort p2 feature/service-integration Add functionality to an L2 construct to enable easier integration with another service and removed needs-triage This issue or PR still needs to be triaged. labels Nov 26, 2021
@nanofaroque
Copy link

Any update on this feature delivery date?

@yamatatsu
Copy link
Contributor Author

@nanofaroque
There is no set delivery date as far as I know.

If you wanna use httpAction soon, you can use following escape hatch:

new iot.TopicRule(this, "TopicRule", {
  sql: iot.IotSql.fromStringAsVer20160323("SELECT * FROM 'device/+/data'"),
  actions: [
    {
      bind: () => ({
        configuration: {
          http: {
            url: "",
          },
        },
      }),
    },
  ],
});```

@github-actions
Copy link

github-actions bot commented Dec 6, 2022

This issue has not received any attention in 1 year. If you want to keep this issue open, please leave a comment below and auto-close will be canceled.

@github-actions github-actions bot added closing-soon This issue will automatically close in 4 days unless further comments are made. closed-for-staleness This issue was automatically closed because it hadn't received any attention in a while. and removed closing-soon This issue will automatically close in 4 days unless further comments are made. labels Dec 6, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
@aws-cdk/aws-iot Related to AWS IoT closed-for-staleness This issue was automatically closed because it hadn't received any attention in a while. effort/small Small work item – less than a day of effort feature/service-integration Add functionality to an L2 construct to enable easier integration with another service feature-request A feature should be added or improved. p2
Projects
None yet
Development

No branches or pull requests

4 participants