Table of Contents

Interface CfnDeployment.IAccessLogSettingProperty

Namespace
Amazon.CDK.AWS.APIGateway
Assembly
Amazon.CDK.AWS.APIGateway.dll

The AccessLogSetting property type specifies settings for logging access in this stage.

public interface CfnDeployment.IAccessLogSettingProperty

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.APIGateway;

             var accessLogSettingProperty = new AccessLogSettingProperty {
                 DestinationArn = "destinationArn",
                 Format = "format"
             };

Remarks

AccessLogSetting is a property of the StageDescription property type.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-accesslogsetting.html

ExampleMetadata: fixture=_generated

Properties

DestinationArn

The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis Data Firehose delivery stream to receive access logs.

string? DestinationArn { get; }

Property Value

string

Remarks

Format

A single line format of the access logs of data, as specified by selected $context variables.

string? Format { get; }

Property Value

string

Remarks