interface CfnDeviceDefinitionVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Greengrass.Mixins.CfnDeviceDefinitionVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgreengrass/mixins#CfnDeviceDefinitionVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.greengrass.mixins.CfnDeviceDefinitionVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_greengrass.mixins.CfnDeviceDefinitionVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_greengrass » mixins » CfnDeviceDefinitionVersionMixinProps |
Properties for CfnDeviceDefinitionVersionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as greengrass_mixins } from '@aws-cdk/mixins-preview/aws-greengrass';
const cfnDeviceDefinitionVersionMixinProps: greengrass_mixins.CfnDeviceDefinitionVersionMixinProps = {
deviceDefinitionId: 'deviceDefinitionId',
devices: [{
certificateArn: 'certificateArn',
id: 'id',
syncShadow: false,
thingArn: 'thingArn',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| device | string | The ID of the device definition associated with this version. |
| devices? | IResolvable | (IResolvable | Device)[] | The devices in this version. |
deviceDefinitionId?
Type:
string
(optional)
The ID of the device definition associated with this version.
This value is a GUID.
devices?
Type:
IResolvable | (IResolvable | Device)[]
(optional)
The devices in this version.

.NET
Go
Java
Python
TypeScript