#[non_exhaustive]pub struct VirtualGatewayFileAccessLog {
pub path: String,
pub format: Option<LoggingFormat>,
}
Expand description
An object that represents an access log file.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.path: String
The file path to write access logs to. You can use /dev/stdout
to send access logs to standard out and configure your Envoy container to use a log driver, such as awslogs
, to export the access logs to a log storage service such as Amazon CloudWatch Logs. You can also specify a path in the Envoy container's file system to write the files to disk.
format: Option<LoggingFormat>
The specified format for the virtual gateway access logs. It can be either json_format
or text_format
.
Implementations§
source§impl VirtualGatewayFileAccessLog
impl VirtualGatewayFileAccessLog
sourcepub fn path(&self) -> &str
pub fn path(&self) -> &str
The file path to write access logs to. You can use /dev/stdout
to send access logs to standard out and configure your Envoy container to use a log driver, such as awslogs
, to export the access logs to a log storage service such as Amazon CloudWatch Logs. You can also specify a path in the Envoy container's file system to write the files to disk.
sourcepub fn format(&self) -> Option<&LoggingFormat>
pub fn format(&self) -> Option<&LoggingFormat>
The specified format for the virtual gateway access logs. It can be either json_format
or text_format
.
source§impl VirtualGatewayFileAccessLog
impl VirtualGatewayFileAccessLog
sourcepub fn builder() -> VirtualGatewayFileAccessLogBuilder
pub fn builder() -> VirtualGatewayFileAccessLogBuilder
Creates a new builder-style object to manufacture VirtualGatewayFileAccessLog
.
Trait Implementations§
source§impl Clone for VirtualGatewayFileAccessLog
impl Clone for VirtualGatewayFileAccessLog
source§fn clone(&self) -> VirtualGatewayFileAccessLog
fn clone(&self) -> VirtualGatewayFileAccessLog
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for VirtualGatewayFileAccessLog
impl Debug for VirtualGatewayFileAccessLog
source§impl PartialEq for VirtualGatewayFileAccessLog
impl PartialEq for VirtualGatewayFileAccessLog
source§fn eq(&self, other: &VirtualGatewayFileAccessLog) -> bool
fn eq(&self, other: &VirtualGatewayFileAccessLog) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VirtualGatewayFileAccessLog
Auto Trait Implementations§
impl Freeze for VirtualGatewayFileAccessLog
impl RefUnwindSafe for VirtualGatewayFileAccessLog
impl Send for VirtualGatewayFileAccessLog
impl Sync for VirtualGatewayFileAccessLog
impl Unpin for VirtualGatewayFileAccessLog
impl UnwindSafe for VirtualGatewayFileAccessLog
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more