import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::S3Vectors::Index */ export declare function getIndex(args: GetIndexArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetIndexArgs { /** * Returns the Amazon Resource Name (ARN) of the specified index. * * Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket/index/my-index` */ indexArn: string; } export interface GetIndexResult { /** * Returns the date and time when the vector index was created. * * Example: `2024-12-21T10:30:00Z` */ readonly creationTime?: string; /** * Returns the Amazon Resource Name (ARN) of the specified index. * * Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket/index/my-index` */ readonly indexArn?: string; /** * User tags (key-value pairs) to associate with the index. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::S3Vectors::Index */ export declare function getIndexOutput(args: GetIndexOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetIndexOutputArgs { /** * Returns the Amazon Resource Name (ARN) of the specified index. * * Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket/index/my-index` */ indexArn: pulumi.Input; }