pub struct ConnectionLogResponseOptions {
pub cloudwatch_log_group: Option<String>,
pub cloudwatch_log_stream: Option<String>,
pub enabled: Option<bool>,
}Expand description
Information about the client connection logging options for a Client VPN endpoint.
Fields§
§cloudwatch_log_group: Option<String>The name of the Amazon CloudWatch Logs log group to which connection logging data is published.
cloudwatch_log_stream: Option<String>The name of the Amazon CloudWatch Logs log stream to which connection logging data is published.
enabled: Option<bool>Indicates whether client connection logging is enabled for the Client VPN endpoint.
Trait Implementations§
Source§impl Clone for ConnectionLogResponseOptions
impl Clone for ConnectionLogResponseOptions
Source§fn clone(&self) -> ConnectionLogResponseOptions
fn clone(&self) -> ConnectionLogResponseOptions
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 ConnectionLogResponseOptions
impl Debug for ConnectionLogResponseOptions
Source§impl Default for ConnectionLogResponseOptions
impl Default for ConnectionLogResponseOptions
Source§fn default() -> ConnectionLogResponseOptions
fn default() -> ConnectionLogResponseOptions
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ConnectionLogResponseOptions
Auto Trait Implementations§
impl Freeze for ConnectionLogResponseOptions
impl RefUnwindSafe for ConnectionLogResponseOptions
impl Send for ConnectionLogResponseOptions
impl Sync for ConnectionLogResponseOptions
impl Unpin for ConnectionLogResponseOptions
impl UnsafeUnpin for ConnectionLogResponseOptions
impl UnwindSafe for ConnectionLogResponseOptions
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