Class: Aws::IoTDeviceAdvisor::Types::DeviceUnderTest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTDeviceAdvisor::Types::DeviceUnderTest
- Defined in:
- gems/aws-sdk-iotdeviceadvisor/lib/aws-sdk-iotdeviceadvisor/types.rb
Overview
Note:
When making an API call, you may pass DeviceUnderTest data as a hash:
{
thing_arn: "AmazonResourceName",
certificate_arn: "AmazonResourceName",
}
Information of a test device. A thing ARN or a certificate ARN is required.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
Lists devices certificate ARN.
-
#thing_arn ⇒ String
Lists devices thing ARN.
Instance Attribute Details
#certificate_arn ⇒ String
Lists devices certificate ARN.
128 129 130 131 132 133 |
# File 'gems/aws-sdk-iotdeviceadvisor/lib/aws-sdk-iotdeviceadvisor/types.rb', line 128 class DeviceUnderTest < Struct.new( :thing_arn, :certificate_arn) SENSITIVE = [] include Aws::Structure end |
#thing_arn ⇒ String
Lists devices thing ARN.
128 129 130 131 132 133 |
# File 'gems/aws-sdk-iotdeviceadvisor/lib/aws-sdk-iotdeviceadvisor/types.rb', line 128 class DeviceUnderTest < Struct.new( :thing_arn, :certificate_arn) SENSITIVE = [] include Aws::Structure end |