interface AccessLogProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnVirtualNodePropsMixin.AccessLogProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnVirtualNodePropsMixin_AccessLogProperty |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnVirtualNodePropsMixin.AccessLogProperty |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnVirtualNodePropsMixin.AccessLogProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » CfnVirtualNodePropsMixin » AccessLogProperty |
An object that represents the access 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 { mixins as appmesh_mixins } from '@aws-cdk/mixins-preview/aws-appmesh';
const accessLogProperty: appmesh_mixins.CfnVirtualNodePropsMixin.AccessLogProperty = {
file: {
format: {
json: [{
key: 'key',
value: 'value',
}],
text: 'text',
},
path: 'path',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| file? | IResolvable | File | The file object to send virtual node access logs to. |
file?
Type:
IResolvable | File
(optional)
The file object to send virtual node access logs to.

.NET
Go
Java
Python
TypeScript