Class: Aws::IoTTwinMaker::Types::ParentEntityUpdateRequest

Inherits:
Struct
  • Object
show all
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:

{
  update_type: "UPDATE", # required, accepts UPDATE, DELETE
  parent_entity_id: "ParentEntityId",
}

The parent entity update request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#parent_entity_idString

The ID of the parent entity.

Returns:

  • (String)


2736
2737
2738
2739
2740
2741
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 2736

class ParentEntityUpdateRequest < Struct.new(
  :update_type,
  :parent_entity_id)
  SENSITIVE = []
  include Aws::Structure
end

#update_typeString

The type of the update.

Returns:

  • (String)


2736
2737
2738
2739
2740
2741
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 2736

class ParentEntityUpdateRequest < Struct.new(
  :update_type,
  :parent_entity_id)
  SENSITIVE = []
  include Aws::Structure
end