Interface IRoleReference
A reference to a Role resource.
Namespace: Amazon.CDK.Interfaces.IAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IRoleReference
Syntax (vb)
Public Interface IRoleReference
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.IAM;
var roleReference = new RoleReference {
RoleArn = "roleArn",
RoleName = "roleName"
};
Synopsis
Properties
| RoleArn | The ARN of the Role resource. |
| RoleName | The RoleName of the Role resource. |
Properties
RoleArn
The ARN of the Role resource.
string RoleArn { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
RoleName
The RoleName of the Role resource.
string RoleName { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated