Interface CfnSpace.ResourcePermissionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSpace.ResourcePermissionProperty.Jsii$Proxy
- Enclosing class:
CfnSpace
@Stability(Stable)
public static interface CfnSpace.ResourcePermissionProperty
extends software.amazon.jsii.JsiiSerializable
A permission granted to a principal on a QuickSight 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")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSpace.ResourcePermissionPropertystatic final classAn implementation forCfnSpace.ResourcePermissionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The list of actions granted to the principal.The ARN of the principal (user or group) receiving the permission.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActions
The list of actions granted to the principal.- See Also:
-
getPrincipal
The ARN of the principal (user or group) receiving the permission.- See Also:
-
builder
-