Class BedrockInvokeModel

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IChainable, INextable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-05T03:43:52.029Z") @Stability(Stable) public class BedrockInvokeModel extends TaskStateBase
A Step Functions Task to invoke a model in Bedrock.

Example:

 import software.amazon.awscdk.services.bedrock.*;
 FoundationModel model = FoundationModel.fromFoundationModelId(this, "Model", FoundationModelIdentifier.AMAZON_TITAN_TEXT_G1_EXPRESS_V1);
 BedrockInvokeModel task = BedrockInvokeModel.Builder.create(this, "Prompt Model")
         .model(model)
         .body(TaskInput.fromObject(Map.of(
                 "inputText", "Generate a list of five first names.",
                 "textGenerationConfig", Map.of(
                         "maxTokenCount", 100,
                         "temperature", 1))))
         .resultSelector(Map.of(
                 "names", JsonPath.stringAt("$.Body.results[0].outputText")))
         .build();
 
  • Constructor Details

    • BedrockInvokeModel

      protected BedrockInvokeModel(software.amazon.jsii.JsiiObjectRef objRef)
    • BedrockInvokeModel

      protected BedrockInvokeModel(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • BedrockInvokeModel

      @Stability(Stable) public BedrockInvokeModel(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull BedrockInvokeModelProps props)
      Parameters:
      scope - This parameter is required.
      id - Descriptive identifier for this chainable. This parameter is required.
      props - This parameter is required.
  • Method Details