Class: Aws::IoT::Types::DeleteThingGroupRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Overview

Note:

When making an API call, you may pass DeleteThingGroupRequest data as a hash:

{
  thing_group_name: "ThingGroupName", # required
  expected_version: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#expected_versionInteger

The expected version of the thing group to delete.

Returns:

  • (Integer)


3474
3475
3476
3477
3478
# File 'lib/aws-sdk-iot/types.rb', line 3474

class DeleteThingGroupRequest < Struct.new(
  :thing_group_name,
  :expected_version)
  include Aws::Structure
end

#thing_group_nameString

The name of the thing group to delete.

Returns:

  • (String)


3474
3475
3476
3477
3478
# File 'lib/aws-sdk-iot/types.rb', line 3474

class DeleteThingGroupRequest < Struct.new(
  :thing_group_name,
  :expected_version)
  include Aws::Structure
end