-
Notifications
You must be signed in to change notification settings - Fork 4k
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: add undefined type to principalAccount #33055
base: main
Are you sure you want to change the base?
Conversation
db6bb3a
to
f0d99ef
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #33055 +/- ##
=======================================
Coverage 82.24% 82.24%
=======================================
Files 119 119
Lines 6875 6875
Branches 1161 1161
=======================================
Hits 5654 5654
Misses 1118 1118
Partials 103 103
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
Hi @dali546 ✋ |
@lpizzinidev @dali546 thanks for the PR. I added some new update in the discussion post #23885 (comment). Can you let me know your use case of the |
@GavinZZ the use case is even just creating simple roles using a principal, it causes the error eg const role = new Role(this, "role", {
assumedBy: new WebIdentityPrincipal("accounts.google.com", {}),
});
The proposed workaround of using the spread operator doesn't help here either because |
f0d99ef
to
dcda22d
Compare
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Reason for this change
When using TypeScript option exactOptionalPropertyTypes: true
we get the following error. All implementations of
IPrincipalhave the type
string | undefined` so this is change will apply it at the baseDescription of changes
Changed type definition of IPrincipal
principalAccount
Describe any new or updated permissions being added
N/A
Description of how you validated changes
Checklist
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license