Class: Aws::SageMaker::Types::Device
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::Device
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Information of a particular device.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
Description of the device.
-
#device_name ⇒ String
The name of the device.
-
#iot_thing_name ⇒ String
Amazon Web Services Internet of Things (IoT) object name.
Instance Attribute Details
#description ⇒ String
Description of the device.
18498 18499 18500 18501 18502 18503 18504 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 18498 class Device < Struct.new( :device_name, :description, :iot_thing_name) SENSITIVE = [] include Aws::Structure end |