Show / Hide Table of Contents

Class CfnVirtualGateway.VirtualGatewayAccessLogProperty

The access log configuration for a virtual gateway.

Inheritance
object
CfnVirtualGateway.VirtualGatewayAccessLogProperty
Implements
CfnVirtualGateway.IVirtualGatewayAccessLogProperty
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 CfnVirtualGateway.VirtualGatewayAccessLogProperty : CfnVirtualGateway.IVirtualGatewayAccessLogProperty
Syntax (vb)
Public Class CfnVirtualGateway.VirtualGatewayAccessLogProperty Implements CfnVirtualGateway.IVirtualGatewayAccessLogProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewayaccesslog.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 virtualGatewayAccessLogProperty = new VirtualGatewayAccessLogProperty {
                 File = new VirtualGatewayFileAccessLogProperty {
                     Path = "path",

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

Synopsis

Constructors

VirtualGatewayAccessLogProperty()

The access log configuration for a virtual gateway.

Properties

File

The file object to send virtual gateway access logs to.

Constructors

VirtualGatewayAccessLogProperty()

The access log configuration for a virtual gateway.

public VirtualGatewayAccessLogProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewayaccesslog.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 virtualGatewayAccessLogProperty = new VirtualGatewayAccessLogProperty {
                 File = new VirtualGatewayFileAccessLogProperty {
                     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 gateway access logs to.

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

object

Remarks

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

Type union: either IResolvable or CfnVirtualGateway.IVirtualGatewayFileAccessLogProperty

Implements

CfnVirtualGateway.IVirtualGatewayAccessLogProperty
Back to top Generated by DocFX