interface CustomPermissionsReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QuickSight.CustomPermissionsReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsquicksight#CustomPermissionsReference |
Java | software.amazon.awscdk.interfaces.quicksight.CustomPermissionsReference |
Python | aws_cdk.interfaces.aws_quicksight.CustomPermissionsReference |
TypeScript | aws-cdk-lib » interfaces » aws_quicksight » CustomPermissionsReference |
A reference to a CustomPermissions resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as interfaces_aws_quicksight } from 'aws-cdk-lib/interfaces';
const customPermissionsReference: interfaces_aws_quicksight.CustomPermissionsReference = {
awsAccountId: 'awsAccountId',
customPermissionsArn: 'customPermissionsArn',
customPermissionsName: 'customPermissionsName',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AwsAccountId of the CustomPermissions resource. |
| custom | string | The ARN of the CustomPermissions resource. |
| custom | string | The CustomPermissionsName of the CustomPermissions resource. |
awsAccountId
Type:
string
The AwsAccountId of the CustomPermissions resource.
customPermissionsArn
Type:
string
The ARN of the CustomPermissions resource.
customPermissionsName
Type:
string
The CustomPermissionsName of the CustomPermissions resource.

.NET
Go
Java
Python
TypeScript