Class: Aws::AppMesh::Types::Logging
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::Logging
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass Logging data as a hash:
{
access_log: {
file: {
path: "FilePath", # required
},
},
}
An object that represents the logging information for a virtual node.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_log ⇒ Types::AccessLog
The access log configuration for a virtual node.
Instance Attribute Details
#access_log ⇒ Types::AccessLog
The access log configuration for a virtual node.
5672 5673 5674 5675 5676 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5672 class Logging < Struct.new( :access_log) SENSITIVE = [] include Aws::Structure end |