翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。
この機能に Amazon Lex V2 コンソールからアクセスするには、コンソールのロールに bedrock:ListFoundationModels
権限が必要です。
ボットに関連付けられた IAM ロールには、AMAZON.QnAIntent
に必要な以下の権限を設定する必要があります。ボットロールには bedrock:InvokeModel
を呼び出す権限が必要です。また、ボットの AMAZON.QnAIntent
に指定するデータストアごとにステートメントをアタッチする必要があります (以下のポリシーの Permissions to access Amazon Kendra index
、Permissions to access OpenSearch Service index
、Permissions to access knowledge base in Amazon Bedrock
ステートメントを参照してください)。この機能を Amazon Lex コンソールで有効にすると、Amazon Lex が生成したサービスリンクロールをボットで使用している場合、ポリシーは自動的にボットロールに追加されます。
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Permissions to invoke Amazon Bedrock foundation models",
"Effect": "Allow",
"Action": [
"bedrock:InvokeModel"
],
"Resource": [
"arn:aws:bedrock:region
::foundation-model/model-id
"
]
},
{
"Sid": "Permissions to access Amazon Kendra index",
"Effect": "Allow",
"Action": [
"kendra:Query",
"kendra:Retrieve"
],
"Resource": [
"arn:aws:kendra:region
:account-id
:index/kendra-index
"
]
},
{
"Sid": "Permissions to access OpenSearch Service index",
"Effect": "Allow",
"Action": [
"es:ESHttpGet",
"es:ESHttpPost"
],
"Resource": [
"arn:aws:es:region
:account-id
:domain/domain-name
/index-name
/_search"
]
},
{
"Sid": "Permissions to access knowledge base in Amazon Bedrock",
"Effect": "Allow",
"Action": [
"bedrock:Retrieve"
],
"Resource": [
"arn:aws:bedrock:region
:account-id
:knowledge-base/knowledge-base
"
]
}
]
}