interface GroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IAM.GroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiam#GroupReference |
Java | software.amazon.awscdk.interfaces.iam.GroupReference |
Python | aws_cdk.interfaces.aws_iam.GroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_iam » GroupReference |
A reference to a Group resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iam as interfaces_iam } from 'aws-cdk-lib/interfaces';
const groupReference: interfaces_iam.GroupReference = {
groupArn: 'groupArn',
groupName: 'groupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The ARN of the Group resource. |
| group | string | The GroupName of the Group resource. |
groupArn
Type:
string
The ARN of the Group resource.
groupName
Type:
string
The GroupName of the Group resource.

.NET
Go
Java
Python
TypeScript