We are excited to announce the developer preview of our new API documentation for AWS SDK for JavaScript v3. Please follow instructions on the landing page to leave us your feedback.
This package provides a presigner based on signature V4 that will attempt to generate signed url for polly audio.
Example Usage:
import { Polly, PollyClient } from "@aws-sdk/client-polly";
import { getSynthesizeSpeechUrl } from "@aws-sdk/polly-request-presigner";
const synthesizeSpeechParams = {
Text: "Hello world, the polly presigner is really cool!",
OutputFormat: "mp3",
VoiceId: "Kimberly",
};
// Synthesize with full polly.
(async () => {
let url = await getSynthesizeSpeechUrl({
client: new Polly({ region: "us-east-1" }),
params: synthesizeSpeechParams,
});
console.log(url);
})();
// Synthesize with polly client.
(async () => {
let url = await getSynthesizeSpeechUrl({
client: new PollyClient({ region: "us-east-1" }),
params: synthesizeSpeechParams,
});
console.log(url);
})();