pub struct LoggingStatus {
pub bucket_name: Option<String>,
pub last_failure_message: Option<String>,
pub last_failure_time: Option<String>,
pub last_successful_delivery_time: Option<String>,
pub logging_enabled: Option<bool>,
pub s3_key_prefix: Option<String>,
}
Expand description
Describes the status of logging for a cluster.
Fields§
§bucket_name: Option<String>
The name of the S3 bucket where the log files are stored.
last_failure_message: Option<String>
The message indicating that logs failed to be delivered.
last_failure_time: Option<String>
The last time when logs failed to be delivered.
last_successful_delivery_time: Option<String>
The last time that logs were delivered.
logging_enabled: Option<bool>
true
if logging is on, false
if logging is off.
s3_key_prefix: Option<String>
The prefix applied to the log file names.
Trait Implementations§
Source§impl Clone for LoggingStatus
impl Clone for LoggingStatus
Source§fn clone(&self) -> LoggingStatus
fn clone(&self) -> LoggingStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LoggingStatus
impl Debug for LoggingStatus
Source§impl Default for LoggingStatus
impl Default for LoggingStatus
Source§fn default() -> LoggingStatus
fn default() -> LoggingStatus
Returns the “default value” for a type. Read more
Source§impl PartialEq for LoggingStatus
impl PartialEq for LoggingStatus
impl StructuralPartialEq for LoggingStatus
Auto Trait Implementations§
impl Freeze for LoggingStatus
impl RefUnwindSafe for LoggingStatus
impl Send for LoggingStatus
impl Sync for LoggingStatus
impl Unpin for LoggingStatus
impl UnwindSafe for LoggingStatus
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