Class: Aws::AppMesh::Types::LoggingFormat
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::LoggingFormat
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-appmesh/types.rb
Overview
Note:
LoggingFormat is a union - when making an API calls you must set exactly one of the members.
Note:
LoggingFormat is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of LoggingFormat corresponding to the set member.
An object that represents the format for the logs.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
- #json ⇒ Array<Types::JsonFormatRef>
- #text ⇒ String
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#json ⇒ Array<Types::JsonFormatRef>
3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 |
# File 'lib/aws-sdk-appmesh/types.rb', line 3574 class LoggingFormat < Struct.new( :json, :text, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Json < LoggingFormat; end class Text < LoggingFormat; end class Unknown < LoggingFormat; end end |
#text ⇒ String
3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 |
# File 'lib/aws-sdk-appmesh/types.rb', line 3574 class LoggingFormat < Struct.new( :json, :text, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Json < LoggingFormat; end class Text < LoggingFormat; end class Unknown < LoggingFormat; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3574 3575 3576 |
# File 'lib/aws-sdk-appmesh/types.rb', line 3574 def unknown @unknown end |