Show / Hide Table of Contents

Class InstanceReference

A reference to a Instance resource.

Inheritance
object
InstanceReference
Implements
IInstanceReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.OpsWorks
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class InstanceReference : IInstanceReference
Syntax (vb)
Public Class InstanceReference Implements IInstanceReference
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.Interfaces.OpsWorks;

            var instanceReference = new InstanceReference {
                InstanceId = "instanceId"
            };

Synopsis

Constructors

InstanceReference()

A reference to a Instance resource.

Properties

InstanceId

The Id of the Instance resource.

Constructors

InstanceReference()

A reference to a Instance resource.

public InstanceReference()
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.Interfaces.OpsWorks;

            var instanceReference = new InstanceReference {
                InstanceId = "instanceId"
            };

Properties

InstanceId

The Id of the Instance resource.

public string InstanceId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IInstanceReference
Back to top Generated by DocFX