2b5d29ef67
Scripts, flows, apps, resources and resource types from the Windmill workspace. API token excluded via .gitignore (config/).
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
description: AWS Bedrock resource type
|
|
format_extension: null
|
|
is_fileset: false
|
|
schema:
|
|
$schema: https://json-schema.org/draft/2020-12/schema
|
|
type: object
|
|
order:
|
|
- region
|
|
- apiKey
|
|
properties:
|
|
apiKey:
|
|
type: string
|
|
description: AWS bedrock API key (simplest, no need for awsAccessKeyId and
|
|
awsSecretAccessKey)
|
|
default: ''
|
|
nullable: true
|
|
password: true
|
|
awsAccessKeyId:
|
|
type: string
|
|
description: AWS IAM access key ID (alternative to apiKey)
|
|
default: ''
|
|
nullable: true
|
|
password: true
|
|
awsSecretAccessKey:
|
|
type: string
|
|
description: AWS IAM secret access key (alternative to apiKey)
|
|
default: ''
|
|
nullable: true
|
|
password: true
|
|
awsSessionToken:
|
|
type: string
|
|
description: AWS IAM session token (alternative to apiKey). You will need to
|
|
refresh this token periodically.
|
|
default: ''
|
|
nullable: true
|
|
password: true
|
|
region:
|
|
type: string
|
|
description: AWS Bedrock region (e.g., us-east-1)
|
|
default: ''
|
|
nullable: false
|
|
required:
|
|
- region
|