AWS Bedrock Right pb when testing prompt flow

0

In AWS Bedrock when I try to test the Prompt flow I have an error message: Enter image description here Where can I check what permission I need to make it work?

gefragt vor 2 Monaten187 Aufrufe
1 Antwort
2

Hello.

When I set up a prompt flow in my AWS account and checked the automatically created IAM role, the following IAM policy was attached.
Therefore, I think it is necessary to configure the IAM role to at least allow "bedrock:GetFlow" and "bedrock:InvokeModel".

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "bedrock:GetFlow",
            "Resource": [
                "arn:aws:bedrock:us-east-1:111111111111:flow/YYYYYYYYYY"
            ]
        }
    ]
}
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "bedrock:InvokeModel",
            "Resource": [
                "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-text-premier-v1:0"
            ]
        }
    ]
}
profile picture
EXPERTE
beantwortet vor 2 Monaten
profile picture
EXPERTE
überprüft vor 2 Monaten
profile pictureAWS
EXPERTE
überprüft vor 2 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen