Interface CfnDashboardPropsMixin.LinkSharingConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDashboardPropsMixin.LinkSharingConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDashboardPropsMixin

@Stability(Stable) public static interface CfnDashboardPropsMixin.LinkSharingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.mixins.preview.services.quicksight.mixins.*;
 LinkSharingConfigurationProperty linkSharingConfigurationProperty = LinkSharingConfigurationProperty.builder()
         .permissions(List.of(ResourcePermissionProperty.builder()
                 .actions(List.of("actions"))
                 .principal("principal")
                 .resource("resource")
                 .build()))
         .build();
 

See Also: