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

chore(release): 2.183.0 #33740

Merged
merged 33 commits into from
Mar 11, 2025
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
4227747
chore(lambda): backfill missing enums for lambda (#33651)
paulhcsun Mar 4, 2025
b55199a
chore(kinesisanalytics-flink-alpha): backfill missing enums for kines…
paulhcsun Mar 4, 2025
6ed7a45
chore(kinesisfirehose-destinations-alpha): backfill missing enums for…
paulhcsun Mar 4, 2025
4bc151b
chore(ec2): add VPC interface endpoints for Location Service (#33667)
mazyu36 Mar 4, 2025
4d8eae9
fix(scheduler-alpha): deprecate `Group` in favour of `ScheduleGroup` …
gracelu0 Mar 5, 2025
50ba3ef
fix(scheduler-targets-alpha): update inspector target to use IAssessm…
gracelu0 Mar 5, 2025
ba2dfd1
fix(eks): cluster deployment issue when the authentication mode is no…
xazhao Mar 5, 2025
6c882e0
feat(logs): add support for fieldIndexPolicies in log group L2 Constr…
yashkh-amzn Mar 5, 2025
e47ab0b
Merge branch 'main' into merge-back/2.182.0
mergify[bot] Mar 5, 2025
4ab0b33
chore(merge-back): 2.182.0 (#33693)
mergify[bot] Mar 5, 2025
00ef50d
fix(core): pressing Ctrl-C when content is bundled leaves broken asse…
rix0rrr Mar 5, 2025
da0fdaa
chore: update github-merit-badger.yml (#33695)
QuantumNeuralCoder Mar 5, 2025
48ae4d0
chore: update .mergify.yml (#33694)
QuantumNeuralCoder Mar 5, 2025
d12854a
feat(codebuild): throw `ValidationError` instead of untyped Errors (#…
badmintoncryer Mar 6, 2025
7f5bf4e
chore(rds): add new MariaDB engine versions 10.5.28, 10.6.21, 10.11.1…
mazyu36 Mar 6, 2025
77b6fa9
fix(custom-resources): fix circular dependency when a custom role pro…
GavinZZ Mar 6, 2025
3ed7c4d
chore: remove test branch from analytics-metadata-updater workflow (#…
paulhcsun Mar 7, 2025
34c547c
feat(core): `RemovalPolicies.of(scope)` (#32283)
watany-dev Mar 7, 2025
7213a2f
docs(custom-resources): update `installLatestAwsSdk` docs to specify …
longtv2222 Mar 7, 2025
5eb11d2
chore(ec2): add VPC interface endpoints for WAFV2 (#33685)
yendoooo Mar 7, 2025
7fe033a
chore(deps-dev): bump axios from 1.7.8 to 1.8.2 (#33712)
dependabot[bot] Mar 7, 2025
b48a5ad
chore: bump jsii to 5.7.8 (#33716)
rix0rrr Mar 10, 2025
25619a0
chore(ec2): add VPC interface endpoints for Emr Serverless (#33715)
MASAKIOKUDA-eng Mar 10, 2025
842201c
fix(efs): cannot run an integ test when `transitionToArchivePolicy` i…
mazyu36 Mar 10, 2025
88934f2
chore(rds): deprecate PostgreSQL minor versions 13.11, 13.12, 13.13, …
robertd Mar 10, 2025
759e692
chore(glue-alpha): refactor spark jobs code-related props handling (#…
humanzz Mar 10, 2025
6e0aa13
chore: add undefined type to principalAccount (#33055)
dali546 Mar 10, 2025
68133d4
chore(lambda-nodejs): update integration test for bundling (#33679)
shikha372 Mar 10, 2025
c4fceb2
feat: update L1 CloudFormation resource definitions (#33718)
aws-cdk-automation Mar 10, 2025
d1a8cbe
feat(rds): add MySQL enginge versions 5.7.44(patch), 8.0.41 and 8.4.4…
Tietew Mar 11, 2025
5fcbe2a
chore(ec2): add VPC interface endpoints for Security Lake (#33728)
aki-kii Mar 11, 2025
3de0818
feat(bedrock): support DeepSeek R1 (#33727)
mazyu36 Mar 11, 2025
2b0e26a
chore(release): 2.183.0
Mar 11, 2025
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
Prev Previous commit
Next Next commit
chore(kinesisfirehose-destinations-alpha): backfill missing enums for…
… kinesisfirehose-destinations-alpha (#33633)

### Description of changes
backfill missing enums for kinesisfirehose-destinations-alpha

### Checklist
- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
paulhcsun authored Mar 4, 2025
commit 6ed7a452e261b0033b44d0b2b61b18466d6e6b48
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ export class Compression {
* ZIP
*/
public static readonly ZIP = new Compression('ZIP');
/**
* Uncompressed
*/
public static readonly UNCOMPRESSED = new Compression('UNCOMPRESSED');

/**
* Creates a new Compression instance with a custom value.
Expand Down
Loading