Class: Aws::ApiGatewayV2::Types::AccessLogSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApiGatewayV2::Types::AccessLogSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigatewayv2/types.rb
Overview
Settings for logging access in a stage.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination_arn ⇒ String
The ARN of the CloudWatch Logs log group to receive access logs.
-
#format ⇒ String
A single line format of the access logs of data, as specified by selected $context variables.
Instance Attribute Details
#destination_arn ⇒ String
The ARN of the CloudWatch Logs log group to receive access logs.
34 35 36 37 38 39 |
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 34 class AccessLogSettings < Struct.new( :destination_arn, :format) SENSITIVE = [] include Aws::Structure end |
#format ⇒ String
A single line format of the access logs of data, as specified by selected $context variables. The format must include at least $context.requestId.
34 35 36 37 38 39 |
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 34 class AccessLogSettings < Struct.new( :destination_arn, :format) SENSITIVE = [] include Aws::Structure end |