Show / Hide Table of Contents

Class LoggingFormatConfig

All Properties for Envoy Access Logging Format for mesh endpoints.

Inheritance
object
LoggingFormatConfig
Implements
ILoggingFormatConfig
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class LoggingFormatConfig : ILoggingFormatConfig
Syntax (vb)
Public Class LoggingFormatConfig Implements ILoggingFormatConfig
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 loggingFormatConfig = new LoggingFormatConfig {
                FormatConfig = new LoggingFormatProperty {
                    Json = new [] { new JsonFormatRefProperty {
                        Key = "key",
                        Value = "value"
                    } },
                    Text = "text"
                }
            };

Synopsis

Constructors

LoggingFormatConfig()

All Properties for Envoy Access Logging Format for mesh endpoints.

Properties

FormatConfig

CFN configuration for Access Logging Format.

Constructors

LoggingFormatConfig()

All Properties for Envoy Access Logging Format for mesh endpoints.

public LoggingFormatConfig()
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 loggingFormatConfig = new LoggingFormatConfig {
                FormatConfig = new LoggingFormatProperty {
                    Json = new [] { new JsonFormatRefProperty {
                        Key = "key",
                        Value = "value"
                    } },
                    Text = "text"
                }
            };

Properties

FormatConfig

CFN configuration for Access Logging Format.

public CfnVirtualNode.ILoggingFormatProperty? FormatConfig { get; set; }
Property Value

CfnVirtualNode.ILoggingFormatProperty

Remarks

Default: - no access logging format

Implements

ILoggingFormatConfig
Back to top Generated by DocFX