Show / Hide Table of Contents

Class InstanceProfileReference

A reference to a InstanceProfile resource.

Inheritance
object
InstanceProfileReference
Implements
IInstanceProfileReference
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.IAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class InstanceProfileReference : IInstanceProfileReference
Syntax (vb)
Public Class InstanceProfileReference Implements IInstanceProfileReference
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.IAM;

            var instanceProfileReference = new InstanceProfileReference {
                InstanceProfileArn = "instanceProfileArn",
                InstanceProfileName = "instanceProfileName"
            };

Synopsis

Constructors

InstanceProfileReference()

A reference to a InstanceProfile resource.

Properties

InstanceProfileArn

The ARN of the InstanceProfile resource.

InstanceProfileName

The InstanceProfileName of the InstanceProfile resource.

Constructors

InstanceProfileReference()

A reference to a InstanceProfile resource.

public InstanceProfileReference()
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.IAM;

            var instanceProfileReference = new InstanceProfileReference {
                InstanceProfileArn = "instanceProfileArn",
                InstanceProfileName = "instanceProfileName"
            };

Properties

InstanceProfileArn

The ARN of the InstanceProfile resource.

public string InstanceProfileArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

InstanceProfileName

The InstanceProfileName of the InstanceProfile resource.

public string InstanceProfileName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IInstanceProfileReference
Back to top Generated by DocFX