Class: Aws::AppMesh::Types::AccessLog
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::AccessLog
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-appmesh/types.rb
Overview
Note:
AccessLog is a union - when making an API calls you must set exactly one of the members.
Note:
AccessLog is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AccessLog corresponding to the set member.
An object that represents the access logging information for a virtual node.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file ⇒ Types::FileAccessLog
The file object to send virtual node access logs to.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#file ⇒ Types::FileAccessLog
The file object to send virtual node access logs to.
26 27 28 29 30 31 32 33 34 35 |
# File 'lib/aws-sdk-appmesh/types.rb', line 26 class AccessLog < Struct.new( :file, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class File < AccessLog; end class Unknown < AccessLog; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
26 27 28 |
# File 'lib/aws-sdk-appmesh/types.rb', line 26 def unknown @unknown end |