Struct aws_sdk_securityhub::model::AwsElbLoadBalancerAccessLog [−][src]
#[non_exhaustive]pub struct AwsElbLoadBalancerAccessLog {
pub emit_interval: i32,
pub enabled: bool,
pub s3_bucket_name: Option<String>,
pub s3_bucket_prefix: Option<String>,
}
Expand description
Contains information about the access log configuration for the load balancer.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.emit_interval: i32
The interval in minutes for publishing the access logs.
You can publish access logs either every 5 minutes or every 60 minutes.
enabled: bool
Indicates whether access logs are enabled for the load balancer.
s3_bucket_name: Option<String>
The name of the S3 bucket where the access logs are stored.
s3_bucket_prefix: Option<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.
Implementations
The interval in minutes for publishing the access logs.
You can publish access logs either every 5 minutes or every 60 minutes.
The name of the S3 bucket where the access logs are stored.
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.
Creates a new builder-style object to manufacture AwsElbLoadBalancerAccessLog
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AwsElbLoadBalancerAccessLog
impl Send for AwsElbLoadBalancerAccessLog
impl Sync for AwsElbLoadBalancerAccessLog
impl Unpin for AwsElbLoadBalancerAccessLog
impl UnwindSafe for AwsElbLoadBalancerAccessLog
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more