We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3f0754 commit fb4e977Copy full SHA for fb4e977
packages/middleware-sdk-ec2/src/index.ts
@@ -85,6 +85,9 @@ export function copySnapshotPresignedUrlMiddleware(options: PreviouslyResolved):
85
Action: "CopySnapshot",
86
Version: version,
87
DestinationRegion: destinationRegion,
88
+ // Encrypted must be string instead of boolean
89
+ // because we need to sign the serialized form.
90
+ Encrypted: input.Encrypted === true || input.Encrypted === "true" ? "true" : "false",
91
},
92
});
93
0 commit comments