pub struct EnableLoggingMessage {
pub bucket_name: String,
pub cluster_identifier: String,
pub s3_key_prefix: Option<String>,
}
Expand description
Fields§
§bucket_name: String
The name of an existing S3 bucket where the log files are to be stored.
Constraints:
-
Must be in the same region as the cluster
-
The cluster must have read bucket and put object permissions
cluster_identifier: String
The identifier of the cluster on which logging is to be started.
Example: examplecluster
s3_key_prefix: Option<String>
The prefix applied to the log file names.
Constraints:
-
Cannot exceed 512 characters
-
Cannot contain spaces( ), double quotes ("), single quotes ('), a backslash (), or control characters. The hexadecimal codes for invalid characters are:
-
x00 to x20
-
x22
-
x27
-
x5c
-
x7f or larger
-
Trait Implementations§
Source§impl Clone for EnableLoggingMessage
impl Clone for EnableLoggingMessage
Source§fn clone(&self) -> EnableLoggingMessage
fn clone(&self) -> EnableLoggingMessage
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 EnableLoggingMessage
impl Debug for EnableLoggingMessage
Source§impl Default for EnableLoggingMessage
impl Default for EnableLoggingMessage
Source§fn default() -> EnableLoggingMessage
fn default() -> EnableLoggingMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for EnableLoggingMessage
impl PartialEq for EnableLoggingMessage
impl StructuralPartialEq for EnableLoggingMessage
Auto Trait Implementations§
impl Freeze for EnableLoggingMessage
impl RefUnwindSafe for EnableLoggingMessage
impl Send for EnableLoggingMessage
impl Sync for EnableLoggingMessage
impl Unpin for EnableLoggingMessage
impl UnwindSafe for EnableLoggingMessage
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