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.106.0 (build e852934)", date="2025-02-17T19:20:37.857Z") @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

    • jsonata

      @Stability(Stable) @NotNull public static BedrockInvokeModel jsonata(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull BedrockInvokeModelJsonataProps props)
      A Step Functions Task using JSONata to invoke a model in Bedrock.

      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.
    • jsonPath

      @Stability(Stable) @NotNull public static BedrockInvokeModel jsonPath(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull BedrockInvokeModelJsonPathProps props)
      A Step Functions Task using JSONPath to invoke a model in Bedrock.

      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.
    • getTaskMetrics

      @Stability(Stable) @Nullable protected TaskMetricsConfig getTaskMetrics()
      Specified by:
      getTaskMetrics in class TaskStateBase
    • getTaskPolicies

      @Stability(Stable) @Nullable protected List<PolicyStatement> getTaskPolicies()
      Specified by:
      getTaskPolicies in class TaskStateBase