@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)
60 lines (59 loc) • 1.89 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Definition of AWS::Bedrock::AutomatedReasoningPolicyVersion Resource Type
*/
export declare function getAutomatedReasoningPolicyVersion(args: GetAutomatedReasoningPolicyVersionArgs, opts?: pulumi.InvokeOptions): Promise<GetAutomatedReasoningPolicyVersionResult>;
export interface GetAutomatedReasoningPolicyVersionArgs {
/**
* The Amazon Resource Name (ARN) of the policy.
*/
policyArn: string;
/**
* The version number of the policy version.
*/
version: string;
}
export interface GetAutomatedReasoningPolicyVersionResult {
/**
* The timestamp when the policy version was created.
*/
readonly createdAt?: string;
/**
* A hash of the policy definition used to identify the version.
*/
readonly definitionHash?: string;
/**
* The description of the policy version.
*/
readonly description?: string;
/**
* The name of the policy version.
*/
readonly name?: string;
/**
* The unique identifier of the policy.
*/
readonly policyId?: string;
/**
* The timestamp when the policy version was last updated.
*/
readonly updatedAt?: string;
/**
* The version number of the policy version.
*/
readonly version?: string;
}
/**
* Definition of AWS::Bedrock::AutomatedReasoningPolicyVersion Resource Type
*/
export declare function getAutomatedReasoningPolicyVersionOutput(args: GetAutomatedReasoningPolicyVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAutomatedReasoningPolicyVersionResult>;
export interface GetAutomatedReasoningPolicyVersionOutputArgs {
/**
* The Amazon Resource Name (ARN) of the policy.
*/
policyArn: pulumi.Input<string>;
/**
* The version number of the policy version.
*/
version: pulumi.Input<string>;
}