Class: Aws::IoTTwinMaker::Types::ListEntitiesFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTTwinMaker::Types::ListEntitiesFilter
- 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
Defined Under Namespace
Classes: ComponentTypeId, ExternalId, ParentEntityId, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#component_type_id ⇒ String
The ID of the component type in the entities in the list.
-
#external_id ⇒ String
The external-Id property of a component.
-
#parent_entity_id ⇒ String
The parent of the entities in the list.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#component_type_id ⇒ String
The ID of the component type in the entities in the list.
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_id ⇒ String
The external-Id property of a component. The external-Id property is the primary key of an external storage system.
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_id ⇒ String
The parent of the entities in the list.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
2423 2424 2425 |
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 2423 def unknown @unknown end |