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