Class: Aws::IoT::Types::DeleteThingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::DeleteThingRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass DeleteThingRequest data as a hash:
{
thing_name: "ThingName", # required
expected_version: 1,
}
The input for the DeleteThing operation.
Instance Attribute Summary collapse
-
#expected_version ⇒ Integer
The expected version of the thing record in the registry.
-
#thing_name ⇒ String
The name of the thing to delete.
Instance Attribute Details
#expected_version ⇒ Integer
The expected version of the thing record in the registry. If the version of the record in the registry does not match the expected version specified in the request, the ‘DeleteThing` request is rejected with a `VersionConflictException`.
3503 3504 3505 3506 3507 |
# File 'lib/aws-sdk-iot/types.rb', line 3503 class DeleteThingRequest < Struct.new( :thing_name, :expected_version) include Aws::Structure end |
#thing_name ⇒ String
The name of the thing to delete.
3503 3504 3505 3506 3507 |
# File 'lib/aws-sdk-iot/types.rb', line 3503 class DeleteThingRequest < Struct.new( :thing_name, :expected_version) include Aws::Structure end |