@go-to-k/cdkd 0.50.6 → 0.50.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/dist/index.js CHANGED
@@ -7860,10 +7860,10 @@ var IAMRoleProvider = class {
7860
7860
  const updateParams = {
7861
7861
  RoleName: physicalId
7862
7862
  };
7863
- if (properties["Description"]) {
7863
+ if (properties["Description"] !== void 0) {
7864
7864
  updateParams.Description = properties["Description"];
7865
7865
  }
7866
- if (properties["MaxSessionDuration"]) {
7866
+ if (properties["MaxSessionDuration"] !== void 0) {
7867
7867
  updateParams.MaxSessionDuration = properties["MaxSessionDuration"];
7868
7868
  }
7869
7869
  await this.iamClient.send(new UpdateRoleCommand(updateParams));