interface DeviceUnderTestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTCoreDeviceAdvisor.CfnSuiteDefinitionPropsMixin.DeviceUnderTestProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotcoredeviceadvisor#CfnSuiteDefinitionPropsMixin_DeviceUnderTestProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotcoredeviceadvisor.CfnSuiteDefinitionPropsMixin.DeviceUnderTestProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotcoredeviceadvisor.CfnSuiteDefinitionPropsMixin.DeviceUnderTestProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotcoredeviceadvisor » CfnSuiteDefinitionPropsMixin » DeviceUnderTestProperty |
Information of a test device.
A thing ARN, certificate ARN or device role ARN is required.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotcoredeviceadvisor as iotcoredeviceadvisor } from '@aws-cdk/cfn-property-mixins';
const deviceUnderTestProperty: iotcoredeviceadvisor.CfnSuiteDefinitionPropsMixin.DeviceUnderTestProperty = {
certificateArn: 'certificateArn',
thingArn: 'thingArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | Lists device's certificate ARN. |
| thing | string | Lists device's thing ARN. |
certificateArn?
Type:
string
(optional)
Lists device's certificate ARN.
thingArn?
Type:
string
(optional)
Lists device's thing ARN.

.NET
Go
Java
Python
TypeScript