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(cloudwatch): backfill missing enums for cloudwatch #33640

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions packages/aws-cdk-lib/aws-cloudwatch/lib/variable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@ export class DefaultValue {
* A special value for use with search expressions to have the default value be the first value returned from search
*/
public static readonly FIRST = new DefaultValue('__FIRST');
/**
* [PLACEHOLDER COMMENT: TO BE FILLED OUT]
*/
public static readonly LAST = new DefaultValue('last');
Comment on lines 158 to +164
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Based on the difference in the actual value __FIRST vs. last, this may be an incorrectly mapped enum. Adding the do-not-merge tag until we can investigate if this is the case.


/**
* Create a default value
Expand Down
Loading