You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A large number of expressions in the codebase make assumptions about the keys present in AWS responses and do not check if those keys exist before accessing them. This can lead to runtime exceptions if the key does not exist in the response.
For example, in the function get_s3_params() in aws/base_classes.py, it is assumed that PolicyName and Arn are present in the response obtained from IAMClient.get_paginator("list_policies"). These keys are not required in the response, so the assignment may result in a runtime exception. Refer to the AWS API documentation for IAM's Policy response, or to the boto3 stub documentation:
A large number of expressions in the codebase make assumptions about the keys present in AWS responses and do not check if those keys exist before accessing them. This can lead to runtime exceptions if the key does not exist in the response.
For example, in the function
get_s3_params()
inaws/base_classes.py
, it is assumed thatPolicyName
andArn
are present in the response obtained fromIAMClient.get_paginator("list_policies")
. These keys are not required in the response, so the assignment may result in a runtime exception. Refer to the AWS API documentation for IAM'sPolicy
response, or to the boto3 stub documentation:The text was updated successfully, but these errors were encountered: