import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for AWS::APS::ResourcePolicy */ export declare function getResourcePolicy(args: GetResourcePolicyArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetResourcePolicyArgs { /** * The Arn of an APS Workspace that the PolicyDocument will be attached to. */ workspaceArn: string; } export interface GetResourcePolicyResult { /** * The JSON to use as the Resource-based Policy. */ readonly policyDocument?: string; } /** * Resource Type definition for AWS::APS::ResourcePolicy */ export declare function getResourcePolicyOutput(args: GetResourcePolicyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetResourcePolicyOutputArgs { /** * The Arn of an APS Workspace that the PolicyDocument will be attached to. */ workspaceArn: pulumi.Input; }