Show / Hide Table of Contents

Interface CfnVirtualGateway.IVirtualGatewayAccessLogProperty

The access log configuration for a virtual gateway.

Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnVirtualGateway.IVirtualGatewayAccessLogProperty
Syntax (vb)
Public Interface 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

Properties

File

The file object to send virtual gateway access logs to.

Properties

File

The file object to send virtual gateway access logs to.

object? File { get; }
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

Back to top Generated by DocFX