Show / Hide Table of Contents

Class CfnVirtualNode.LoggingFormatProperty

An object that represents the format for the logs.

Inheritance
object
CfnVirtualNode.LoggingFormatProperty
Implements
CfnVirtualNode.ILoggingFormatProperty
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 CfnVirtualNode.LoggingFormatProperty : CfnVirtualNode.ILoggingFormatProperty
Syntax (vb)
Public Class CfnVirtualNode.LoggingFormatProperty Implements CfnVirtualNode.ILoggingFormatProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-loggingformat.html

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

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-loggingformat.html

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"
             };

Properties

Json

The logging format for JSON.

public object? Json { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-loggingformat.html#cfn-appmesh-virtualnode-loggingformat-json

Type union: either IResolvable or (either IResolvable or CfnVirtualNode.IJsonFormatRefProperty)[]

Text

The logging format for text.

public string? Text { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-loggingformat.html#cfn-appmesh-virtualnode-loggingformat-text

Implements

CfnVirtualNode.ILoggingFormatProperty
Back to top Generated by DocFX