import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::BedrockAgentCore::Memory */ export declare class Memory extends pulumi.CustomResource { /** * Get an existing Memory resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Memory; /** * Returns true if the given object is an instance of Memory. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Memory; /** * The timestamp when the memory record was created. */ readonly createdAt: pulumi.Output; readonly description: pulumi.Output; /** * The memory encryption key Amazon Resource Name (ARN). */ readonly encryptionKeyArn: pulumi.Output; /** * Duration in days until memory events expire */ readonly eventExpiryDuration: pulumi.Output; readonly failureReason: pulumi.Output; readonly memoryArn: pulumi.Output; /** * The memory role ARN. */ readonly memoryExecutionRoleArn: pulumi.Output; /** * The memory ID. */ readonly memoryId: pulumi.Output; /** * The memory strategies. */ readonly memoryStrategies: pulumi.Output; /** * The memory name. */ readonly name: pulumi.Output; /** * The memory status. */ readonly status: pulumi.Output; readonly streamDeliveryResources: pulumi.Output; /** * The tags for the resources. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; readonly updatedAt: pulumi.Output; /** * Create a Memory resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: MemoryArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Memory resource. */ export interface MemoryArgs { description?: pulumi.Input; /** * The memory encryption key Amazon Resource Name (ARN). */ encryptionKeyArn?: pulumi.Input; /** * Duration in days until memory events expire */ eventExpiryDuration: pulumi.Input; /** * The memory role ARN. */ memoryExecutionRoleArn?: pulumi.Input; /** * The memory strategies. */ memoryStrategies?: pulumi.Input[]>; /** * The memory name. */ name?: pulumi.Input; streamDeliveryResources?: pulumi.Input; /** * The tags for the resources. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }