Class: Aws::IoTTwinMaker::Types::ParentEntityUpdateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTTwinMaker::Types::ParentEntityUpdateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iottwinmaker/types.rb
Overview
Note:
When making an API call, you may pass ParentEntityUpdateRequest data as a hash:
{
parent_entity_id: "ParentEntityId",
update_type: "UPDATE", # required, accepts UPDATE, DELETE
}
The parent entity update request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#parent_entity_id ⇒ String
The ID of the parent entity.
-
#update_type ⇒ String
The type of the update.
Instance Attribute Details
#parent_entity_id ⇒ String
The ID of the parent entity.
2406 2407 2408 2409 2410 2411 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 2406 class ParentEntityUpdateRequest < Struct.new( :parent_entity_id, :update_type) SENSITIVE = [] include Aws::Structure end |
#update_type ⇒ String
The type of the update.
2406 2407 2408 2409 2410 2411 |
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 2406 class ParentEntityUpdateRequest < Struct.new( :parent_entity_id, :update_type) SENSITIVE = [] include Aws::Structure end |