You can disable S3 Transfer Acceleration using the AWS Management Console, AWS CLI, or SDKs.
AWS CLI Example:
aws s3api put-bucket-accelerate-configuration --bucket my-bucket --accelerate-configuration Status=Suspended
AWS SDK for Python (Boto3) Example:
import boto3
s3 = boto3.client('s3')
response = s3.put_bucket_accelerate_configuration(
Bucket='my-bucket',
AccelerateConfiguration={
'Status': 'Suspended'
}
)
print(response)