Sign in
agent:

List all Amazon S3 buckets in the region us-east-2.

There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.

This script lists all Amazon S3 buckets in the specified region.

import boto3 import json def list_s3_buckets(region_name): s3_client = boto3.client('s3', region_name=region_name, aws_access_key_id=getEnvVar('AWS_ACCESS_KEY_ID'), aws_secret_access_key=getEnvVar('AWS_SECRET_ACCESS_KEY')) response = s3_client.list_buckets() bucket_names = [bucket['Name'] for bucket in response['Buckets']] print(json.dumps(bucket_names, indent=4, default=str)) return bucket_names bucket_names = list_s3_buckets(region_name)
copied