Interface ICfnProjectProps
Properties for defining a CfnProject
.
Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnProjectProps
Syntax (vb)
Public Interface ICfnProjectProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-project.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTSiteWise;
var cfnProjectProps = new CfnProjectProps {
PortalId = "portalId",
ProjectName = "projectName",
// the properties below are optional
AssetIds = new [] { "assetIds" },
ProjectDescription = "projectDescription",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
AssetIds | A list that contains the IDs of each asset associated with the project. |
PortalId | The ID of the portal in which to create the project. |
ProjectDescription | A description for the project. |
ProjectName | A friendly name for the project. |
Tags | A list of key-value pairs that contain metadata for the project. |
Properties
AssetIds
A list that contains the IDs of each asset associated with the project.
virtual string[] AssetIds { get; }
Property Value
System.String[]
Remarks
PortalId
The ID of the portal in which to create the project.
string PortalId { get; }
Property Value
System.String
Remarks
ProjectDescription
A description for the project.
virtual string ProjectDescription { get; }
Property Value
System.String
Remarks
ProjectName
A friendly name for the project.
string ProjectName { get; }
Property Value
System.String
Remarks
Tags
A list of key-value pairs that contain metadata for the project.
virtual ICfnTag[] Tags { get; }
Property Value
ICfnTag[]
Remarks
For more information, see Tagging your AWS IoT SiteWise resources in the AWS IoT SiteWise User Guide .