aws-cdk-lib.aws_iot1click.CfnPlacementProps

interface CfnPlacementProps

LanguageType name
.NETAmazon.CDK.AWS.IoT1Click.CfnPlacementProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiot1click#CfnPlacementProps
Javasoftware.amazon.awscdk.services.iot1click.CfnPlacementProps
Pythonaws_cdk.aws_iot1click.CfnPlacementProps
TypeScript aws-cdk-lib » aws_iot1click » CfnPlacementProps

Properties for defining a CfnPlacement.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot1click as iot1click } from 'aws-cdk-lib';

declare const associatedDevices: any;
declare const attributes: any;
const cfnPlacementProps: iot1click.CfnPlacementProps = {
  projectName: 'projectName',

  // the properties below are optional
  associatedDevices: associatedDevices,
  attributes: attributes,
  placementName: 'placementName',
};

Properties

NameTypeDescription
projectNamestringThe name of the project containing the placement.
associatedDevices?anyThe devices to associate with the placement, as defined by a mapping of zero or more key-value pairs wherein the key is a template name and the value is a device ID.
attributes?anyThe user-defined attributes associated with the placement.
placementName?stringThe name of the placement.

projectName

Type: string

The name of the project containing the placement.


associatedDevices?

Type: any (optional)

The devices to associate with the placement, as defined by a mapping of zero or more key-value pairs wherein the key is a template name and the value is a device ID.


attributes?

Type: any (optional)

The user-defined attributes associated with the placement.


placementName?

Type: string (optional)

The name of the placement.