Class CfnVirtualNodePropsMixin.LoggingFormatProperty
An object that represents the format for the logs.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnVirtualNodePropsMixin.LoggingFormatProperty : CfnVirtualNodePropsMixin.ILoggingFormatProperty
Syntax (vb)
Public Class CfnVirtualNodePropsMixin.LoggingFormatProperty Implements CfnVirtualNodePropsMixin.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.Mixins.Preview.AWS.AppMesh.Mixins;
var loggingFormatProperty = new LoggingFormatProperty {
Json = new [] { new JsonFormatRefProperty {
Key = "key",
Value = "value"
} },
Text = "text"
};
Synopsis
Constructors
| LoggingFormatProperty() | An object that represents the format for the logs. |
Properties
| Json | The logging format for JSON. |
| Text | The logging format for text. |
Constructors
LoggingFormatProperty()
An object that represents the format for the logs.
public LoggingFormatProperty()
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 loggingFormatProperty = new LoggingFormatProperty {
Json = new [] { new JsonFormatRefProperty {
Key = "key",
Value = "value"
} },
Text = "text"
};
Properties
Json
The logging format for JSON.
public object? Json { get; set; }
Property Value
Remarks
Text
The logging format for text.
public string? Text { get; set; }