@aws-sdk/client-s3vectors 3.1077.0 → 3.1078.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/dist-cjs/index.js +27 -193
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/CreateIndexCommand.js +2 -14
  4. package/dist-es/commands/CreateVectorBucketCommand.js +2 -14
  5. package/dist-es/commands/DeleteIndexCommand.js +2 -14
  6. package/dist-es/commands/DeleteVectorBucketCommand.js +2 -14
  7. package/dist-es/commands/DeleteVectorBucketPolicyCommand.js +2 -14
  8. package/dist-es/commands/DeleteVectorsCommand.js +2 -14
  9. package/dist-es/commands/GetIndexCommand.js +2 -14
  10. package/dist-es/commands/GetVectorBucketCommand.js +2 -14
  11. package/dist-es/commands/GetVectorBucketPolicyCommand.js +2 -14
  12. package/dist-es/commands/GetVectorsCommand.js +2 -14
  13. package/dist-es/commands/ListIndexesCommand.js +2 -14
  14. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  15. package/dist-es/commands/ListVectorBucketsCommand.js +2 -14
  16. package/dist-es/commands/ListVectorsCommand.js +2 -14
  17. package/dist-es/commands/PutVectorBucketPolicyCommand.js +2 -14
  18. package/dist-es/commands/PutVectorsCommand.js +2 -14
  19. package/dist-es/commands/QueryVectorsCommand.js +2 -14
  20. package/dist-es/commands/TagResourceCommand.js +2 -14
  21. package/dist-es/commands/UntagResourceCommand.js +2 -14
  22. package/dist-es/index.js +1 -0
  23. package/dist-types/commandBuilder.d.ts +18 -0
  24. package/dist-types/commands/CreateIndexCommand.d.ts +3 -8
  25. package/dist-types/commands/CreateVectorBucketCommand.d.ts +3 -8
  26. package/dist-types/commands/DeleteIndexCommand.d.ts +3 -8
  27. package/dist-types/commands/DeleteVectorBucketCommand.d.ts +3 -8
  28. package/dist-types/commands/DeleteVectorBucketPolicyCommand.d.ts +3 -8
  29. package/dist-types/commands/DeleteVectorsCommand.d.ts +3 -8
  30. package/dist-types/commands/GetIndexCommand.d.ts +3 -8
  31. package/dist-types/commands/GetVectorBucketCommand.d.ts +3 -8
  32. package/dist-types/commands/GetVectorBucketPolicyCommand.d.ts +3 -8
  33. package/dist-types/commands/GetVectorsCommand.d.ts +3 -8
  34. package/dist-types/commands/ListIndexesCommand.d.ts +3 -8
  35. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  36. package/dist-types/commands/ListVectorBucketsCommand.d.ts +3 -8
  37. package/dist-types/commands/ListVectorsCommand.d.ts +3 -8
  38. package/dist-types/commands/PutVectorBucketPolicyCommand.d.ts +3 -8
  39. package/dist-types/commands/PutVectorsCommand.d.ts +3 -8
  40. package/dist-types/commands/QueryVectorsCommand.d.ts +3 -8
  41. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  42. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  43. package/dist-types/index.d.ts +1 -0
  44. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  45. package/dist-types/ts3.4/commands/CreateIndexCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/commands/CreateVectorBucketCommand.d.ts +7 -16
  47. package/dist-types/ts3.4/commands/DeleteIndexCommand.d.ts +7 -16
  48. package/dist-types/ts3.4/commands/DeleteVectorBucketCommand.d.ts +7 -16
  49. package/dist-types/ts3.4/commands/DeleteVectorBucketPolicyCommand.d.ts +7 -16
  50. package/dist-types/ts3.4/commands/DeleteVectorsCommand.d.ts +7 -16
  51. package/dist-types/ts3.4/commands/GetIndexCommand.d.ts +7 -16
  52. package/dist-types/ts3.4/commands/GetVectorBucketCommand.d.ts +7 -16
  53. package/dist-types/ts3.4/commands/GetVectorBucketPolicyCommand.d.ts +7 -16
  54. package/dist-types/ts3.4/commands/GetVectorsCommand.d.ts +7 -16
  55. package/dist-types/ts3.4/commands/ListIndexesCommand.d.ts +7 -16
  56. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  57. package/dist-types/ts3.4/commands/ListVectorBucketsCommand.d.ts +7 -16
  58. package/dist-types/ts3.4/commands/ListVectorsCommand.d.ts +7 -16
  59. package/dist-types/ts3.4/commands/PutVectorBucketPolicyCommand.d.ts +7 -16
  60. package/dist-types/ts3.4/commands/PutVectorsCommand.d.ts +7 -16
  61. package/dist-types/ts3.4/commands/QueryVectorsCommand.d.ts +7 -16
  62. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  63. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  64. package/dist-types/ts3.4/index.d.ts +1 -0
  65. package/package.json +8 -8
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { UntagResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UntagResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("S3Vectors", "UntagResource", {})
13
- .n("S3VectorsClient", "UntagResourceCommand")
14
- .sc(UntagResource$)
15
- .build() {
3
+ export class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./S3VectorsClient";
2
2
  export * from "./S3Vectors";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./pagination";
6
7
  export * from "./models/enums";
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./S3VectorsClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { CreateIndexInput, CreateIndexOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface CreateIndexCommandInput extends CreateIndexInput {
22
19
  export interface CreateIndexCommandOutput extends CreateIndexOutput, __MetadataBearer {
23
20
  }
24
21
  declare const CreateIndexCommand_base: {
25
- new (input: CreateIndexCommandInput): import("@smithy/core/client").CommandImpl<CreateIndexCommandInput, CreateIndexCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateIndexCommandInput): import("@smithy/core/client").CommandImpl<CreateIndexCommandInput, CreateIndexCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CreateIndexCommandInput): import("@smithy/core/client").CommandImpl<CreateIndexCommandInput, CreateIndexCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CreateIndexCommandInput): import("@smithy/core/client").CommandImpl<CreateIndexCommandInput, CreateIndexCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates a vector index within a vector bucket. To specify the vector bucket, you must use either the vector bucket name or the vector bucket Amazon Resource Name (ARN).</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:CreateIndex</code> permission to use this operation.</p> <p>You must have the <code>s3vectors:TagResource</code> permission in addition to <code>s3vectors:CreateIndex</code> permission to create a vector index with tags.</p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { CreateVectorBucketInput, CreateVectorBucketOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface CreateVectorBucketCommandInput extends CreateVectorBucketInput
22
19
  export interface CreateVectorBucketCommandOutput extends CreateVectorBucketOutput, __MetadataBearer {
23
20
  }
24
21
  declare const CreateVectorBucketCommand_base: {
25
- new (input: CreateVectorBucketCommandInput): import("@smithy/core/client").CommandImpl<CreateVectorBucketCommandInput, CreateVectorBucketCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateVectorBucketCommandInput): import("@smithy/core/client").CommandImpl<CreateVectorBucketCommandInput, CreateVectorBucketCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CreateVectorBucketCommandInput): import("@smithy/core/client").CommandImpl<CreateVectorBucketCommandInput, CreateVectorBucketCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CreateVectorBucketCommandInput): import("@smithy/core/client").CommandImpl<CreateVectorBucketCommandInput, CreateVectorBucketCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates a vector bucket in the Amazon Web Services Region that you want your bucket to be in. </p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:CreateVectorBucket</code> permission to use this operation. </p> <p>You must have the <code>s3vectors:TagResource</code> permission in addition to <code>s3vectors:CreateVectorBucket</code> permission to create a vector bucket with tags.</p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeleteIndexInput, DeleteIndexOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteIndexCommandInput extends DeleteIndexInput {
22
19
  export interface DeleteIndexCommandOutput extends DeleteIndexOutput, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteIndexCommand_base: {
25
- new (input: DeleteIndexCommandInput): import("@smithy/core/client").CommandImpl<DeleteIndexCommandInput, DeleteIndexCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [DeleteIndexCommandInput]): import("@smithy/core/client").CommandImpl<DeleteIndexCommandInput, DeleteIndexCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteIndexCommandInput): import("@smithy/core/client").CommandImpl<DeleteIndexCommandInput, DeleteIndexCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [DeleteIndexCommandInput]): import("@smithy/core/client").CommandImpl<DeleteIndexCommandInput, DeleteIndexCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes a vector index. To specify the vector index, you can either use both the vector bucket name and vector index name, or use the vector index Amazon Resource Name (ARN). </p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:DeleteIndex</code> permission to use this operation. </p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeleteVectorBucketInput, DeleteVectorBucketOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteVectorBucketCommandInput extends DeleteVectorBucketInput
22
19
  export interface DeleteVectorBucketCommandOutput extends DeleteVectorBucketOutput, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteVectorBucketCommand_base: {
25
- new (input: DeleteVectorBucketCommandInput): import("@smithy/core/client").CommandImpl<DeleteVectorBucketCommandInput, DeleteVectorBucketCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [DeleteVectorBucketCommandInput]): import("@smithy/core/client").CommandImpl<DeleteVectorBucketCommandInput, DeleteVectorBucketCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteVectorBucketCommandInput): import("@smithy/core/client").CommandImpl<DeleteVectorBucketCommandInput, DeleteVectorBucketCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [DeleteVectorBucketCommandInput]): import("@smithy/core/client").CommandImpl<DeleteVectorBucketCommandInput, DeleteVectorBucketCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes a vector bucket. All vector indexes in the vector bucket must be deleted before the vector bucket can be deleted. To perform this operation, you must use either the vector bucket name or the vector bucket Amazon Resource Name (ARN). </p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:DeleteVectorBucket</code> permission to use this operation. </p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeleteVectorBucketPolicyInput, DeleteVectorBucketPolicyOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteVectorBucketPolicyCommandInput extends DeleteVectorBucket
22
19
  export interface DeleteVectorBucketPolicyCommandOutput extends DeleteVectorBucketPolicyOutput, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteVectorBucketPolicyCommand_base: {
25
- new (input: DeleteVectorBucketPolicyCommandInput): import("@smithy/core/client").CommandImpl<DeleteVectorBucketPolicyCommandInput, DeleteVectorBucketPolicyCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [DeleteVectorBucketPolicyCommandInput]): import("@smithy/core/client").CommandImpl<DeleteVectorBucketPolicyCommandInput, DeleteVectorBucketPolicyCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteVectorBucketPolicyCommandInput): import("@smithy/core/client").CommandImpl<DeleteVectorBucketPolicyCommandInput, DeleteVectorBucketPolicyCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [DeleteVectorBucketPolicyCommandInput]): import("@smithy/core/client").CommandImpl<DeleteVectorBucketPolicyCommandInput, DeleteVectorBucketPolicyCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes a vector bucket policy. To specify the bucket, you must use either the vector bucket name or the vector bucket Amazon Resource Name (ARN).</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:DeleteVectorBucketPolicy</code> permission to use this operation. </p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeleteVectorsInput, DeleteVectorsOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteVectorsCommandInput extends DeleteVectorsInput {
22
19
  export interface DeleteVectorsCommandOutput extends DeleteVectorsOutput, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteVectorsCommand_base: {
25
- new (input: DeleteVectorsCommandInput): import("@smithy/core/client").CommandImpl<DeleteVectorsCommandInput, DeleteVectorsCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteVectorsCommandInput): import("@smithy/core/client").CommandImpl<DeleteVectorsCommandInput, DeleteVectorsCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteVectorsCommandInput): import("@smithy/core/client").CommandImpl<DeleteVectorsCommandInput, DeleteVectorsCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteVectorsCommandInput): import("@smithy/core/client").CommandImpl<DeleteVectorsCommandInput, DeleteVectorsCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes one or more vectors in a vector index. To specify the vector index, you can either use both the vector bucket name and vector index name, or use the vector index Amazon Resource Name (ARN). </p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:DeleteVectors</code> permission to use this operation. </p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetIndexInput, GetIndexOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetIndexCommandInput extends GetIndexInput {
22
19
  export interface GetIndexCommandOutput extends GetIndexOutput, __MetadataBearer {
23
20
  }
24
21
  declare const GetIndexCommand_base: {
25
- new (input: GetIndexCommandInput): import("@smithy/core/client").CommandImpl<GetIndexCommandInput, GetIndexCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GetIndexCommandInput]): import("@smithy/core/client").CommandImpl<GetIndexCommandInput, GetIndexCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetIndexCommandInput): import("@smithy/core/client").CommandImpl<GetIndexCommandInput, GetIndexCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [GetIndexCommandInput]): import("@smithy/core/client").CommandImpl<GetIndexCommandInput, GetIndexCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns vector index attributes. To specify the vector index, you can either use both the vector bucket name and the vector index name, or use the vector index Amazon Resource Name (ARN). </p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:GetIndex</code> permission to use this operation. </p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetVectorBucketInput, GetVectorBucketOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetVectorBucketCommandInput extends GetVectorBucketInput {
22
19
  export interface GetVectorBucketCommandOutput extends GetVectorBucketOutput, __MetadataBearer {
23
20
  }
24
21
  declare const GetVectorBucketCommand_base: {
25
- new (input: GetVectorBucketCommandInput): import("@smithy/core/client").CommandImpl<GetVectorBucketCommandInput, GetVectorBucketCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GetVectorBucketCommandInput]): import("@smithy/core/client").CommandImpl<GetVectorBucketCommandInput, GetVectorBucketCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetVectorBucketCommandInput): import("@smithy/core/client").CommandImpl<GetVectorBucketCommandInput, GetVectorBucketCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [GetVectorBucketCommandInput]): import("@smithy/core/client").CommandImpl<GetVectorBucketCommandInput, GetVectorBucketCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns vector bucket attributes. To specify the bucket, you must use either the vector bucket name or the vector bucket Amazon Resource Name (ARN). </p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:GetVectorBucket</code> permission to use this operation. </p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetVectorBucketPolicyInput, GetVectorBucketPolicyOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetVectorBucketPolicyCommandInput extends GetVectorBucketPolicy
22
19
  export interface GetVectorBucketPolicyCommandOutput extends GetVectorBucketPolicyOutput, __MetadataBearer {
23
20
  }
