Show / Hide Table of Contents

Class CfnVirtualNodePropsMixin.AccessLogProperty

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

Inheritance
object
CfnVirtualNodePropsMixin.AccessLogProperty
Implements
CfnVirtualNodePropsMixin.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.Mixins.Preview.AWS.AppMesh.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnVirtualNodePropsMixin.AccessLogProperty : CfnVirtualNodePropsMixin.IAccessLogProperty
Syntax (vb)
Public Class CfnVirtualNodePropsMixin.AccessLogProperty Implements CfnVirtualNodePropsMixin.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.Mixins.Preview.AWS.AppMesh.Mixins;

             var accessLogProperty = new AccessLogProperty {
                 File = new FileAccessLogProperty {
                     Format = new LoggingFormatProperty {
                         Json = new [] { new JsonFormatRefProperty {
                             Key = "key",
                             Value = "value"
                         } },
                         Text = "text"
                     },
                     Path = "path"
                 }
             };

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.Mixins.Preview.AWS.AppMesh.Mixins;

             var accessLogProperty = new AccessLogProperty {
                 File = new FileAccessLogProperty {
                     Format = new LoggingFormatProperty {
                         Json = new [] { new JsonFormatRefProperty {
                             Key = "key",
                             Value = "value"
                         } },
                         Text = "text"
                     },
                     Path = "path"
                 }
             };

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

Type union: either IResolvable or CfnVirtualNodePropsMixin.IFileAccessLogProperty

Implements

CfnVirtualNodePropsMixin.IAccessLogProperty
Back to top Generated by DocFX