Interface CfnDashboard.LinkSharingConfigurationProperty

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

@Stability(Stable) public static interface CfnDashboard.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.services.quicksight.*;
 LinkSharingConfigurationProperty linkSharingConfigurationProperty = LinkSharingConfigurationProperty.builder()
         .permissions(List.of(ResourcePermissionProperty.builder()
                 .actions(List.of("actions"))
                 .principal("principal")
                 // the properties below are optional
                 .resource("resource")
                 .build()))
         .build();
 

See Also: