#[non_exhaustive]pub struct DescribeLoggingStatusOutput { /* private fields */ }
Expand description
Describes the status of logging for a cluster.
Implementations§
source§impl DescribeLoggingStatusOutput
impl DescribeLoggingStatusOutput
sourcepub fn logging_enabled(&self) -> bool
pub fn logging_enabled(&self) -> bool
true
if logging is on, false
if logging is off.
sourcepub fn bucket_name(&self) -> Option<&str>
pub fn bucket_name(&self) -> Option<&str>
The name of the S3 bucket where the log files are stored.
sourcepub fn s3_key_prefix(&self) -> Option<&str>
pub fn s3_key_prefix(&self) -> Option<&str>
The prefix applied to the log file names.
sourcepub fn last_successful_delivery_time(&self) -> Option<&DateTime>
pub fn last_successful_delivery_time(&self) -> Option<&DateTime>
The last time that logs were delivered.
sourcepub fn last_failure_time(&self) -> Option<&DateTime>
pub fn last_failure_time(&self) -> Option<&DateTime>
The last time when logs failed to be delivered.
sourcepub fn last_failure_message(&self) -> Option<&str>
pub fn last_failure_message(&self) -> Option<&str>
The message indicating that logs failed to be delivered.
sourcepub fn log_destination_type(&self) -> Option<&LogDestinationType>
pub fn log_destination_type(&self) -> Option<&LogDestinationType>
The log destination type. An enum with possible values of s3
and cloudwatch
.
sourcepub fn log_exports(&self) -> Option<&[String]>
pub fn log_exports(&self) -> Option<&[String]>
The collection of exported log types. Possible values are connectionlog
, useractivitylog
, and userlog
.
source§impl DescribeLoggingStatusOutput
impl DescribeLoggingStatusOutput
sourcepub fn builder() -> DescribeLoggingStatusOutputBuilder
pub fn builder() -> DescribeLoggingStatusOutputBuilder
Creates a new builder-style object to manufacture DescribeLoggingStatusOutput
.
Trait Implementations§
source§impl Clone for DescribeLoggingStatusOutput
impl Clone for DescribeLoggingStatusOutput
source§fn clone(&self) -> DescribeLoggingStatusOutput
fn clone(&self) -> DescribeLoggingStatusOutput
Returns a copy 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 DescribeLoggingStatusOutput
impl Debug for DescribeLoggingStatusOutput
source§impl PartialEq<DescribeLoggingStatusOutput> for DescribeLoggingStatusOutput
impl PartialEq<DescribeLoggingStatusOutput> for DescribeLoggingStatusOutput
source§fn eq(&self, other: &DescribeLoggingStatusOutput) -> bool
fn eq(&self, other: &DescribeLoggingStatusOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeLoggingStatusOutput
impl RequestId for DescribeLoggingStatusOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeLoggingStatusOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeLoggingStatusOutput
impl Send for DescribeLoggingStatusOutput
impl Sync for DescribeLoggingStatusOutput
impl Unpin for DescribeLoggingStatusOutput
impl UnwindSafe for DescribeLoggingStatusOutput
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