Show / Hide Table of Contents

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.

string[]? AssetIds { get; }
Property Value

string[]

Remarks

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

PortalId

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

string PortalId { get; }
Property Value

string

Remarks

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

ProjectDescription

A description for the project.

string? ProjectDescription { get; }
Property Value

string

Remarks

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

ProjectName

A friendly name for the project.

string ProjectName { get; }
Property Value

string

Remarks

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.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX