Interface CfnProject.PlacementTemplateProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProject.PlacementTemplateProperty.Jsii$Proxy
Enclosing class:
CfnProject

@Stability(Stable) public static interface CfnProject.PlacementTemplateProperty extends software.amazon.jsii.JsiiSerializable
In AWS CloudFormation , use the PlacementTemplate property type to define the template for an AWS IoT 1-Click project.

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

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iot1click.*;
 Object callbackOverrides;
 Object defaultAttributes;
 PlacementTemplateProperty placementTemplateProperty = PlacementTemplateProperty.builder()
         .defaultAttributes(defaultAttributes)
         .deviceTemplates(Map.of(
                 "deviceTemplatesKey", DeviceTemplateProperty.builder()
                         .callbackOverrides(callbackOverrides)
                         .deviceType("deviceType")
                         .build()))
         .build();
 

See Also: