Class: Aws::ApiGatewayV2::Types::AccessLogSettings

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb

Overview

Settings for logging access in a stage.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#destination_arnString

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

Returns:

  • (String)


34
35
36
37
38
39
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 34

class AccessLogSettings < Struct.new(
  :destination_arn,
  :format)
  SENSITIVE = []
  include Aws::Structure
end

#formatString

A single line format of the access logs of data, as specified by selected $context variables. The format must include at least $context.requestId.

Returns:

  • (String)


34
35
36
37
38
39
# File 'gems/aws-sdk-apigatewayv2/lib/aws-sdk-apigatewayv2/types.rb', line 34

class AccessLogSettings < Struct.new(
  :destination_arn,
  :format)
  SENSITIVE = []
  include Aws::Structure
end