Class GroupReference
A reference to a Group resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class GroupReference : IGroupReference
Syntax (vb)
Public Class GroupReference Implements IGroupReference
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 groupReference = new GroupReference {
GroupArn = "groupArn",
GroupName = "groupName"
};
Synopsis
Constructors
GroupReference() | A reference to a Group resource. |
Properties
GroupArn | The ARN of the Group resource. |
GroupName | The GroupName of the Group resource. |
Constructors
GroupReference()
A reference to a Group resource.
public GroupReference()
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 groupReference = new GroupReference {
GroupArn = "groupArn",
GroupName = "groupName"
};
Properties
GroupArn
The ARN of the Group resource.
public string GroupArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
GroupName
The GroupName of the Group resource.
public string GroupName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated