Show / Hide Table of Contents

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-devicedefinition-devicedefinitionversion.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrass-devicedefinition-devicedefinitionversion.html#cfn-greengrass-devicedefinition-devicedefinitionversion-devices

Type union: either IResolvable or (either IResolvable or CfnDeviceDefinitionPropsMixin.IDeviceProperty)[]

Back to top Generated by DocFX