Aws Bedrock

AWS Bedrock resource type

json · 47 lines
1
{
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
  "order": [
4
    "region",
5
    "apiKey"
6
  ],
7
  "properties": {
8
    "apiKey": {
9
      "default": "",
10
      "description": "AWS bedrock API key (simplest, no need for awsAccessKeyId and awsSecretAccessKey)",
11
      "nullable": true,
12
      "password": true,
13
      "type": "string"
14
    },
15
    "awsAccessKeyId": {
16
      "default": "",
17
      "description": "AWS IAM access key ID (alternative to apiKey)",
18
      "nullable": true,
19
      "password": true,
20
      "type": "string"
21
    },
22
    "awsSecretAccessKey": {
23
      "default": "",
24
      "description": "AWS IAM secret access key (alternative to apiKey)",
25
      "nullable": true,
26
      "password": true,
27
      "type": "string"
28
    },
29
    "awsSessionToken": {
30
      "default": "",
31
      "description": "AWS IAM session token (alternative to apiKey). You will need to refresh this token periodically.",
32
      "nullable": true,
33
      "password": true,
34
      "type": "string"
35
    },
36
    "region": {
37
      "default": "",
38
      "description": "AWS Bedrock region (e.g., us-east-1)",
39
      "nullable": false,
40
      "type": "string"
41
    }
42
  },
43
  "required": [
44
    "region"
45
  ],
46
  "type": "object"
47
}
Orvanta Hub — community scripts, flows, apps & resource types.