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)


2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 2423

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)


2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 2423

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)


2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 2423

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



2423
2424
2425
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 2423

def unknown
  @unknown
end