Interface CfnDataSet.ResourcePermissionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.ResourcePermissionProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.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")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.ResourcePermissionPropertystatic final classAn implementation forCfnDataSet.ResourcePermissionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The IAM action to grant or revoke permisions on.The Amazon Resource Name (ARN) of the principal.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActions
The IAM action to grant or revoke permisions on.- See Also:
-
getPrincipal
The Amazon Resource Name (ARN) of the principal. This can be one of the following:.- The ARN of an Amazon Quick Suite user or group associated with a data source or dataset. (This is common.)
- The ARN of an Amazon Quick Suite user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)
- The ARN of an AWS account root: This is an IAM ARN rather than a Quick Suite ARN. Use this option only to share resources (templates) across AWS accounts . (This is less common.)
- See Also:
-
builder
-