24
21
  declare const GetVectorBucketPolicyCommand_base: {
25
- new (input: GetVectorBucketPolicyCommandInput): import("@smithy/core/client").CommandImpl<GetVectorBucketPolicyCommandInput, GetVectorBucketPolicyCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GetVectorBucketPolicyCommandInput]): import("@smithy/core/client").CommandImpl<GetVectorBucketPolicyCommandInput, GetVectorBucketPolicyCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetVectorBucketPolicyCommandInput): import("@smithy/core/client").CommandImpl<GetVectorBucketPolicyCommandInput, GetVectorBucketPolicyCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [GetVectorBucketPolicyCommandInput]): import("@smithy/core/client").CommandImpl<GetVectorBucketPolicyCommandInput, GetVectorBucketPolicyCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Gets details about a vector bucket policy. To specify the bucket, you must use either the vector bucket name or the vector bucket Amazon Resource Name (ARN). </p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:GetVectorBucketPolicy</code> permission to use this operation. </p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetVectorsInput, GetVectorsOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetVectorsCommandInput extends GetVectorsInput {
22
19
  export interface GetVectorsCommandOutput extends GetVectorsOutput, __MetadataBearer {
23
20
  }
24
21
  declare const GetVectorsCommand_base: {
25
- new (input: GetVectorsCommandInput): import("@smithy/core/client").CommandImpl<GetVectorsCommandInput, GetVectorsCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetVectorsCommandInput): import("@smithy/core/client").CommandImpl<GetVectorsCommandInput, GetVectorsCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetVectorsCommandInput): import("@smithy/core/client").CommandImpl<GetVectorsCommandInput, GetVectorsCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetVectorsCommandInput): import("@smithy/core/client").CommandImpl<GetVectorsCommandInput, GetVectorsCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns vector attributes. To specify the vector index, you can either use both the vector bucket name and the vector index name, or use the vector index Amazon Resource Name (ARN). </p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:GetVectors</code> permission to use this operation. </p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListIndexesInput, ListIndexesOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListIndexesCommandInput extends ListIndexesInput {
22
19
  export interface ListIndexesCommandOutput extends ListIndexesOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListIndexesCommand_base: {
25
- new (input: ListIndexesCommandInput): import("@smithy/core/client").CommandImpl<ListIndexesCommandInput, ListIndexesCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListIndexesCommandInput]): import("@smithy/core/client").CommandImpl<ListIndexesCommandInput, ListIndexesCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListIndexesCommandInput): import("@smithy/core/client").CommandImpl<ListIndexesCommandInput, ListIndexesCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListIndexesCommandInput]): import("@smithy/core/client").CommandImpl<ListIndexesCommandInput, ListIndexesCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a list of all the vector indexes within the specified vector bucket. To specify the bucket, you must use either the vector bucket name or the vector bucket Amazon Resource Name (ARN). </p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:ListIndexes</code> permission to use this operation. </p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceInpu
22
19
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListTagsForResourceCommand_base: {
25
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Lists all of the tags applied to a specified Amazon S3 Vectors resource. Each tag is a label consisting of a key and value pair. Tags can help you organize, track costs for, and control access to resources. </p> <note> <p>For a list of S3 resources that support tagging, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/tagging.html#manage-tags">Managing tags for Amazon S3 resources</a>.</p> </note> <dl> <dt>Permissions</dt> <dd> <p>For vector buckets and vector indexes, you must have the <code>s3vectors:ListTagsForResource</code> permission to use this operation.</p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListVectorBucketsInput, ListVectorBucketsOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListVectorBucketsCommandInput extends ListVectorBucketsInput {
22
19
  export interface ListVectorBucketsCommandOutput extends ListVectorBucketsOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListVectorBucketsCommand_base: {
25
- new (input: ListVectorBucketsCommandInput): import("@smithy/core/client").CommandImpl<ListVectorBucketsCommandInput, ListVectorBucketsCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListVectorBucketsCommandInput]): import("@smithy/core/client").CommandImpl<ListVectorBucketsCommandInput, ListVectorBucketsCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListVectorBucketsCommandInput): import("@smithy/core/client").CommandImpl<ListVectorBucketsCommandInput, ListVectorBucketsCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListVectorBucketsCommandInput]): import("@smithy/core/client").CommandImpl<ListVectorBucketsCommandInput, ListVectorBucketsCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a list of all the vector buckets that are owned by the authenticated sender of the request.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:ListVectorBuckets</code> permission to use this operation. </p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListVectorsInput, ListVectorsOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListVectorsCommandInput extends ListVectorsInput {
22
19
  export interface ListVectorsCommandOutput extends ListVectorsOutput, __MetadataBearer {
23
20
  }
24
21
  declare const ListVectorsCommand_base: {
25
- new (input: ListVectorsCommandInput): import("@smithy/core/client").CommandImpl<ListVectorsCommandInput, ListVectorsCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListVectorsCommandInput]): import("@smithy/core/client").CommandImpl<ListVectorsCommandInput, ListVectorsCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListVectorsCommandInput): import("@smithy/core/client").CommandImpl<ListVectorsCommandInput, ListVectorsCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListVectorsCommandInput]): import("@smithy/core/client").CommandImpl<ListVectorsCommandInput, ListVectorsCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>List vectors in the specified vector index. To specify the vector index, you can either use both the vector bucket name and the vector index name, or use the vector index Amazon Resource Name (ARN). </p> <p> <code>ListVectors</code> operations proceed sequentially; however, for faster performance on a large number of vectors in a vector index, applications can request a parallel <code>ListVectors</code> operation by providing the <code>segmentCount</code> and <code>segmentIndex</code> parameters.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:ListVectors</code> permission to use this operation. Additional permissions are required based on the request parameters you specify:</p> <ul> <li> <p>With only <code>s3vectors:ListVectors</code> permission, you can list vector keys when <code>returnData</code> and <code>returnMetadata</code> are both set to false or not specified..</p> </li> <li> <p>If you set <code>returnData</code> or <code>returnMetadata</code> to true, you must have both <code>s3vectors:ListVectors</code> and <code>s3vectors:GetVectors</code> permissions. The request fails with a <code>403 Forbidden</code> error if you request vector data or metadata without the <code>s3vectors:GetVectors</code> permission.</p> </li> </ul> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { PutVectorBucketPolicyInput, PutVectorBucketPolicyOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface PutVectorBucketPolicyCommandInput extends PutVectorBucketPolicy
22
19
  export interface PutVectorBucketPolicyCommandOutput extends PutVectorBucketPolicyOutput, __MetadataBearer {
23
20
  }
24
21
  declare const PutVectorBucketPolicyCommand_base: {
25
- new (input: PutVectorBucketPolicyCommandInput): import("@smithy/core/client").CommandImpl<PutVectorBucketPolicyCommandInput, PutVectorBucketPolicyCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: PutVectorBucketPolicyCommandInput): import("@smithy/core/client").CommandImpl<PutVectorBucketPolicyCommandInput, PutVectorBucketPolicyCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: PutVectorBucketPolicyCommandInput): import("@smithy/core/client").CommandImpl<PutVectorBucketPolicyCommandInput, PutVectorBucketPolicyCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: PutVectorBucketPolicyCommandInput): import("@smithy/core/client").CommandImpl<PutVectorBucketPolicyCommandInput, PutVectorBucketPolicyCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates a bucket policy for a vector bucket. To specify the bucket, you must use either the vector bucket name or the vector bucket Amazon Resource Name (ARN). </p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:PutVectorBucketPolicy</code> permission to use this operation. </p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { PutVectorsInput, PutVectorsOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface PutVectorsCommandInput extends PutVectorsInput {
22
19
  export interface PutVectorsCommandOutput extends PutVectorsOutput, __MetadataBearer {
23
20
  }
24
21
  declare const PutVectorsCommand_base: {
25
- new (input: PutVectorsCommandInput): import("@smithy/core/client").CommandImpl<PutVectorsCommandInput, PutVectorsCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: PutVectorsCommandInput): import("@smithy/core/client").CommandImpl<PutVectorsCommandInput, PutVectorsCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: PutVectorsCommandInput): import("@smithy/core/client").CommandImpl<PutVectorsCommandInput, PutVectorsCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: PutVectorsCommandInput): import("@smithy/core/client").CommandImpl<PutVectorsCommandInput, PutVectorsCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Adds one or more vectors to a vector index. To specify the vector index, you can either use both the vector bucket name and the vector index name, or use the vector index Amazon Resource Name (ARN). </p> <p>For more information about limits, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-vectors-limitations.html">Limitations and restrictions</a> in the <i>Amazon S3 User Guide</i>.</p> <note> <p>When inserting vector data into your vector index, you must provide the vector data as <code>float32</code> (32-bit floating point) values. If you pass higher-precision values to an Amazon Web Services SDK, S3 Vectors converts the values to 32-bit floating point before storing them, and <code>GetVectors</code>, <code>ListVectors</code>, and <code>QueryVectors</code> operations return the float32 values. Different Amazon Web Services SDKs may have different default numeric types, so ensure your vectors are properly formatted as <code>float32</code> values regardless of which SDK you're using. For example, in Python, use <code>numpy.float32</code> or explicitly cast your values.</p> </note> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:PutVectors</code> permission to use this operation. </p> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { QueryVectorsInput, QueryVectorsOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface QueryVectorsCommandInput extends QueryVectorsInput {
22
19
  export interface QueryVectorsCommandOutput extends QueryVectorsOutput, __MetadataBearer {
23
20
  }
