Class: Aws::IoTTwinMaker::Types::ListEntitiesFilter

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

Overview

Note:

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

An object that filters items in a list of entities.

Direct Known Subclasses

ComponentTypeId, ExternalId, ParentEntityId, Unknown

Defined Under Namespace

Classes: ComponentTypeId, ExternalId, ParentEntityId, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#component_type_idString

The ID of the component type in the entities in the list.

Returns:

  • (String)


1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 1801

class ListEntitiesFilter < Struct.new(
  :parent_entity_id,
  :component_type_id,
  :external_id,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ParentEntityId < ListEntitiesFilter; end
  class ComponentTypeId < ListEntitiesFilter; end
  class ExternalId < ListEntitiesFilter; end
  class Unknown < ListEntitiesFilter; end
end

#external_idString

The external-Id property of a component. The external-Id property is the primary key of an external storage system.

Returns:

  • (String)


1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 1801

class ListEntitiesFilter < Struct.new(
  :parent_entity_id,
  :component_type_id,
  :external_id,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ParentEntityId < ListEntitiesFilter; end
  class ComponentTypeId < ListEntitiesFilter; end
  class ExternalId < ListEntitiesFilter; end
  class Unknown < ListEntitiesFilter; end
end

#parent_entity_idString

The parent of the entities in the list.

Returns:

  • (String)


1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 1801

class ListEntitiesFilter < Struct.new(
  :parent_entity_id,
  :component_type_id,
  :external_id,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ParentEntityId < ListEntitiesFilter; end
  class ComponentTypeId < ListEntitiesFilter; end
  class ExternalId < ListEntitiesFilter; end
  class Unknown < ListEntitiesFilter; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1801
1802
1803
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 1801

def unknown
  @unknown
end