Show / Hide Table of Contents

Class CfnApiGatewayManagedOverridesPropsMixin.AccessLogSettingsProperty

The AccessLogSettings property overrides the access log settings for an API Gateway-managed stage.

Inheritance
object
CfnApiGatewayManagedOverridesPropsMixin.AccessLogSettingsProperty
Implements
CfnApiGatewayManagedOverridesPropsMixin.IAccessLogSettingsProperty
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.ApiGatewayV2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnApiGatewayManagedOverridesPropsMixin.AccessLogSettingsProperty : CfnApiGatewayManagedOverridesPropsMixin.IAccessLogSettingsProperty
Syntax (vb)
Public Class CfnApiGatewayManagedOverridesPropsMixin.AccessLogSettingsProperty Implements CfnApiGatewayManagedOverridesPropsMixin.IAccessLogSettingsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-apigatewaymanagedoverrides-accesslogsettings.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.ApiGatewayV2.Mixins;

             var accessLogSettingsProperty = new AccessLogSettingsProperty {
                 DestinationArn = "destinationArn",
                 Format = "format"
             };

Synopsis

Constructors

AccessLogSettingsProperty()

The AccessLogSettings property overrides the access log settings for an API Gateway-managed stage.

Properties

DestinationArn

The ARN of the CloudWatch Logs log group to receive access logs.

Format

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

Constructors

AccessLogSettingsProperty()

The AccessLogSettings property overrides the access log settings for an API Gateway-managed stage.

public AccessLogSettingsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-apigatewaymanagedoverrides-accesslogsettings.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.ApiGatewayV2.Mixins;

             var accessLogSettingsProperty = new AccessLogSettingsProperty {
                 DestinationArn = "destinationArn",
                 Format = "format"
             };

Properties

DestinationArn

The ARN of the CloudWatch Logs log group to receive access logs.

public string? DestinationArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-apigatewaymanagedoverrides-accesslogsettings.html#cfn-apigatewayv2-apigatewaymanagedoverrides-accesslogsettings-destinationarn

Format

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

public string? Format { get; set; }
Property Value

string

Remarks

The format must include at least $context.requestId.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-apigatewaymanagedoverrides-accesslogsettings.html#cfn-apigatewayv2-apigatewaymanagedoverrides-accesslogsettings-format

Implements

CfnApiGatewayManagedOverridesPropsMixin.IAccessLogSettingsProperty
Back to top Generated by DocFX