interface LinkSharingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.LinkSharingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_LinkSharingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.LinkSharingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.LinkSharingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » LinkSharingConfigurationProperty |
A structure that contains the configuration of a shareable link to the dashboard.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const linkSharingConfigurationProperty: quicksight_mixins.CfnDashboardPropsMixin.LinkSharingConfigurationProperty = {
permissions: [{
actions: ['actions'],
principal: 'principal',
resource: 'resource',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| permissions? | IResolvable | (IResolvable | Resource)[] | A structure that contains the permissions of a shareable link. |
permissions?
Type:
IResolvable | (IResolvable | Resource)[]
(optional)
A structure that contains the permissions of a shareable link.

.NET
Go
Java
Python
TypeScript