interface VirtualGatewayAccessLogProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayAccessLogProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnVirtualGatewayPropsMixin_VirtualGatewayAccessLogProperty |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayAccessLogProperty |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayAccessLogProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » CfnVirtualGatewayPropsMixin » VirtualGatewayAccessLogProperty |
The access log configuration for a virtual gateway.
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 virtualGatewayAccessLogProperty: appmesh_mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayAccessLogProperty = {
file: {
format: {
json: [{
key: 'key',
value: 'value',
}],
text: 'text',
},
path: 'path',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| file? | IResolvable | Virtual | The file object to send virtual gateway access logs to. |
file?
Type:
IResolvable | Virtual
(optional)
The file object to send virtual gateway access logs to.

.NET
Go
Java
Python
TypeScript