Class CfnVirtualNode.AccessLogProperty
An object that represents the access logging information for a virtual node.
Inheritance
System.Object
CfnVirtualNode.AccessLogProperty
Implements
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AccessLogProperty : Object, CfnVirtualNode.IAccessLogProperty
Syntax (vb)
Public Class AccessLogProperty
Inherits Object
Implements CfnVirtualNode.IAccessLogProperty
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 accessLogProperty = 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
AccessLogProperty() |
Properties
File | The file object to send virtual node access logs to. |
Constructors
AccessLogProperty()
public AccessLogProperty()
Properties
File
The file object to send virtual node access logs to.
public object File { get; set; }
Property Value
System.Object