Class: Aws::GreengrassV2::Types::BatchDisassociateClientDeviceFromCoreDeviceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::BatchDisassociateClientDeviceFromCoreDeviceRequest
- Defined in:
- gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb
Overview
Note:
When making an API call, you may pass BatchDisassociateClientDeviceFromCoreDeviceRequest data as a hash:
{
entries: [
{
thing_name: "IoTThingName", # required
},
],
core_device_thing_name: "IoTThingName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#core_device_thing_name ⇒ String
The name of the core device.
-
#entries ⇒ Array<Types::DisassociateClientDeviceFromCoreDeviceEntry>
The list of client devices to disassociate.
Instance Attribute Details
#core_device_thing_name ⇒ String
The name of the core device. This is also the name of the IoT thing.
206 207 208 209 210 211 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 206 class BatchDisassociateClientDeviceFromCoreDeviceRequest < Struct.new( :entries, :core_device_thing_name) SENSITIVE = [] include Aws::Structure end |
#entries ⇒ Array<Types::DisassociateClientDeviceFromCoreDeviceEntry>
The list of client devices to disassociate.
206 207 208 209 210 211 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 206 class BatchDisassociateClientDeviceFromCoreDeviceRequest < Struct.new( :entries, :core_device_thing_name) SENSITIVE = [] include Aws::Structure end |