pub struct LogGroup {Show 13 fields
pub name: String,
pub arn: String,
pub creation_time: i64,
pub retention_in_days: Option<i32>,
pub kms_key_id: Option<String>,
pub tags: HashMap<String, String>,
pub log_streams: HashMap<String, LogStream>,
pub stored_bytes: i64,
pub subscription_filters: Vec<SubscriptionFilter>,
pub data_protection_policy: Option<DataProtectionPolicy>,
pub index_policies: Vec<IndexPolicy>,
pub transformer: Option<Transformer>,
pub deletion_protection: bool,
}Fields§
§name: String§arn: String§creation_time: i64§retention_in_days: Option<i32>§kms_key_id: Option<String>§log_streams: HashMap<String, LogStream>§stored_bytes: i64§subscription_filters: Vec<SubscriptionFilter>§data_protection_policy: Option<DataProtectionPolicy>§index_policies: Vec<IndexPolicy>§transformer: Option<Transformer>§deletion_protection: boolAuto Trait Implementations§
impl Freeze for LogGroup
impl RefUnwindSafe for LogGroup
impl Send for LogGroup
impl Sync for LogGroup
impl Unpin for LogGroup
impl UnsafeUnpin for LogGroup
impl UnwindSafe for LogGroup
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