interface VirtualGatewayAccessLogProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppMesh.CfnVirtualGatewayPropsMixin.VirtualGatewayAccessLogProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappmesh#CfnVirtualGatewayPropsMixin_VirtualGatewayAccessLogProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appmesh.CfnVirtualGatewayPropsMixin.VirtualGatewayAccessLogProperty |
Python | aws_cdk.cfn_property_mixins.aws_appmesh.CfnVirtualGatewayPropsMixin.VirtualGatewayAccessLogProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appmesh » 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 { aws_appmesh as appmesh } from '@aws-cdk/cfn-property-mixins';
const virtualGatewayAccessLogProperty: appmesh.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