Class: Aws::ApiGatewayV2::Types::AccessLogSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApiGatewayV2::Types::AccessLogSettings
- Defined in:
- gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb
Overview
Note:
When making an API call, you may pass AccessLogSettings data as a hash:
{
destination_arn: "Arn",
format: "StringWithLengthBetween1And1024",
}
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.
42 43 44 45 46 47 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 42 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.
42 43 44 45 46 47 |
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 42 class AccessLogSettings < Struct.new( :destination_arn, :format) SENSITIVE = [] include Aws::Structure end |