pub struct LogsConfig {
pub skip_signature_validation: bool,
pub default_region: String,
pub account_id: String,
pub host: String,
pub port: u16,
}Expand description
CloudWatch Logs service configuration.
Fields§
§skip_signature_validation: boolSkip signature validation (default: true for local dev).
default_region: StringDefault AWS region.
account_id: StringDefault AWS account ID.
host: StringHost to bind to.
port: u16Port to listen on.
Implementations§
Source§impl LogsConfig
impl LogsConfig
Trait Implementations§
Source§impl Clone for LogsConfig
impl Clone for LogsConfig
Source§fn clone(&self) -> LogsConfig
fn clone(&self) -> LogsConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LogsConfig
impl Debug for LogsConfig
Auto Trait Implementations§
impl Freeze for LogsConfig
impl RefUnwindSafe for LogsConfig
impl Send for LogsConfig
impl Sync for LogsConfig
impl Unpin for LogsConfig
impl UnsafeUnpin for LogsConfig
impl UnwindSafe for LogsConfig
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