@Stability(value=Stable)
public static interface CfnVirtualNode.FileAccessLogProperty
extends software.amazon.jsii.JsiiSerializable
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") .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() |
String |
getPath()
The file path to write access logs to.
|
@Stability(value=Stable) @NotNull 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.
@Stability(value=Stable) static CfnVirtualNode.FileAccessLogProperty.Builder builder()
Copyright © 2022. All rights reserved.