Class: Aws::AppMesh::Types::VirtualGatewayFileAccessLog
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::VirtualGatewayFileAccessLog
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass VirtualGatewayFileAccessLog data as a hash:
{
path: "FilePath", # required
}
An object that represents an access log file.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#path ⇒ String
The file path to write access logs to.
Instance Attribute Details
#path ⇒ String
The file path to write access logs to. You can use /dev/stdout
to
send access logs to standard out and configure your Envoy container
to use a log driver, such as awslogs
, to export the access logs to
a log storage service such as Amazon CloudWatch Logs. You can also
specify a path in the Envoy container's file system to write the
files to disk.
8372 8373 8374 8375 8376 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 8372 class VirtualGatewayFileAccessLog < Struct.new( :path) SENSITIVE = [] include Aws::Structure end |