Class: Aws::WorkSpacesWeb::Types::EventFilter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb

Overview

Note:

EventFilter is a union - when making an API calls you must set exactly one of the members.

Note:

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.

Direct Known Subclasses

All, Include, Unknown

Defined Under Namespace

Classes: All, Include, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#allTypes::Unit

The filter that monitors all of the available events, including any new events emitted in the future.

Returns:

  • (Types::Unit)


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

#includeArray<String>

The filter that monitors only the listed set of events. New events are not auto-monitored.

Returns:

  • (Array<String>)


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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1653
1654
1655
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 1653

def unknown
  @unknown
end