Class InstanceProfileReference
A reference to a InstanceProfile resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
InstanceProfileName
The InstanceProfileName of the InstanceProfile resource.
public string InstanceProfileName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated