interface PermissionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QBusiness.PermissionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsqbusiness#PermissionReference |
Java | software.amazon.awscdk.interfaces.qbusiness.PermissionReference |
Python | aws_cdk.interfaces.aws_qbusiness.PermissionReference |
TypeScript | aws-cdk-lib » interfaces » aws_qbusiness » 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_qbusiness as interfaces_qbusiness } from 'aws-cdk-lib/interfaces';
const permissionReference: interfaces_qbusiness.PermissionReference = {
applicationId: 'applicationId',
statementId: 'statementId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationId of the Permission resource. |
| statement | string | The StatementId of the Permission resource. |
applicationId
Type:
string
The ApplicationId of the Permission resource.
statementId
Type:
string
The StatementId of the Permission resource.

.NET
Go
Java
Python
TypeScript