Show / Hide Table of Contents

Class ProjectReference

A reference to a Project resource.

Inheritance
object
ProjectReference
Implements
IProjectReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ProjectReference : IProjectReference
Syntax (vb)
Public Class ProjectReference Implements IProjectReference
Remarks

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 projectReference = new ProjectReference {
                ProjectArn = "projectArn",
                ProjectId = "projectId"
            };

Synopsis

Constructors

ProjectReference()

A reference to a Project resource.

Properties

ProjectArn

The ARN of the Project resource.

ProjectId

The ProjectId of the Project resource.

Constructors

ProjectReference()

A reference to a Project resource.

public ProjectReference()
Remarks

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 projectReference = new ProjectReference {
                ProjectArn = "projectArn",
                ProjectId = "projectId"
            };

Properties

ProjectArn

The ARN of the Project resource.

public string ProjectArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

ProjectId

The ProjectId of the Project resource.

public string ProjectId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IProjectReference
Back to top Generated by DocFX