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