Class CfnVirtualNodePropsMixin.AccessLogProperty
An object that represents the access logging information for a virtual node.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnVirtualNodePropsMixin.AccessLogProperty : CfnVirtualNodePropsMixin.IAccessLogProperty
Syntax (vb)
Public Class CfnVirtualNodePropsMixin.AccessLogProperty Implements CfnVirtualNodePropsMixin.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.Mixins.Preview.AWS.AppMesh.Mixins;
var accessLogProperty = new AccessLogProperty {
File = new FileAccessLogProperty {
Format = new LoggingFormatProperty {
Json = new [] { new JsonFormatRefProperty {
Key = "key",
Value = "value"
} },
Text = "text"
},
Path = "path"
}
};
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.Mixins.Preview.AWS.AppMesh.Mixins;
var accessLogProperty = new AccessLogProperty {
File = new FileAccessLogProperty {
Format = new LoggingFormatProperty {
Json = new [] { new JsonFormatRefProperty {
Key = "key",
Value = "value"
} },
Text = "text"
},
Path = "path"
}
};
Properties
File
The file object to send virtual node access logs to.
public object? File { get; set; }