API Reference
    Preparing search index...

    Parameter for a tool function in the Bedrock Agent Function Resolver. This is used to define the structure of parameters in tool functions.

    type Parameter = {
        name: string;
        type: "string" | "number" | "integer" | "boolean" | "array";
        value: string;
    }
    Index

    Properties

    Properties

    name: string
    type: "string" | "number" | "integer" | "boolean" | "array"
    value: string