AccessDeniedException: An error occurred (AccessDeniedException) when calling the ListTables operation: Team is not associated to an AWS Account

0

AWS Honeycode API service call from AWS Glue python code using boto3 is giving issue.

Sharing the code snippet below:

import boto3

honeycode_client = boto3.client('honeycode')
response = honeycode_client.list_tables(workbookId = 'eb59751e-ef06-4de0-a4a9-c355e49308ab')

NOTE: workbook and tables are already created in Honeycode. Role applied to glue job is having below policies:

AmazonS3FullAccess

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "s3:*",
                "s3-object-lambda:*"
            ],
            "Resource": "*"
        }
    ]
}

AmazonHoneycodeFullAccess

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Action": [
                "honeycode:*"
            ],
            "Resource": "*",
            "Effect": "Allow"
        }
    ]
}

Above code snippet is giving below error:

AccessDeniedException: An error occurred (AccessDeniedException) when calling the ListTables operation: Team is not associated to an AWS Account

what extra access is required for above mentioned access issue?

답변 없음

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