import type * as bda from "@distilled.cloud/aws/bedrock-data-automation"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Blueprint } from "./Blueprint.ts"; /** * `CreateBlueprintVersion` request with `blueprintArn` injected from the * bound {@link Blueprint}. */ export interface CreateBlueprintVersionRequest extends Omit { } /** * Runtime binding for the `CreateBlueprintVersion` operation (IAM action * `bedrock:CreateBlueprintVersion` on the blueprint ARN) — snapshot the * bound blueprint's current schema as an immutable version from a deployed * Function. * * Provide the implementation with * `Effect.provide(AWS.BedrockDataAutomation.CreateBlueprintVersionHttp)`. * ### Blueprint Management * **Example:** Snapshot The Blueprint * ```typescript * // deploy time — bind the blueprint * const createVersion = * yield* AWS.BedrockDataAutomation.CreateBlueprintVersion(blueprint); * * // runtime — freeze the current schema as a new version * const { blueprint: version } = yield* createVersion({}); * yield* Effect.log(`created version ${version.blueprintVersion}`); * ``` * * @binding */ export interface CreateBlueprintVersion extends Binding.Service Effect.Effect<(request: CreateBlueprintVersionRequest) => Effect.Effect>> { } export declare const CreateBlueprintVersion: CreateBlueprintVersion; //# sourceMappingURL=CreateBlueprintVersion.d.ts.map