agent: |
BlqaOIdbRmVDQngbUzdnTabulate the results of the compliance evaluation for AWS IAM users.
Tabulate the results of the compliance evaluation for AWS IAM users.
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
Tabulates the compliance evaluation results for AWS IAM users, marking non-compliant users.
inputs
outputs
table = context.newtable()
table.num_rows = len(non_compliant_users) + 1 # Including header row
table.num_cols = 2
table.title = "AWS IAM Users Compliance Evaluation"
table.has_header_row = True
table.setval(0, 0, "UserName")
table.setval(0, 1, "Compliance Status")
for idx, user in enumerate(non_compliant_users, start=1):
table.setval(idx, 0, user)
table.setval(idx, 1, "NON_COMPLIANT")
print("Compliance evaluation results have been tabulated successfully.")
copied