Class: Aws::SecurityHub::Types::AwsElbLoadBalancerAccessLog
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsElbLoadBalancerAccessLog
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
Contains information about the access log configuration for the load balancer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#emit_interval ⇒ Integer
The interval in minutes for publishing the access logs.
-
#enabled ⇒ Boolean
Indicates whether access logs are enabled for the load balancer.
-
#s3_bucket_name ⇒ String
The name of the S3 bucket where the access logs are stored.
-
#s3_bucket_prefix ⇒ String
The logical hierarchy that was created for the S3 bucket.
Instance Attribute Details
#emit_interval ⇒ Integer
The interval in minutes for publishing the access logs.
You can publish access logs either every 5 minutes or every 60 minutes.
12518 12519 12520 12521 12522 12523 12524 12525 |
# File 'lib/aws-sdk-securityhub/types.rb', line 12518 class AwsElbLoadBalancerAccessLog < Struct.new( :emit_interval, :enabled, :s3_bucket_name, :s3_bucket_prefix) SENSITIVE = [] include Aws::Structure end |
#enabled ⇒ Boolean
Indicates whether access logs are enabled for the load balancer.
12518 12519 12520 12521 12522 12523 12524 12525 |
# File 'lib/aws-sdk-securityhub/types.rb', line 12518 class AwsElbLoadBalancerAccessLog < Struct.new( :emit_interval, :enabled, :s3_bucket_name, :s3_bucket_prefix) SENSITIVE = [] include Aws::Structure end |
#s3_bucket_name ⇒ String
The name of the S3 bucket where the access logs are stored.
12518 12519 12520 12521 12522 12523 12524 12525 |
# File 'lib/aws-sdk-securityhub/types.rb', line 12518 class AwsElbLoadBalancerAccessLog < Struct.new( :emit_interval, :enabled, :s3_bucket_name, :s3_bucket_prefix) SENSITIVE = [] include Aws::Structure end |
#s3_bucket_prefix ⇒ String
The logical hierarchy that was created for the S3 bucket.
If a prefix is not provided, the log is placed at the root level of the bucket.
12518 12519 12520 12521 12522 12523 12524 12525 |
# File 'lib/aws-sdk-securityhub/types.rb', line 12518 class AwsElbLoadBalancerAccessLog < Struct.new( :emit_interval, :enabled, :s3_bucket_name, :s3_bucket_prefix) SENSITIVE = [] include Aws::Structure end |