Skip to content

CreateApplicationPresignedUrl

Source: src/AWS/KinesisAnalyticsV2/CreateApplicationPresignedUrl.ts

Runtime binding for kinesisanalytics:CreateApplicationPresignedUrl — mints a short-lived URL to the bound application’s extension (the Flink dashboard, or the Zeppelin UI of a Studio notebook), e.g. to hand an operator a dashboard link from an internal tool. The URL must be used within 3 minutes; the session it opens lives for SessionExpirationDurationInSeconds (default 12 hours).

const createPresignedUrl = yield* AWS.KinesisAnalyticsV2.CreateApplicationPresignedUrl(app);
const { AuthorizedUrl } = yield* createPresignedUrl({
UrlType: "FLINK_DASHBOARD_URL",
SessionExpirationDurationInSeconds: 1800,
});