pub struct Logging {
pub log_bucket: String,
pub log_object_prefix: String,
}
Expand description
Contains information of where and how access logs to this bucket are maintained.
Fields§
§log_bucket: String
The destination bucket where the current bucket’s logs should be placed.
log_object_prefix: String
A prefix for log object names. The default prefix is the bucket name.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Logging
impl<'de> Deserialize<'de> for Logging
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Logging
Auto Trait Implementations§
impl Freeze for Logging
impl RefUnwindSafe for Logging
impl Send for Logging
impl Sync for Logging
impl Unpin for Logging
impl UnwindSafe for Logging
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