Configuration details for an AWS Bedrock provider.

interface AWSBedrockConfig {
    access_key_id: string;
    base_url?: string;
    region: string;
    secret_access_key: string;
}

Properties

access_key_id: string

The AWS access key ID required to authenticate with the Bedrock API.

base_url?: string

Overrides the default AWS Bedrock Runtime API endpoint with the provided URL.

region: string

The AWS region where the Bedrock API is hosted.

secret_access_key: string

The AWS secret access key required to authenticate with the Bedrock API.