import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Definition of AWS::Bedrock::AutomatedReasoningPolicy Resource Type */ export declare function getAutomatedReasoningPolicy(args: GetAutomatedReasoningPolicyArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetAutomatedReasoningPolicyArgs { /** * The Amazon Resource Name (ARN) of the policy. */ policyArn: string; } export interface GetAutomatedReasoningPolicyResult { /** * The timestamp when the policy was created. */ readonly createdAt?: string; /** * A hash of the policy definition used to identify the version. */ readonly definitionHash?: string; /** * The description of the policy. */ readonly description?: string; readonly kmsKeyArn?: string; /** * The name of the policy. */ readonly name?: string; /** * The Amazon Resource Name (ARN) of the policy. */ readonly policyArn?: string; /** * The complete policy definition generated by the build workflow, containing all rules, variables, and custom types extracted from the source documents. */ readonly policyDefinition?: outputs.bedrock.AutomatedReasoningPolicyPolicyDefinition; /** * The unique identifier of the policy. */ readonly policyId?: string; /** * The tags associated with the Automated Reasoning policy. */ readonly tags?: outputs.Tag[]; /** * The timestamp when the policy was last updated. */ readonly updatedAt?: string; /** * The version of the policy. */ readonly version?: string; } /** * Definition of AWS::Bedrock::AutomatedReasoningPolicy Resource Type */ export declare function getAutomatedReasoningPolicyOutput(args: GetAutomatedReasoningPolicyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetAutomatedReasoningPolicyOutputArgs { /** * The Amazon Resource Name (ARN) of the policy. */ policyArn: pulumi.Input; }