Show / Hide Table of Contents

Interface CfnVirtualGateway.IVirtualGatewayLoggingProperty

An object that represents logging information.

Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnVirtualGateway.IVirtualGatewayLoggingProperty
Syntax (vb)
Public Interface CfnVirtualGateway.IVirtualGatewayLoggingProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewaylogging.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 virtualGatewayLoggingProperty = new VirtualGatewayLoggingProperty {
                 AccessLog = 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

Properties

AccessLog

The access log configuration.

Properties

AccessLog

The access log configuration.

object? AccessLog { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX