Interface CfnProject.DeviceTemplateProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProject.DeviceTemplateProperty.Jsii$Proxy
- Enclosing class:
- CfnProject
@Stability(Stable)
public static interface CfnProject.DeviceTemplateProperty
extends software.amazon.jsii.JsiiSerializable
In AWS CloudFormation , use the
DeviceTemplate property type to define the template for an AWS IoT 1-Click project.
DeviceTemplate 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;
DeviceTemplateProperty deviceTemplateProperty = DeviceTemplateProperty.builder()
.callbackOverrides(callbackOverrides)
.deviceType("deviceType")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProject.DeviceTemplatePropertystatic final classAn implementation forCfnProject.DeviceTemplateProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCallbackOverrides
An optional AWS Lambda function to invoke instead of the default AWS Lambda function provided by the placement template. -
getDeviceType
The device type, which currently must be"button". -
builder
-