public static interface CfnVirtualNode.FileAccessLogProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.appmesh.*; FileAccessLogProperty fileAccessLogProperty = FileAccessLogProperty.builder() .path("path") // the properties below are optional .format(LoggingFormatProperty.builder() .json(List.of(JsonFormatRefProperty.builder() .key("key") .value("value") .build())) .text("text") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnVirtualNode.FileAccessLogProperty.Builder
A builder for
CfnVirtualNode.FileAccessLogProperty |
static class |
CfnVirtualNode.FileAccessLogProperty.Jsii$Proxy
An implementation for
CfnVirtualNode.FileAccessLogProperty |
Modifier and Type | Method and Description |
---|---|
static CfnVirtualNode.FileAccessLogProperty.Builder |
builder() |
default java.lang.Object |
getFormat()
The specified format for the logs.
|
java.lang.String |
getPath()
The file path to write access logs to.
|
java.lang.String getPath()
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.
default java.lang.Object getFormat()
The format is either json_format
or text_format
.
static CfnVirtualNode.FileAccessLogProperty.Builder builder()