Disable access logs for your Classic Load Balancer
You can disable access logs for your load balancer at any time. After you disable access logs, your access logs remain in your Amazon S3 until you delete the them. For more information, see Working with S3 buckets in the Amazon S3 User Guide.
To disable access logs for your load balancer using the console
Open the Amazon EC2 console at https://console.aws.amazon.com/ec2/
. -
On the navigation pane, under Load Balancing, choose Load Balancers.
-
Select the name of your load balancer to open its details page.
-
On the Attributes tab, choose Edit.
-
On the Edit load balancer attributes page, in the Monitoring section, disable Access logs.
To disable access logs using the AWS CLI
Use the following modify-load-balancer-attributes command to disable access logs:
aws elb modify-load-balancer-attributes --load-balancer-name
my-loadbalancer
--load-balancer-attributes "{\"AccessLog\":{\"Enabled\":false}}"
The following is an example response:
{
"LoadBalancerName": "my-loadbalancer",
"LoadBalancerAttributes": {
"AccessLog": {
"S3BucketName": "amzn-s3-demo-loadbalancer-logs",
"EmitInterval": 60,
"Enabled": false,
"S3BucketPrefix": "my-app"
}
}
}