interface CfnProjectProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT1Click.CfnProjectProps |
Java | software.amazon.awscdk.services.iot1click.CfnProjectProps |
Python | aws_cdk.aws_iot1click.CfnProjectProps |
TypeScript | @aws-cdk/aws-iot1click » CfnProjectProps |
Properties for defining a CfnProject.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iot1click from '@aws-cdk/aws-iot1click';
declare const callbackOverrides: any;
declare const defaultAttributes: any;
const cfnProjectProps: iot1click.CfnProjectProps = {
placementTemplate: {
defaultAttributes: defaultAttributes,
deviceTemplates: {
deviceTemplatesKey: {
callbackOverrides: callbackOverrides,
deviceType: 'deviceType',
},
},
},
// the properties below are optional
description: 'description',
projectName: 'projectName',
};
Properties
| Name | Type | Description |
|---|---|---|
| placement | IResolvable | Placement | An object describing the project's placement specifications. |
| description? | string | The description of the project. |
| project | string | The name of the project from which to obtain information. |
placementTemplate
Type:
IResolvable | Placement
An object describing the project's placement specifications.
description?
Type:
string
(optional)
The description of the project.
projectName?
Type:
string
(optional)
The name of the project from which to obtain information.

.NET
Java
Python
TypeScript