Struct aws_sdk_ec2::types::VpnTunnelLogOptions
source · #[non_exhaustive]pub struct VpnTunnelLogOptions {
pub cloud_watch_log_options: Option<CloudWatchLogOptions>,
}
Expand description
Options for logging VPN tunnel activity.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.cloud_watch_log_options: Option<CloudWatchLogOptions>
Options for sending VPN tunnel logs to CloudWatch.
Implementations§
source§impl VpnTunnelLogOptions
impl VpnTunnelLogOptions
sourcepub fn cloud_watch_log_options(&self) -> Option<&CloudWatchLogOptions>
pub fn cloud_watch_log_options(&self) -> Option<&CloudWatchLogOptions>
Options for sending VPN tunnel logs to CloudWatch.
source§impl VpnTunnelLogOptions
impl VpnTunnelLogOptions
sourcepub fn builder() -> VpnTunnelLogOptionsBuilder
pub fn builder() -> VpnTunnelLogOptionsBuilder
Creates a new builder-style object to manufacture VpnTunnelLogOptions
.
Trait Implementations§
source§impl Clone for VpnTunnelLogOptions
impl Clone for VpnTunnelLogOptions
source§fn clone(&self) -> VpnTunnelLogOptions
fn clone(&self) -> VpnTunnelLogOptions
Returns a copy 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 VpnTunnelLogOptions
impl Debug for VpnTunnelLogOptions
source§impl PartialEq<VpnTunnelLogOptions> for VpnTunnelLogOptions
impl PartialEq<VpnTunnelLogOptions> for VpnTunnelLogOptions
source§fn eq(&self, other: &VpnTunnelLogOptions) -> bool
fn eq(&self, other: &VpnTunnelLogOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VpnTunnelLogOptions
Auto Trait Implementations§
impl RefUnwindSafe for VpnTunnelLogOptions
impl Send for VpnTunnelLogOptions
impl Sync for VpnTunnelLogOptions
impl Unpin for VpnTunnelLogOptions
impl UnwindSafe for VpnTunnelLogOptions
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