interface PermissionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RAM.PermissionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsram#PermissionReference |
Java | software.amazon.awscdk.interfaces.ram.PermissionReference |
Python | aws_cdk.interfaces.aws_ram.PermissionReference |
TypeScript | aws-cdk-lib » interfaces » aws_ram » PermissionReference |
A reference to a Permission resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ram as interfaces_ram } from 'aws-cdk-lib/interfaces';
const permissionReference: interfaces_ram.PermissionReference = {
permissionArn: 'permissionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| permission | string | The Arn of the Permission resource. |
permissionArn
Type:
string
The Arn of the Permission resource.

.NET
Go
Java
Python
TypeScript