Class: Aws::QuickSight::Types::UpdateTemplatePermissionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::UpdateTemplatePermissionsRequest
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass UpdateTemplatePermissionsRequest data as a hash:
{
aws_account_id: "AwsAccountId", # required
template_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 template.
-
#grant_permissions ⇒ Array<Types::ResourcePermission>
A list of resource permissions to be granted on the template.
-
#revoke_permissions ⇒ Array<Types::ResourcePermission>
A list of resource permissions to be revoked from the template.
-
#template_id ⇒ String
The ID for the template.
Instance Attribute Details
#aws_account_id ⇒ String
The ID of the Amazon Web Services account that contains the template.
14732 14733 14734 14735 14736 14737 14738 14739 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 14732 class UpdateTemplatePermissionsRequest < Struct.new( :aws_account_id, :template_id, :grant_permissions, :revoke_permissions) SENSITIVE = [] include Aws::Structure end |
#grant_permissions ⇒ Array<Types::ResourcePermission>
A list of resource permissions to be granted on the template.
14732 14733 14734 14735 14736 14737 14738 14739 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 14732 class UpdateTemplatePermissionsRequest < Struct.new( :aws_account_id, :template_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 template.
14732 14733 14734 14735 14736 14737 14738 14739 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 14732 class UpdateTemplatePermissionsRequest < Struct.new( :aws_account_id, :template_id, :grant_permissions, :revoke_permissions) SENSITIVE = [] include Aws::Structure end |
#template_id ⇒ String
The ID for the template.
14732 14733 14734 14735 14736 14737 14738 14739 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 14732 class UpdateTemplatePermissionsRequest < Struct.new( :aws_account_id, :template_id, :grant_permissions, :revoke_permissions) SENSITIVE = [] include Aws::Structure end |