interface DeviceUnderTestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTCoreDeviceAdvisor.Mixins.CfnSuiteDefinitionPropsMixin.DeviceUnderTestProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotcoredeviceadvisor/mixins#CfnSuiteDefinitionPropsMixin_DeviceUnderTestProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotcoredeviceadvisor.mixins.CfnSuiteDefinitionPropsMixin.DeviceUnderTestProperty |
Python | aws_cdk.mixins_preview.aws_iotcoredeviceadvisor.mixins.CfnSuiteDefinitionPropsMixin.DeviceUnderTestProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotcoredeviceadvisor » mixins » 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 { mixins as iotcoredeviceadvisor_mixins } from '@aws-cdk/mixins-preview/aws-iotcoredeviceadvisor';
const deviceUnderTestProperty: iotcoredeviceadvisor_mixins.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