CfnProjectMixinProps

class aws_cdk.mixins_preview.aws_iotsitewise.mixins.CfnProjectMixinProps(*, asset_ids=None, portal_id=None, project_description=None, project_name=None, tags=None)

Bases: object

Properties for CfnProjectPropsMixin.

Parameters:
  • asset_ids (Optional[Sequence[str]]) – A list that contains the IDs of each asset associated with the project.

  • portal_id (Optional[str]) – The ID of the portal in which to create the project.

  • project_description (Optional[str]) – A description for the project.

  • project_name (Optional[str]) – A friendly name for the project.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – 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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-project.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_iotsitewise import mixins as iotsitewise_mixins

cfn_project_mixin_props = iotsitewise_mixins.CfnProjectMixinProps(
    asset_ids=["assetIds"],
    portal_id="portalId",
    project_description="projectDescription",
    project_name="projectName",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

asset_ids

A list that contains the IDs of each asset associated with the project.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-project.html#cfn-iotsitewise-project-assetids

portal_id

The ID of the portal in which to create the project.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-project.html#cfn-iotsitewise-project-portalid

project_description

A description for the project.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-project.html#cfn-iotsitewise-project-projectdescription

project_name

A friendly name for the project.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-project.html#cfn-iotsitewise-project-projectname

tags

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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-project.html#cfn-iotsitewise-project-tags