Interface CfnTheme.ResourcePermissionProperty

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

@Stability(Stable) public static interface CfnTheme.ResourcePermissionProperty extends software.amazon.jsii.JsiiSerializable
Permission for the resource.

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.*;
 ResourcePermissionProperty resourcePermissionProperty = ResourcePermissionProperty.builder()
         .actions(List.of("actions"))
         .principal("principal")
         // the properties below are optional
         .resource("resource")
         .build();
 

See Also: