Class: Aws::SecurityHub::Types::AwsElbLoadBalancerAccessLog
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsElbLoadBalancerAccessLog
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
When making an API call, you may pass AwsElbLoadBalancerAccessLog data as a hash:
{
emit_interval: 1,
enabled: false,
s3_bucket_name: "NonEmptyString",
s3_bucket_prefix: "NonEmptyString",
}
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.
4882 4883 4884 4885 4886 4887 4888 4889 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 4882 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.
4882 4883 4884 4885 4886 4887 4888 4889 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 4882 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.
4882 4883 4884 4885 4886 4887 4888 4889 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 4882 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.
4882 4883 4884 4885 4886 4887 4888 4889 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 4882 class AwsElbLoadBalancerAccessLog < Struct.new( :emit_interval, :enabled, :s3_bucket_name, :s3_bucket_prefix) SENSITIVE = [] include Aws::Structure end |