@go-to-k/cdkd 0.50.5 → 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.
- package/dist/cli.js +1085 -120
- package/dist/cli.js.map +3 -3
- package/dist/go-to-k-cdkd-0.50.7.tgz +0 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
- package/dist/go-to-k-cdkd-0.50.5.tgz +0 -0
|
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));
|