Class CfnVirtualNode.LoggingProperty
An object that represents the logging information for a virtual node.
Inheritance
System.Object
CfnVirtualNode.LoggingProperty
Implements
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class LoggingProperty : Object, CfnVirtualNode.ILoggingProperty
Syntax (vb)
Public Class LoggingProperty
Inherits Object
Implements CfnVirtualNode.ILoggingProperty
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 loggingProperty = new LoggingProperty {
AccessLog = new AccessLogProperty {
File = new FileAccessLogProperty {
Path = "path",
// the properties below are optional
Format = new LoggingFormatProperty {
Json = new [] { new JsonFormatRefProperty {
Key = "key",
Value = "value"
} },
Text = "text"
}
}
}
};
Synopsis
Constructors
LoggingProperty() |
Properties
AccessLog | The access log configuration for a virtual node. |
Constructors
LoggingProperty()
public LoggingProperty()
Properties
AccessLog
The access log configuration for a virtual node.
public object AccessLog { get; set; }
Property Value
System.Object