CopyBlueprintStage
Source:
src/AWS/BedrockDataAutomation/CopyBlueprintStage.ts
Runtime binding for the CopyBlueprintStage operation (IAM action
bedrock:CopyBlueprintStage on the blueprint ARN) — copy the bound
blueprint between its DEVELOPMENT and LIVE stages from a deployed
Function (e.g. promote a tuned development schema to live).
Provide the implementation with
Effect.provide(AWS.BedrockDataAutomation.CopyBlueprintStageHttp).
Blueprint Management
Section titled “Blueprint Management”// deploy time — bind the blueprintconst copyStage = yield* AWS.BedrockDataAutomation.CopyBlueprintStage(blueprint);
// runtime — promote the development copyyield* copyStage({ sourceStage: "DEVELOPMENT", targetStage: "LIVE" });