Class: Aws::AppMesh::Types::VirtualGatewayAccessLog
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::VirtualGatewayAccessLog
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-appmesh/types.rb
Overview
Note:
VirtualGatewayAccessLog is a union - when making an API calls you must set exactly one of the members.
Note:
VirtualGatewayAccessLog is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of VirtualGatewayAccessLog corresponding to the set member.
The access log configuration for a virtual gateway.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file ⇒ Types::VirtualGatewayFileAccessLog
The file object to send virtual gateway access logs to.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#file ⇒ Types::VirtualGatewayFileAccessLog
The file object to send virtual gateway access logs to.
4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 |
# File 'lib/aws-sdk-appmesh/types.rb', line 4893 class VirtualGatewayAccessLog < Struct.new( :file, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class File < VirtualGatewayAccessLog; end class Unknown < VirtualGatewayAccessLog; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4893 4894 4895 |
# File 'lib/aws-sdk-appmesh/types.rb', line 4893 def unknown @unknown end |