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:

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

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)


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_typeString

The type of the update.

Returns:

  • (String)


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