interface CfnDeviceDefinitionVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Greengrass.CfnDeviceDefinitionVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgreengrass#CfnDeviceDefinitionVersionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.greengrass.CfnDeviceDefinitionVersionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_greengrass.CfnDeviceDefinitionVersionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_greengrass » 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 { aws_greengrass as greengrass } from '@aws-cdk/cfn-property-mixins';
const cfnDeviceDefinitionVersionMixinProps: greengrass.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