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)


1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 1819

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>)


1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 1819

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



1819
1820
1821
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 1819

def unknown
  @unknown
end