Show / Hide Table of Contents

Class CfnProject.PlacementTemplateProperty

In AWS CloudFormation , use the PlacementTemplate property type to define the template for an AWS IoT 1-Click project.

Inheritance
System.Object
CfnProject.PlacementTemplateProperty
Implements
CfnProject.IPlacementTemplateProperty
Namespace: Amazon.CDK.AWS.IoT1Click
Assembly: Amazon.CDK.AWS.IoT1Click.dll
Syntax (csharp)
public class PlacementTemplateProperty : Object, CfnProject.IPlacementTemplateProperty
Syntax (vb)
Public Class PlacementTemplateProperty
    Inherits Object
    Implements CfnProject.IPlacementTemplateProperty
Remarks

PlacementTemplate is a property of the AWS::IoT1Click::Project resource.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.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.AWS.IoT1Click;

var callbackOverrides;
var defaultAttributes;

var placementTemplateProperty = new PlacementTemplateProperty {
    DefaultAttributes = defaultAttributes,
    DeviceTemplates = new Dictionary<string, object> {
        { "deviceTemplatesKey", new DeviceTemplateProperty {
            CallbackOverrides = callbackOverrides,
            DeviceType = "deviceType"
        } }
    }
};

Synopsis

Constructors

PlacementTemplateProperty()

Properties

DefaultAttributes

The default attributes (key-value pairs) to be applied to all placements using this template.

DeviceTemplates

An object specifying the DeviceTemplate for all placements using this ( PlacementTemplate ) template.

Constructors

PlacementTemplateProperty()

public PlacementTemplateProperty()

Properties

DefaultAttributes

The default attributes (key-value pairs) to be applied to all placements using this template.

public object DefaultAttributes { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-defaultattributes

DeviceTemplates

An object specifying the DeviceTemplate for all placements using this ( PlacementTemplate ) template.

public object DeviceTemplates { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot1click-project-placementtemplate.html#cfn-iot1click-project-placementtemplate-devicetemplates

Implements

CfnProject.IPlacementTemplateProperty
Back to top Generated by DocFX