Show / Hide Table of Contents

Class CfnVirtualNode.LoggingProperty

An object that represents the logging information for a virtual node.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-logging.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 loggingProperty = new LoggingProperty {
                 AccessLog = new AccessLogProperty {
                     File = new FileAccessLogProperty {
                         Path = "path",

                         // the properties below are optional
                         Format = new LoggingFormatProperty {
                             Json = new [] { new JsonFormatRefProperty {
                                 Key = "key",
                                 Value = "value"
                             } },
                             Text = "text"
                         }
                     }
                 }
             };

Synopsis

Constructors

LoggingProperty()

An object that represents the logging information for a virtual node.

Properties

AccessLog

The access log configuration for a virtual node.

Constructors

LoggingProperty()

An object that represents the logging information for a virtual node.

public LoggingProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-logging.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 loggingProperty = new LoggingProperty {
                 AccessLog = new AccessLogProperty {
                     File = new FileAccessLogProperty {
                         Path = "path",

                         // the properties below are optional
                         Format = new LoggingFormatProperty {
                             Json = new [] { new JsonFormatRefProperty {
                                 Key = "key",
                                 Value = "value"
                             } },
                             Text = "text"
                         }
                     }
                 }
             };

Properties

AccessLog

The access log configuration for a virtual node.

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

object

Remarks

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

Implements

CfnVirtualNode.ILoggingProperty
Back to top Generated by DocFX