Interface ICfnDeviceDefinitionMixinProps
Properties for CfnDeviceDefinitionPropsMixin.
Namespace: Amazon.CDK.Mixins.Preview.AWS.Greengrass.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface ICfnDeviceDefinitionMixinProps
Syntax (vb)
Public Interface ICfnDeviceDefinitionMixinProps
Remarks
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 tags;
var cfnDeviceDefinitionMixinProps = new CfnDeviceDefinitionMixinProps {
InitialVersion = new DeviceDefinitionVersionProperty {
Devices = new [] { new DeviceProperty {
CertificateArn = "certificateArn",
Id = "id",
SyncShadow = false,
ThingArn = "thingArn"
} }
},
Name = "name",
Tags = tags
};
Synopsis
Properties
| InitialVersion | The device definition version to include when the device definition is created. |
| Name | The name of the device definition. |
| Tags | Application-specific metadata to attach to the device definition. |
Properties
InitialVersion
The device definition version to include when the device definition is created.
object? InitialVersion { get; }
Property Value
Remarks
A device definition version contains a list of device property types.
To associate a device definition version after the device definition is created, create an <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-devicedefinitionversion.html"><code>AWS::Greengrass::DeviceDefinitionVersion</code></a> resource and specify the ID of this device definition.
Type union: either IResolvable or CfnDeviceDefinitionPropsMixin.IDeviceDefinitionVersionProperty
Name
The name of the device definition.
string? Name { get; }
Property Value
Remarks
Tags
Application-specific metadata to attach to the device definition.
object? Tags { get; }
Property Value
Remarks
You can use tags in IAM policies to control access to AWS IoT Greengrass resources. You can also use tags to categorize your resources. For more information, see Tagging Your AWS IoT Greengrass Resources in the Developer Guide .
This Json property type is processed as a map of key-value pairs. It uses the following format, which is different from most Tags implementations in CloudFormation templates.
"Tags": { "KeyName0": "value", "KeyName1": "value", "KeyName2": "value"
}