interface FileAccessLogProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppMesh.CfnVirtualNode.FileAccessLogProperty |
Java | software.amazon.awscdk.services.appmesh.CfnVirtualNode.FileAccessLogProperty |
Python | aws_cdk.aws_appmesh.CfnVirtualNode.FileAccessLogProperty |
TypeScript | @aws-cdk/aws-appmesh » CfnVirtualNode » FileAccessLogProperty |
An object that represents an access log file.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appmesh from '@aws-cdk/aws-appmesh';
const fileAccessLogProperty: appmesh.CfnVirtualNode.FileAccessLogProperty = {
path: 'path',
// the properties below are optional
format: {
json: [{
key: 'key',
value: 'value',
}],
text: 'text',
},
};
Properties
Name | Type | Description |
---|---|---|
path | string | The file path to write access logs to. |
format? | IResolvable | Logging | The specified format for the logs. |
path
Type:
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?
Type:
IResolvable
|
Logging
(optional)
The specified format for the logs.
The format is either json_format
or text_format
.