Struct aws_sdk_appmesh::types::FileAccessLog
source · #[non_exhaustive]pub struct FileAccessLog {
pub path: Option<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: Option<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.
The Envoy process must have write permissions to the path that you specify here. Otherwise, Envoy fails to bootstrap properly.
format: Option<LoggingFormat>
The specified format for the logs. The format is either json_format
or text_format
.
Implementations§
source§impl FileAccessLog
impl FileAccessLog
sourcepub fn path(&self) -> Option<&str>
pub fn path(&self) -> Option<&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.
The Envoy process must have write permissions to the path that you specify here. Otherwise, Envoy fails to bootstrap properly.
sourcepub fn format(&self) -> Option<&LoggingFormat>
pub fn format(&self) -> Option<&LoggingFormat>
The specified format for the logs. The format is either json_format
or text_format
.
source§impl FileAccessLog
impl FileAccessLog
sourcepub fn builder() -> FileAccessLogBuilder
pub fn builder() -> FileAccessLogBuilder
Creates a new builder-style object to manufacture FileAccessLog
.
Trait Implementations§
source§impl Clone for FileAccessLog
impl Clone for FileAccessLog
source§fn clone(&self) -> FileAccessLog
fn clone(&self) -> FileAccessLog
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for FileAccessLog
impl Debug for FileAccessLog
source§impl PartialEq<FileAccessLog> for FileAccessLog
impl PartialEq<FileAccessLog> for FileAccessLog
source§fn eq(&self, other: &FileAccessLog) -> bool
fn eq(&self, other: &FileAccessLog) -> bool
self
and other
values to be equal, and is used
by ==
.