Interface CfnVirtualGateway.ILoggingFormatProperty
An object that represents the format for the logs.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ILoggingFormatProperty
Syntax (vb)
Public Interface ILoggingFormatProperty
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 loggingFormatProperty = new LoggingFormatProperty {
Json = new [] { new JsonFormatRefProperty {
Key = "key",
Value = "value"
} },
Text = "text"
};
Synopsis
Properties
Json | The logging format for JSON. |
Text | The logging format for text. |
Properties
Json
The logging format for JSON.
virtual object Json { get; }
Property Value
System.Object
Remarks
Text
The logging format for text.
virtual string Text { get; }
Property Value
System.String