UNPKG

@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)

40 lines (39 loc) 1.45 kB
import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for AWS::S3Vectors::VectorBucket */ export declare function getVectorBucket(args: GetVectorBucketArgs, opts?: pulumi.InvokeOptions): Promise<GetVectorBucketResult>; 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; /** * 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<GetVectorBucketResult>; 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<string>; }