import * as pulumi from "@pulumi/pulumi"; /** * Definition of AWS::Bedrock::ResourcePolicy Resource Type */ export declare function getResourcePolicy(args: GetResourcePolicyArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetResourcePolicyArgs { /** * The ARN of the Bedrock Guardrail or Guardrail Profile resource */ resourceArn: string; } export interface GetResourcePolicyResult { /** * The IAM policy document defining access permissions for the guardrail and guardrail profile resources * * Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::Bedrock::ResourcePolicy` for more information about the expected schema for this property. */ readonly policyDocument?: any; } /** * Definition of AWS::Bedrock::ResourcePolicy Resource Type */ export declare function getResourcePolicyOutput(args: GetResourcePolicyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetResourcePolicyOutputArgs { /** * The ARN of the Bedrock Guardrail or Guardrail Profile resource */ resourceArn: pulumi.Input; }