UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

45 lines (44 loc) 1.62 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Definition of the AWS::QuickSight::CustomPermissions Resource Type. */ export declare function getCustomPermissions(args: GetCustomPermissionsArgs, opts?: pulumi.InvokeOptions): Promise<GetCustomPermissionsResult>; export interface GetCustomPermissionsArgs { /** * The ID of the AWS account that contains the custom permission configuration that you want to update. */ awsAccountId: string; /** * The name of the custom permissions profile. */ customPermissionsName: string; } export interface GetCustomPermissionsResult { /** * The Amazon Resource Name (ARN) of the custom permissions profile. */ readonly arn?: string; /** * A set of actions in the custom permissions profile. */ readonly capabilities?: outputs.quicksight.CustomPermissionsCapabilities; /** * The tags to associate with the custom permissions profile. */ readonly tags?: outputs.Tag[]; } /** * Definition of the AWS::QuickSight::CustomPermissions Resource Type. */ export declare function getCustomPermissionsOutput(args: GetCustomPermissionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCustomPermissionsResult>; export interface GetCustomPermissionsOutputArgs { /** * The ID of the AWS account that contains the custom permission configuration that you want to update. */ awsAccountId: pulumi.Input<string>; /** * The name of the custom permissions profile. */ customPermissionsName: pulumi.Input<string>; }