Class: Aws::WorkSpacesWeb::Types::EventFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkSpacesWeb::Types::EventFilter
- Defined in:
- gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb
Overview
EventFilter is a union - when making an API calls you must set exactly one of the members.
EventFilter is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EventFilter corresponding to the set member.
The filter that specifies the events to monitor.
Defined Under Namespace
Classes: All, Include, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#all ⇒ Types::Unit
The filter that monitors all of the available events, including any new events emitted in the future.
-
#include ⇒ Array<String>
The filter that monitors only the listed set of events.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#all ⇒ Types::Unit
The filter that monitors all of the available events, including any new events emitted in the future.
1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 1653 class EventFilter < Struct.new( :all, :include, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class All < EventFilter; end class Include < EventFilter; end class Unknown < EventFilter; end end |
#include ⇒ Array<String>
The filter that monitors only the listed set of events. New events are not auto-monitored.
1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 1653 class EventFilter < Struct.new( :all, :include, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class All < EventFilter; end class Include < EventFilter; end class Unknown < EventFilter; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1653 1654 1655 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 1653 def unknown @unknown end |