Interface CfnDeviceDefinitionPropsMixin.IDeviceDefinitionVersionProperty
A device definition version contains a list of devices .
Namespace: Amazon.CDK.Mixins.Preview.AWS.Greengrass.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDeviceDefinitionPropsMixin.IDeviceDefinitionVersionProperty
Syntax (vb)
Public Interface CfnDeviceDefinitionPropsMixin.IDeviceDefinitionVersionProperty
Remarks
After you create a device definition version that contains the devices you want to deploy, you must add it to your group version. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-group.html"><code>AWS::Greengrass::Group</code></a> .
In an CloudFormation template, DeviceDefinitionVersion is the property type of the InitialVersion property in the AWS::Greengrass::DeviceDefinition resource.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Greengrass.Mixins;
var deviceDefinitionVersionProperty = new DeviceDefinitionVersionProperty {
Devices = new [] { new DeviceProperty {
CertificateArn = "certificateArn",
Id = "id",
SyncShadow = false,
ThingArn = "thingArn"
} }
};
Synopsis
Properties
| Devices | The devices in this version. |
Properties
Devices
The devices in this version.
object? Devices { get; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnDeviceDefinitionPropsMixin.IDeviceProperty)[]