@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)
106 lines (105 loc) • 3.52 kB
TypeScript
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<pulumi.ID>, 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<string>;
readonly description: pulumi.Output<string | undefined>;
/**
* The memory encryption key Amazon Resource Name (ARN).
*/
readonly encryptionKeyArn: pulumi.Output<string | undefined>;
/**
* Duration in days until memory events expire
*/
readonly eventExpiryDuration: pulumi.Output<number>;
readonly failureReason: pulumi.Output<string>;
readonly memoryArn: pulumi.Output<string>;
/**
* The memory role ARN.
*/
readonly memoryExecutionRoleArn: pulumi.Output<string | undefined>;
/**
* The memory ID.
*/
readonly memoryId: pulumi.Output<string>;
/**
* The memory strategies.
*/
readonly memoryStrategies: pulumi.Output<outputs.bedrockagentcore.MemoryStrategy[] | undefined>;
/**
* The memory name.
*/
readonly name: pulumi.Output<string>;
/**
* The memory status.
*/
readonly status: pulumi.Output<enums.bedrockagentcore.MemoryStatus>;
/**
* The tags for the resources.
*/
readonly tags: pulumi.Output<{
[key: string]: string;
} | undefined>;
readonly updatedAt: pulumi.Output<string>;
/**
* 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<string>;
/**
* The memory encryption key Amazon Resource Name (ARN).
*/
encryptionKeyArn?: pulumi.Input<string>;
/**
* Duration in days until memory events expire
*/
eventExpiryDuration: pulumi.Input<number>;
/**
* The memory role ARN.
*/
memoryExecutionRoleArn?: pulumi.Input<string>;
/**
* The memory strategies.
*/
memoryStrategies?: pulumi.Input<pulumi.Input<inputs.bedrockagentcore.MemoryStrategyArgs>[]>;
/**
* The memory name.
*/
name?: pulumi.Input<string>;
/**
* The tags for the resources.
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
}