import type * as transcribe from "@distilled.cloud/aws/transcribe"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `transcribe:UpdateCallAnalyticsCategory` — replace a Call Analytics category's rules. * * Amazon Transcribe batch actions have no resource-level IAM; the host is * granted `transcribe:UpdateCallAnalyticsCategory` on `*`. * * ### Call Analytics Categories * **Example:** Update a Call Analytics Category * ```typescript * // init * const updateCallAnalyticsCategory = yield* AWS.Transcribe.UpdateCallAnalyticsCategory(); * * // runtime * yield* updateCallAnalyticsCategory({ * CategoryName: "long-silence", * Rules: [{ NonTalkTimeFilter: { Threshold: 60000 } }], * }); * ``` * * @binding */ export interface UpdateCallAnalyticsCategory extends Binding.Service Effect.Effect<(request: transcribe.UpdateCallAnalyticsCategoryRequest) => Effect.Effect>> { } export declare const UpdateCallAnalyticsCategory: UpdateCallAnalyticsCategory; //# sourceMappingURL=UpdateCallAnalyticsCategory.d.ts.map