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

feat(AppSync): addRdsDataSource support for DatabaseCluster #29544

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
7abe26a
added AppSync support for idatabase interface as ddata source to supp…
sebdu6 Mar 15, 2024
cc849f0
Merge branch 'main' into sebastien6/feature-appsync-rdsdatasource-dat…
sebastien6 Mar 19, 2024
3e6d000
added integration test with snapshot
sebdu6 Mar 20, 2024
10272f6
Merge branch 'main' into sebastien6/feature-appsync-rdsdatasource-dat…
sebastien6 Mar 20, 2024
dd0f95a
removed union from props to satisfy linter
sebdu6 Mar 20, 2024
dc9b4c2
updated aws-cdk-lib/aws-appsync README for new feature support
sebdu6 Mar 20, 2024
e09a902
Merge branch 'main' into sebastien6/feature-appsync-rdsdatasource-dat…
sebdu6 Mar 20, 2024
2d0be1e
update snapshot integ test rds data api
sebdu6 Mar 20, 2024
e72dfbd
aws-cdk-lib/aws-appsync README update
sebdu6 Mar 20, 2024
e55e6e3
aws-cdk-lib/aws-appsync README update split examples RDS v1 and v2
sebdu6 Mar 20, 2024
9efbab1
aws-cdk-lib/aws-appsync README update cleaner split of examples
sebdu6 Mar 20, 2024
f5a67c1
aws-cdk-lib/aws-appsync README update explicit examples RDS v1 and v2
sebdu6 Mar 20, 2024
2b404e2
corrected typo in integration test appsync-rds-serverlessv2
sebdu6 Mar 20, 2024
1158eaa
Merge branch 'main' into sebastien6/feature-appsync-rdsdatasource-dat…
sebdu6 Mar 20, 2024
7a5ff07
Merge branch 'aws:main' into sebastien6/feature-appsync-rdsdatasource…
sebastien6 Mar 21, 2024
2e30a77
Merge branch 'main' into sebastien6/feature-appsync-rdsdatasource-dat…
sebastien6 Mar 21, 2024
22b281b
removed typo in interface docstring
sebdu6 Mar 21, 2024
f841852
Merge branch 'main' into sebastien6/feature-appsync-rdsdatasource-dat…
sebastien6 Mar 21, 2024
be432d2
Merge branch 'main' into sebastien6/feature-appsync-rdsdatasource-dat…
sebastien6 Mar 25, 2024
fab7616
updated as per PR comments
sebdu6 Mar 25, 2024
402620b
Merge branch 'main' into sebastien6/feature-appsync-rdsdatasource-dat…
sebastien6 Mar 26, 2024
1f1acc3
Merge branch 'main' into sebastien6/feature-appsync-rdsdatasource-dat…
sebastien6 Apr 3, 2024
e3a482b
fix main rebase build issue
sebdu6 Apr 3, 2024
417302d
Merge branch 'main' into sebastien6/feature-appsync-rdsdatasource-dat…
sebdu6 Apr 4, 2024
2288490
Merge branch 'main' into sebastien6/feature-appsync-rdsdatasource-dat…
sebdu6 Apr 8, 2024
cb4524b
fixed first two comments from GavinZZ
sebdu6 Apr 8, 2024
4406258
added unit test for RdsDataSource constructor.
sebdu6 Apr 9, 2024
7a73cb7
Merge branch 'main' into sebastien6/feature-appsync-rdsdatasource-dat…
sebdu6 Apr 9, 2024
d01a614
re-order policy document in unittest or it make it failed all the time.
sebdu6 Apr 9, 2024
8a4643f
test: updated unittest appsync
sebdu6 Apr 9, 2024
d0776cb
Merge branch 'main' into sebastien6/feature-appsync-rdsdatasource-dat…
sebdu6 Apr 10, 2024
514922c
fix: replaced union with method specific to serverlessV2 datasource
sebdu6 Apr 10, 2024
5fad67c
Merge branch 'main' into sebastien6/feature-appsync-rdsdatasource-dat…
GavinZZ Apr 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
schema {
query: Query
mutation: Mutation
}

type Query {
getPost(id:ID!): Post
allPosts: [Post]
}

type Mutation {
addPost(id: ID!, author: String!, title: String, content: String, url: String): Post!
}

type Post {
id: ID!
author: String!
title: String
content: String
url: String
ups: Int
downs: Int
relatedPosts: [Post]
relatedPostsMaxBatchSize: [Post]
}

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

Loading