interface LoggingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppMesh.CfnVirtualNodePropsMixin.LoggingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappmesh#CfnVirtualNodePropsMixin_LoggingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appmesh.CfnVirtualNodePropsMixin.LoggingProperty |
Python | aws_cdk.cfn_property_mixins.aws_appmesh.CfnVirtualNodePropsMixin.LoggingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appmesh » CfnVirtualNodePropsMixin » LoggingProperty |
An object that represents the logging information for a virtual node.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appmesh as appmesh } from '@aws-cdk/cfn-property-mixins';
const loggingProperty: appmesh.CfnVirtualNodePropsMixin.LoggingProperty = {
accessLog: {
file: {
format: {
json: [{
key: 'key',
value: 'value',
}],
text: 'text',
},
path: 'path',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| access | IResolvable | Access | The access log configuration for a virtual node. |
accessLog?
Type:
IResolvable | Access
(optional)
The access log configuration for a virtual node.

.NET
Go
Java
Python
TypeScript