I would like to query with python and boto3 the configured s3 bucket for the detailed billing reports inside the aws account. There is the command describe_report_definitions listed inside the boto3 docs which should return the available reports with the configured s3 bucket. When I run the following code I receive all the time an empty array as response although a s3 bucket is configured an reports are available.
cur_client = boto3.client(
'cur',
'us-east-1'
)
cur_describe_report_definitions_response = cur_client.describe_report_definitions()
print(str(json.dumps(cur_describe_report_definitions_response['ReportDefinitions'])))
#Response
[]