Struct aws_sdk_redshift::output::DisableLoggingOutput
source · [−]#[non_exhaustive]pub struct DisableLoggingOutput {
pub logging_enabled: bool,
pub bucket_name: Option<String>,
pub s3_key_prefix: Option<String>,
pub last_successful_delivery_time: Option<DateTime>,
pub last_failure_time: Option<DateTime>,
pub last_failure_message: Option<String>,
}
Expand description
Describes the status of logging for a cluster.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.logging_enabled: bool
true
if logging is on, false
if logging is off.
bucket_name: Option<String>
The name of the S3 bucket where the log files are stored.
s3_key_prefix: Option<String>
The prefix applied to the log file names.
last_successful_delivery_time: Option<DateTime>
The last time that logs were delivered.
last_failure_time: Option<DateTime>
The last time when logs failed to be delivered.
last_failure_message: Option<String>
The message indicating that logs failed to be delivered.
Implementations
true
if logging is on, false
if logging is off.
The name of the S3 bucket where the log files are stored.
The prefix applied to the log file names.
The last time that logs were delivered.
The last time when logs failed to be delivered.
The message indicating that logs failed to be delivered.
Creates a new builder-style object to manufacture DisableLoggingOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DisableLoggingOutput
impl Send for DisableLoggingOutput
impl Sync for DisableLoggingOutput
impl Unpin for DisableLoggingOutput
impl UnwindSafe for DisableLoggingOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more