24
21
  declare const QueryVectorsCommand_base: {
25
- new (input: QueryVectorsCommandInput): import("@smithy/core/client").CommandImpl<QueryVectorsCommandInput, QueryVectorsCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: QueryVectorsCommandInput): import("@smithy/core/client").CommandImpl<QueryVectorsCommandInput, QueryVectorsCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: QueryVectorsCommandInput): import("@smithy/core/client").CommandImpl<QueryVectorsCommandInput, QueryVectorsCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: QueryVectorsCommandInput): import("@smithy/core/client").CommandImpl<QueryVectorsCommandInput, QueryVectorsCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Performs an approximate nearest neighbor search query in a vector index using a query vector. By default, it returns the keys of approximate nearest neighbors. You can optionally include the computed distance (between the query vector and each vector in the response) and metadata of each vector in the response.</p> <p>To specify the vector index, you can either use both the vector bucket name and the vector index name, or use the vector index Amazon Resource Name (ARN). </p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3vectors:QueryVectors</code> permission to use this operation. Additional permissions are required based on the request parameters you specify:</p> <ul> <li> <p>With only <code>s3vectors:QueryVectors</code> permission, you can retrieve vector keys of approximate nearest neighbors and computed distances between these vectors. This permission is sufficient only when you don't set any metadata filters and don't request metadata (by keeping the <code>returnMetadata</code> parameter set to <code>false</code> or not specified).</p> </li> <li> <p>If you specify a metadata filter or set <code>returnMetadata</code> to true, you must have both <code>s3vectors:QueryVectors</code> and <code>s3vectors:GetVectors</code> permissions. The request fails with a <code>403 Forbidden error</code> if you request metadata filtering or metadata without the <code>s3vectors:GetVectors</code> permission.</p> </li> </ul> </dd> </dl>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { TagResourceInput, TagResourceOutput } from "../models/models_0";
4
- import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface TagResourceCommandInput extends TagResourceInput {
22
19
  export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
23
20
  }
24
21
  declare const TagResourceCommand_base: {
25
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").S3VectorsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Applies one or more user-defined tags to an Amazon S3 Vectors resource or updates existing tags. Each tag is a label consisting of a key and value pair. Tags can help you organize, track costs for, and control access to your resources. You can add up to 50 tags for each resource.</p> <note> <p>For a list of S3 resources that support tagging, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/tagging.html#manage-tags">Managing tags for Amazon S3 resources</a>.</p> </note> <dl> <dt>Permissions</dt> <dd> <p>For vector buckets and vector indexes, you must have the <code>s3vectors:TagResource</code> permission to use this operation.</p> </dd> </dl>