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)

66 lines (65 loc) 2.14 kB
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<GetAutomatedReasoningPolicyResult>; 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<GetAutomatedReasoningPolicyResult>; export interface GetAutomatedReasoningPolicyOutputArgs { /** * The Amazon Resource Name (ARN) of the policy. */ policyArn: pulumi.Input<string>; }