Skip to content

Commit d2a1f15

Browse files
committed
Merge branch 'main' into dependabot/github_actions/actions/upload-artifact-5
* main: chore: Remove data-lake and data-lake-pipeline L1 resources (#520) chore: bump actions/download-artifact from 5.0.0 to 6.0.0 (#519)
2 parents 2f793ca + 9ee90b8 commit d2a1f15

File tree

14 files changed

+4489
-8809
lines changed

14 files changed

+4489
-8809
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
with:
6969
node-version: 18.x
7070
- name: Download build artifacts
71-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
71+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
7272
with:
7373
name: build-artifact
7474
path: dist
@@ -107,7 +107,7 @@ jobs:
107107
with:
108108
node-version: 18.x
109109
- name: Download build artifacts
110-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
110+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
111111
with:
112112
name: build-artifact
113113
path: dist
@@ -149,7 +149,7 @@ jobs:
149149
with:
150150
python-version: 3.x
151151
- name: Download build artifacts
152-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
152+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
153153
with:
154154
name: build-artifact
155155
path: dist
@@ -204,7 +204,7 @@ jobs:
204204
with:
205205
dotnet-version: 9.0.x
206206
- name: Download build artifacts
207-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
207+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
208208
with:
209209
name: build-artifact
210210
path: dist
@@ -255,7 +255,7 @@ jobs:
255255
with:
256256
go-version: ^1.16.0
257257
- name: Download build artifacts
258-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
258+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
259259
with:
260260
name: build-artifact
261261
path: dist
@@ -291,7 +291,7 @@ jobs:
291291
with:
292292
node-version: 18.x
293293
- name: Download build artifacts
294-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
294+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
295295
with:
296296
name: build-artifact
297297
path: dist

API.md

Lines changed: 4483 additions & 7176 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/l1-resources/data-lake-pipeline.ts

Lines changed: 0 additions & 69 deletions
This file was deleted.

examples/l1-resources/datalake.ts

Lines changed: 0 additions & 64 deletions
This file was deleted.

src/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ L1 constructs are called Cfn (short for CloudFormation) resources. These resourc
2121
| custom-db-role | Returns, adds, edits, and removes custom database user privilege roles. | [README.md](l1-resources/custom-db-role/README.md) |
2222
| custom-dns-configuration-cluster-aws | An example resource schema demonstrating some basic constructs and validation rules. | [README.md](l1-resources/custom-dns-configuration-cluster-aws/README.md) |
2323
| database-user | Returns, adds, edits, and removes database users. | [README.md](l1-resources/database-user/README.md) |
24-
| datalakes | Returns, adds, edits, and removes Federated Database Instances. | [README.md](l1-resources/datalakes/README.md) |
2524
| encryption-at-rest | Returns and edits the Encryption at Rest using Customer Key Management configuration. | [README.md](l1-resources/encryption-at-rest/README.md) |
2625
| federated-settings-org-role-mapping | Returns, adds, edits, and removes federation-related features such as role mappings and connected organization configurations. | [README.md](l1-resources/federated-settings-org-role-mapping/README.md) |
2726
| global-cluster-config | Returns, adds, and removes Global Cluster managed namespaces and custom zone mappings. | [README.md](l1-resources/global-cluster-config/README.md) |

src/index.ts

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -124,17 +124,6 @@ export {
124124
CfnCustomDnsConfigurationClusterAwsProps,
125125
} from "./l1-resources/custom-dns-configuration-cluster-aws";
126126

127-
export {
128-
CfnDataLakePipeline,
129-
CfnDataLakePipelineProps,
130-
Sink,
131-
SinkType,
132-
Source,
133-
SourceType,
134-
Transformations,
135-
PartitionFields,
136-
} from "./l1-resources/data-lake-pipeline";
137-
138127
export {
139128
CfnDatabaseUser,
140129
CfnDatabaseUserProps,
@@ -147,23 +136,6 @@ export {
147136
ScopeDefinitionType,
148137
} from "./l1-resources/database-user";
149138

150-
export {
151-
CfnDataLakes,
152-
CfnDataLakesProps,
153-
DataLakeAwsCloudProviderConfigView,
154-
DataLakeCloudProviderConfigView,
155-
DataLakeDataProcessRegionView,
156-
DataLakeDataProcessRegionViewCloudProvider,
157-
DataLakeDataProcessRegionViewRegion,
158-
DataLakeDatabaseCollectionView,
159-
DataLakeDatabaseDataSourceView,
160-
DataLakeDatabaseDataSourceViewDefaultFormat,
161-
DataLakeDatabaseView,
162-
DataLakeStorageView,
163-
DataLakeViewView,
164-
StoreDetail,
165-
} from "./l1-resources/datalakes";
166-
167139
export {
168140
AwsKmsConfig,
169141
CfnEncryptionAtRest,

src/l1-resources/data-lake-pipeline/README.md

Lines changed: 0 additions & 99 deletions
This file was deleted.

0 commit comments

Comments
 (0)