Show / Hide Table of Contents

Class CfnVirtualNode.AccessLogProperty

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

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-accesslog.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 accessLogProperty = 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

AccessLogProperty()

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

Properties

File

The file object to send virtual node access logs to.

Constructors

AccessLogProperty()

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

public AccessLogProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-accesslog.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 accessLogProperty = 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

File

The file object to send virtual node access logs to.

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

object

Remarks

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

Implements

CfnVirtualNode.IAccessLogProperty
Back to top Generated by DocFX