Skip to content

Commit

Permalink
feat: adds clients
Browse files Browse the repository at this point in the history
- account
- cloudsearch
-cloudtrail
- cloudwatch
- cloudwatch-events
- cloudwatch-logs
- cognito-identity-provider
- kms
- mq
- rds
- sts
  • Loading branch information
godu committed Oct 25, 2024
1 parent 11fb12d commit 2b07f1e
Show file tree
Hide file tree
Showing 270 changed files with 28,559 additions and 223 deletions.
25 changes: 25 additions & 0 deletions .changeset/new-clients.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
"@effect-aws/client-account": major
"@effect-aws/client-cloudtrail": major
"@effect-aws/client-cloudwatch": major
"@effect-aws/client-cloudwatch-events": major
"@effect-aws/client-cloudwatch-logs": major
"@effect-aws/client-cognito-identity-provider": major
"@effect-aws/client-kinesis": major
"@effect-aws/client-mq": major
"@effect-aws/client-opensearch": major
"@effect-aws/client-rds": major
"@effect-aws/client-sts": major
---

implement effectful account client
implement effectful cloudtrail client
implement effectful cloudwatch client
implement effectful cloudwatch-events client
implement effectful cloudwatch-logs client
implement effectful cognito-identity-provider client
implement effectful kinesis client
implement effectful mq client
implement effectful opensearch client
implement effectful rds client
implement effectful sts client
88 changes: 88 additions & 0 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,94 @@ new TypeScriptLibProject({
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-account",
deps: [...commonDeps, "@aws-sdk/client-account@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-cloudsearch",
deps: [...commonDeps, "@aws-sdk/client-cloudsearch@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-cloudtrail",
deps: [...commonDeps, "@aws-sdk/client-cloudtrail@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-cloudwatch",
deps: [...commonDeps, "@aws-sdk/client-cloudwatch@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-cloudwatch-events",
deps: [...commonDeps, "@aws-sdk/client-cloudwatch-events@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-cloudwatch-logs",
deps: [...commonDeps, "@aws-sdk/client-cloudwatch-logs@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-cognito-identity-provider",
deps: [...commonDeps, "@aws-sdk/client-cognito-identity-provider@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-kms",
deps: [...commonDeps, "@aws-sdk/client-kms@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-mq",
deps: [...commonDeps, "@aws-sdk/client-mq@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-rds",
deps: [...commonDeps, "@aws-sdk/client-rds@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "client-sts",
deps: [...commonDeps, "@aws-sdk/client-sts@^3"],
devDeps: commonDevDeps,
peerDeps: commonPeerDeps,
});

new TypeScriptLibProject({
parent: project,
name: "lambda",
Expand Down
11 changes: 11 additions & 0 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

126 changes: 126 additions & 0 deletions packages/client-account/.eslintrc.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions packages/client-account/.gitattributes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions packages/client-account/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions packages/client-account/.npmignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/client-account/.prettierignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions packages/client-account/.prettierrc.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 2b07f1e

Please sign in to comment.