Class: Aws::AppMesh::Types::AccessLog

Inherits:
Struct
  • Object
show all
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.

Direct Known Subclasses

File, Unknown

Defined Under Namespace

Classes: File, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fileTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



26
27
28
# File 'lib/aws-sdk-appmesh/types.rb', line 26

def unknown
  @unknown
end