Class CfnVirtualGateway.VirtualGatewayLoggingProperty
An object that represents logging information.
Inheritance
System.Object
CfnVirtualGateway.VirtualGatewayLoggingProperty
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class VirtualGatewayLoggingProperty : Object, CfnVirtualGateway.IVirtualGatewayLoggingProperty
Syntax (vb)
Public Class VirtualGatewayLoggingProperty
Inherits Object
Implements CfnVirtualGateway.IVirtualGatewayLoggingProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppMesh;
var virtualGatewayLoggingProperty = new VirtualGatewayLoggingProperty {
AccessLog = new VirtualGatewayAccessLogProperty {
File = new VirtualGatewayFileAccessLogProperty {
Path = "path",
// the properties below are optional
Format = new LoggingFormatProperty {
Json = new [] { new JsonFormatRefProperty {
Key = "key",
Value = "value"
} },
Text = "text"
}
}
}
};
Synopsis
Constructors
VirtualGatewayLoggingProperty() |
Properties
AccessLog | The access log configuration. |
Constructors
VirtualGatewayLoggingProperty()
public VirtualGatewayLoggingProperty()
Properties
AccessLog
The access log configuration.
public object AccessLog { get; set; }
Property Value
System.Object