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

.NET
Go
Java
Python
TypeScript