pub struct AccessLog {
pub emit_interval: Option<i64>,
pub enabled: bool,
pub s3_bucket_name: Option<String>,
pub s3_bucket_prefix: Option<String>,
}Expand description
Information about the AccessLog attribute.
Fields§
§emit_interval: Option<i64>The interval for publishing the access logs. You can specify an interval of either 5 minutes or 60 minutes.
Default: 60 minutes
enabled: boolSpecifies whether access logs are enabled for the load balancer.
s3_bucket_name: Option<String>The name of the Amazon S3 bucket where the access logs are stored.
s3_bucket_prefix: Option<String>The logical hierarchy you created for your Amazon S3 bucket, for example my-bucket-prefix/prod. If the prefix is not provided, the log is placed at the root level of the bucket.
Trait Implementations§
impl StructuralPartialEq for AccessLog
Auto Trait Implementations§
impl Freeze for AccessLog
impl RefUnwindSafe for AccessLog
impl Send for AccessLog
impl Sync for AccessLog
impl Unpin for AccessLog
impl UnwindSafe for AccessLog
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more