Interface CfnVirtualGateway.IVirtualGatewayLoggingProperty
An object that represents logging information.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IVirtualGatewayLoggingProperty
Syntax (vb)
Public Interface 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
Properties
AccessLog | The access log configuration. |
Properties
AccessLog
The access log configuration.
virtual object AccessLog { get; }
Property Value
System.Object