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