Class CfnVirtualGateway.VirtualGatewayAccessLogProperty
The access log configuration for a virtual gateway.
Inheritance
System.Object
CfnVirtualGateway.VirtualGatewayAccessLogProperty
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class VirtualGatewayAccessLogProperty : Object, CfnVirtualGateway.IVirtualGatewayAccessLogProperty
Syntax (vb)
Public Class VirtualGatewayAccessLogProperty
Inherits Object
Implements CfnVirtualGateway.IVirtualGatewayAccessLogProperty
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 virtualGatewayAccessLogProperty = 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
Constructors
VirtualGatewayAccessLogProperty() |
Properties
File | The file object to send virtual gateway access logs to. |
Constructors
VirtualGatewayAccessLogProperty()
public VirtualGatewayAccessLogProperty()
Properties
File
The file object to send virtual gateway access logs to.
public object File { get; set; }
Property Value
System.Object