Class: Aws::QuickSight::Types::UpdateThemePermissionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::UpdateThemePermissionsRequest
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass UpdateThemePermissionsRequest data as a hash:
{
aws_account_id: "AwsAccountId", # required
theme_id: "RestrictiveResourceId", # required
grant_permissions: [
{
principal: "Principal", # required
actions: ["String"], # required
},
],
revoke_permissions: [
{
principal: "Principal", # required
actions: ["String"], # required
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aws_account_id ⇒ String
The ID of the Amazon Web Services account that contains the theme.
-
#grant_permissions ⇒ Array<Types::ResourcePermission>
A list of resource permissions to be granted for the theme.
-
#revoke_permissions ⇒ Array<Types::ResourcePermission>
A list of resource permissions to be revoked from the theme.
-
#theme_id ⇒ String
The ID for the theme.
Instance Attribute Details
#aws_account_id ⇒ String
The ID of the Amazon Web Services account that contains the theme.
14981 14982 14983 14984 14985 14986 14987 14988 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 14981 class UpdateThemePermissionsRequest < Struct.new( :aws_account_id, :theme_id, :grant_permissions, :revoke_permissions) SENSITIVE = [] include Aws::Structure end |
#grant_permissions ⇒ Array<Types::ResourcePermission>
A list of resource permissions to be granted for the theme.
14981 14982 14983 14984 14985 14986 14987 14988 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 14981 class UpdateThemePermissionsRequest < Struct.new( :aws_account_id, :theme_id, :grant_permissions, :revoke_permissions) SENSITIVE = [] include Aws::Structure end |
#revoke_permissions ⇒ Array<Types::ResourcePermission>
A list of resource permissions to be revoked from the theme.
14981 14982 14983 14984 14985 14986 14987 14988 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 14981 class UpdateThemePermissionsRequest < Struct.new( :aws_account_id, :theme_id, :grant_permissions, :revoke_permissions) SENSITIVE = [] include Aws::Structure end |
#theme_id ⇒ String
The ID for the theme.
14981 14982 14983 14984 14985 14986 14987 14988 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 14981 class UpdateThemePermissionsRequest < Struct.new( :aws_account_id, :theme_id, :grant_permissions, :revoke_permissions) SENSITIVE = [] include Aws::Structure end |