interface CfnProjectMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTSiteWise.Mixins.CfnProjectMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotsitewise/mixins#CfnProjectMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotsitewise.mixins.CfnProjectMixinProps |
Python | aws_cdk.mixins_preview.aws_iotsitewise.mixins.CfnProjectMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotsitewise » mixins » CfnProjectMixinProps |
Properties for CfnProjectPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-project.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotsitewise_mixins } from '@aws-cdk/mixins-preview/aws-iotsitewise';
const cfnProjectMixinProps: iotsitewise_mixins.CfnProjectMixinProps = {
assetIds: ['assetIds'],
portalId: 'portalId',
projectDescription: 'projectDescription',
projectName: 'projectName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| asset | string[] | A list that contains the IDs of each asset associated with the project. |
| portal | string | The ID of the portal in which to create the project. |
| project | string | A description for the project. |
| project | string | A friendly name for the project. |
| tags? | Cfn[] | A list of key-value pairs that contain metadata for the project. |
assetIds?
Type:
string[]
(optional)
A list that contains the IDs of each asset associated with the project.
portalId?
Type:
string
(optional)
The ID of the portal in which to create the project.
projectDescription?
Type:
string
(optional)
A description for the project.
projectName?
Type:
string
(optional)
A friendly name for the project.
tags?
Type:
Cfn[]
(optional)
A list of key-value pairs that contain metadata for the project.
For more information, see Tagging your AWS IoT SiteWise resources in the AWS IoT SiteWise User Guide .

.NET
Go
Java
Python
TypeScript