@aws-sdk/client-s3outposts 3.478.0 → 3.481.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 (25) hide show
  1. package/dist-cjs/commands/CreateEndpointCommand.js +18 -41
  2. package/dist-cjs/commands/DeleteEndpointCommand.js +18 -41
  3. package/dist-cjs/commands/ListEndpointsCommand.js +18 -41
  4. package/dist-cjs/commands/ListOutpostsWithS3Command.js +18 -41
  5. package/dist-cjs/commands/ListSharedEndpointsCommand.js +18 -41
  6. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  7. package/dist-es/commands/CreateEndpointCommand.js +18 -41
  8. package/dist-es/commands/DeleteEndpointCommand.js +18 -41
  9. package/dist-es/commands/ListEndpointsCommand.js +18 -41
  10. package/dist-es/commands/ListOutpostsWithS3Command.js +18 -41
  11. package/dist-es/commands/ListSharedEndpointsCommand.js +18 -41
  12. package/dist-es/endpoint/EndpointParameters.js +6 -0
  13. package/dist-types/commands/CreateEndpointCommand.d.ts +6 -21
  14. package/dist-types/commands/DeleteEndpointCommand.d.ts +6 -21
  15. package/dist-types/commands/ListEndpointsCommand.d.ts +6 -21
  16. package/dist-types/commands/ListOutpostsWithS3Command.d.ts +6 -21
  17. package/dist-types/commands/ListSharedEndpointsCommand.d.ts +6 -21
  18. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  19. package/dist-types/ts3.4/commands/CreateEndpointCommand.d.ts +14 -23
  20. package/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +14 -23
  21. package/dist-types/ts3.4/commands/ListEndpointsCommand.d.ts +14 -23
  22. package/dist-types/ts3.4/commands/ListOutpostsWithS3Command.d.ts +14 -23
  23. package/dist-types/ts3.4/commands/ListSharedEndpointsCommand.d.ts +14 -23
  24. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  25. package/package.json +9 -9
@@ -1,47 +1,24 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { de_ListSharedEndpointsCommand, se_ListSharedEndpointsCommand } from "../protocols/Aws_restJson1";
6
6
  export { $Command };
7
- export class ListSharedEndpointsCommand extends $Command {
8
- static getEndpointParameterInstructions() {
9
- return {
10
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
- Endpoint: { type: "builtInParams", name: "endpoint" },
12
- Region: { type: "builtInParams", name: "region" },
13
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
- };
15
- }
16
- constructor(input) {
17
- super();
18
- this.input = input;
19
- }
20
- resolveMiddleware(clientStack, configuration, options) {
21
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
22
- this.middlewareStack.use(getEndpointPlugin(configuration, ListSharedEndpointsCommand.getEndpointParameterInstructions()));
23
- const stack = clientStack.concat(this.middlewareStack);
24
- const { logger } = configuration;
25
- const clientName = "S3OutpostsClient";
26
- const commandName = "ListSharedEndpointsCommand";
27
- const handlerExecutionContext = {
28
- logger,
29
- clientName,
30
- commandName,
31
- inputFilterSensitiveLog: (_) => _,
32
- outputFilterSensitiveLog: (_) => _,
33
- [SMITHY_CONTEXT_KEY]: {
34
- service: "S3Outposts",
35
- operation: "ListSharedEndpoints",
36
- },
37
- };
38
- const { requestHandler } = configuration;
39
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
40
- }
41
- serialize(input, context) {
42
- return se_ListSharedEndpointsCommand(input, context);
43
- }
44
- deserialize(output, context) {
45
- return de_ListSharedEndpointsCommand(output, context);
46
- }
7
+ export class ListSharedEndpointsCommand extends $Command
8
+ .classBuilder()
9
+ .ep({
10
+ ...commonParams,
11
+ })
12
+ .m(function (Command, cs, config, o) {
13
+ return [
14
+ getSerdePlugin(config, this.serialize, this.deserialize),
15
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
16
+ ];
17
+ })
18
+ .s("S3Outposts", "ListSharedEndpoints", {})
19
+ .n("S3OutpostsClient", "ListSharedEndpointsCommand")
20
+ .f(void 0, void 0)
21
+ .ser(se_ListSharedEndpointsCommand)
22
+ .de(de_ListSharedEndpointsCommand)
23
+ .build() {
47
24
  }
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
6
6
  defaultSigningName: "s3-outposts",
7
7
  };
8
8
  };
9
+ export const commonParams = {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { CreateEndpointRequest, CreateEndpointResult } from "../models/models_0";
5
4
  import { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface CreateEndpointCommandInput extends CreateEndpointRequest {
21
20
  */
22
21
  export interface CreateEndpointCommandOutput extends CreateEndpointResult, __MetadataBearer {
23
22
  }
23
+ declare const CreateEndpointCommand_base: {
24
+ new (input: CreateEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEndpointCommandInput, CreateEndpointCommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Creates an endpoint and associates it with the specified Outpost.</p>
@@ -93,23 +96,5 @@ export interface CreateEndpointCommandOutput extends CreateEndpointResult, __Met
93
96
  * <p>Base exception class for all service exceptions from S3Outposts service.</p>
94
97
  *
95
98
  */
96
- export declare class CreateEndpointCommand extends $Command<CreateEndpointCommandInput, CreateEndpointCommandOutput, S3OutpostsClientResolvedConfig> {
97
- readonly input: CreateEndpointCommandInput;
98
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
99
- /**
100
- * @public
101
- */
102
- constructor(input: CreateEndpointCommandInput);
103
- /**
104
- * @internal
105
- */
106
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: S3OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEndpointCommandInput, CreateEndpointCommandOutput>;
107
- /**
108
- * @internal
109
- */
110
- private serialize;
111
- /**
112
- * @internal
113
- */
114
- private deserialize;
99
+ export declare class CreateEndpointCommand extends CreateEndpointCommand_base {
115
100
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { DeleteEndpointRequest } from "../models/models_0";
5
4
  import { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DeleteEndpointCommandInput extends DeleteEndpointRequest {
21
20
  */
22
21
  export interface DeleteEndpointCommandOutput extends __MetadataBearer {
23
22
  }
23
+ declare const DeleteEndpointCommand_base: {
24
+ new (input: DeleteEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEndpointCommandInput, DeleteEndpointCommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Deletes an endpoint.</p>
@@ -85,23 +88,5 @@ export interface DeleteEndpointCommandOutput extends __MetadataBearer {
85
88
  * <p>Base exception class for all service exceptions from S3Outposts service.</p>
86
89
  *
87
90
  */
88
- export declare class DeleteEndpointCommand extends $Command<DeleteEndpointCommandInput, DeleteEndpointCommandOutput, S3OutpostsClientResolvedConfig> {
89
- readonly input: DeleteEndpointCommandInput;
90
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
91
- /**
92
- * @public
93
- */
94
- constructor(input: DeleteEndpointCommandInput);
95
- /**
96
- * @internal
97
- */
98
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: S3OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEndpointCommandInput, DeleteEndpointCommandOutput>;
99
- /**
100
- * @internal
101
- */
102
- private serialize;
103
- /**
104
- * @internal
105
- */
106
- private deserialize;
91
+ export declare class DeleteEndpointCommand extends DeleteEndpointCommand_base {
107
92
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListEndpointsRequest, ListEndpointsResult } from "../models/models_0";
5
4
  import { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListEndpointsCommandInput extends ListEndpointsRequest {
21
20
  */
22
21
  export interface ListEndpointsCommandOutput extends ListEndpointsResult, __MetadataBearer {
23
22
  }
23
+ declare const ListEndpointsCommand_base: {
24
+ new (input: ListEndpointsCommandInput): import("@smithy/smithy-client").CommandImpl<ListEndpointsCommandInput, ListEndpointsCommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Lists endpoints associated with the specified Outpost. </p>
@@ -103,23 +106,5 @@ export interface ListEndpointsCommandOutput extends ListEndpointsResult, __Metad
103
106
  * <p>Base exception class for all service exceptions from S3Outposts service.</p>
104
107
  *
105
108
  */
106
- export declare class ListEndpointsCommand extends $Command<ListEndpointsCommandInput, ListEndpointsCommandOutput, S3OutpostsClientResolvedConfig> {
107
- readonly input: ListEndpointsCommandInput;
108
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
109
- /**
110
- * @public
111
- */
112
- constructor(input: ListEndpointsCommandInput);
113
- /**
114
- * @internal
115
- */
116
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: S3OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEndpointsCommandInput, ListEndpointsCommandOutput>;
117
- /**
118
- * @internal
119
- */
120
- private serialize;
121
- /**
122
- * @internal
123
- */
124
- private deserialize;
109
+ export declare class ListEndpointsCommand extends ListEndpointsCommand_base {
125
110
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListOutpostsWithS3Request, ListOutpostsWithS3Result } from "../models/models_0";
5
4
  import { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListOutpostsWithS3CommandInput extends ListOutpostsWithS3Reques
21
20
  */
22
21
  export interface ListOutpostsWithS3CommandOutput extends ListOutpostsWithS3Result, __MetadataBearer {
23
22
  }
23
+ declare const ListOutpostsWithS3Command_base: {
24
+ new (input: ListOutpostsWithS3CommandInput): import("@smithy/smithy-client").CommandImpl<ListOutpostsWithS3CommandInput, ListOutpostsWithS3CommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Lists the Outposts with S3 on Outposts capacity for your Amazon Web Services account.
@@ -75,23 +78,5 @@ export interface ListOutpostsWithS3CommandOutput extends ListOutpostsWithS3Resul
75
78
  * <p>Base exception class for all service exceptions from S3Outposts service.</p>
76
79
  *
77
80
  */
78
- export declare class ListOutpostsWithS3Command extends $Command<ListOutpostsWithS3CommandInput, ListOutpostsWithS3CommandOutput, S3OutpostsClientResolvedConfig> {
79
- readonly input: ListOutpostsWithS3CommandInput;
80
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
81
- /**
82
- * @public
83
- */
84
- constructor(input: ListOutpostsWithS3CommandInput);
85
- /**
86
- * @internal
87
- */
88
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: S3OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOutpostsWithS3CommandInput, ListOutpostsWithS3CommandOutput>;
89
- /**
90
- * @internal
91
- */
92
- private serialize;
93
- /**
94
- * @internal
95
- */
96
- private deserialize;
81
+ export declare class ListOutpostsWithS3Command extends ListOutpostsWithS3Command_base {
97
82
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ListSharedEndpointsRequest, ListSharedEndpointsResult } from "../models/models_0";
5
4
  import { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ListSharedEndpointsCommandInput extends ListSharedEndpointsRequ
21
20
  */
22
21
  export interface ListSharedEndpointsCommandOutput extends ListSharedEndpointsResult, __MetadataBearer {
23
22
  }
23
+ declare const ListSharedEndpointsCommand_base: {
24
+ new (input: ListSharedEndpointsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Lists all endpoints associated with an Outpost that has been shared by Amazon Web Services Resource Access Manager (RAM).</p>
@@ -104,23 +107,5 @@ export interface ListSharedEndpointsCommandOutput extends ListSharedEndpointsRes
104
107
  * <p>Base exception class for all service exceptions from S3Outposts service.</p>
105
108
  *
106
109
  */
107
- export declare class ListSharedEndpointsCommand extends $Command<ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput, S3OutpostsClientResolvedConfig> {
108
- readonly input: ListSharedEndpointsCommandInput;
109
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
110
- /**
111
- * @public
112
- */
113
- constructor(input: ListSharedEndpointsCommandInput);
114
- /**
115
- * @internal
116
- */
117
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: S3OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput>;
118
- /**
119
- * @internal
120
- */
121
- private serialize;
122
- /**
123
- * @internal
124
- */
125
- private deserialize;
110
+ export declare class ListSharedEndpointsCommand extends ListSharedEndpointsCommand_base {
126
111
  }
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
14
14
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
15
  defaultSigningName: string;
16
16
  };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
17
35
  export interface EndpointParameters extends __EndpointParameters {
18
36
  Region?: string;
19
37
  UseDualStack?: boolean;
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  CreateEndpointRequest,
11
5
  CreateEndpointResult,
@@ -20,19 +14,16 @@ export interface CreateEndpointCommandInput extends CreateEndpointRequest {}
20
14
  export interface CreateEndpointCommandOutput
21
15
  extends CreateEndpointResult,
22
16
  __MetadataBearer {}
23
- export declare class CreateEndpointCommand extends $Command<
24
- CreateEndpointCommandInput,
25
- CreateEndpointCommandOutput,
26
- S3OutpostsClientResolvedConfig
27
- > {
28
- readonly input: CreateEndpointCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: CreateEndpointCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: S3OutpostsClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<CreateEndpointCommandInput, CreateEndpointCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const CreateEndpointCommand_base: {
18
+ new (
19
+ input: CreateEndpointCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ CreateEndpointCommandInput,
22
+ CreateEndpointCommandOutput,
23
+ S3OutpostsClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class CreateEndpointCommand extends CreateEndpointCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { DeleteEndpointRequest } from "../models/models_0";
10
4
  import {
11
5
  S3OutpostsClientResolvedConfig,
@@ -15,19 +9,16 @@ import {
15
9
  export { __MetadataBearer, $Command };
16
10
  export interface DeleteEndpointCommandInput extends DeleteEndpointRequest {}
17
11
  export interface DeleteEndpointCommandOutput extends __MetadataBearer {}
18
- export declare class DeleteEndpointCommand extends $Command<
19
- DeleteEndpointCommandInput,
20
- DeleteEndpointCommandOutput,
21
- S3OutpostsClientResolvedConfig
22
- > {
23
- readonly input: DeleteEndpointCommandInput;
24
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
25
- constructor(input: DeleteEndpointCommandInput);
26
- resolveMiddleware(
27
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
- configuration: S3OutpostsClientResolvedConfig,
29
- options?: __HttpHandlerOptions
30
- ): Handler<DeleteEndpointCommandInput, DeleteEndpointCommandOutput>;
31
- private serialize;
32
- private deserialize;
33
- }
12
+ declare const DeleteEndpointCommand_base: {
13
+ new (
14
+ input: DeleteEndpointCommandInput
15
+ ): import("@smithy/smithy-client").CommandImpl<
16
+ DeleteEndpointCommandInput,
17
+ DeleteEndpointCommandOutput,
18
+ S3OutpostsClientResolvedConfig,
19
+ ServiceInputTypes,
20
+ ServiceOutputTypes
21
+ >;
22
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
23
+ };
24
+ export declare class DeleteEndpointCommand extends DeleteEndpointCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import { ListEndpointsRequest, ListEndpointsResult } from "../models/models_0";
10
4
  import {
11
5
  S3OutpostsClientResolvedConfig,
@@ -17,19 +11,16 @@ export interface ListEndpointsCommandInput extends ListEndpointsRequest {}
17
11
  export interface ListEndpointsCommandOutput
18
12
  extends ListEndpointsResult,
19
13
  __MetadataBearer {}
20
- export declare class ListEndpointsCommand extends $Command<
21
- ListEndpointsCommandInput,
22
- ListEndpointsCommandOutput,
23
- S3OutpostsClientResolvedConfig
24
- > {
25
- readonly input: ListEndpointsCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: ListEndpointsCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: S3OutpostsClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<ListEndpointsCommandInput, ListEndpointsCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const ListEndpointsCommand_base: {
15
+ new (
16
+ input: ListEndpointsCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ ListEndpointsCommandInput,
19
+ ListEndpointsCommandOutput,
20
+ S3OutpostsClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class ListEndpointsCommand extends ListEndpointsCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  ListOutpostsWithS3Request,
11
5
  ListOutpostsWithS3Result,
@@ -21,19 +15,16 @@ export interface ListOutpostsWithS3CommandInput
21
15
  export interface ListOutpostsWithS3CommandOutput
22
16
  extends ListOutpostsWithS3Result,
23
17
  __MetadataBearer {}
24
- export declare class ListOutpostsWithS3Command extends $Command<
25
- ListOutpostsWithS3CommandInput,
26
- ListOutpostsWithS3CommandOutput,
27
- S3OutpostsClientResolvedConfig
28
- > {
29
- readonly input: ListOutpostsWithS3CommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListOutpostsWithS3CommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: S3OutpostsClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<ListOutpostsWithS3CommandInput, ListOutpostsWithS3CommandOutput>;
37
- private serialize;
38
- private deserialize;
39
- }
18
+ declare const ListOutpostsWithS3Command_base: {
19
+ new (
20
+ input: ListOutpostsWithS3CommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListOutpostsWithS3CommandInput,
23
+ ListOutpostsWithS3CommandOutput,
24
+ S3OutpostsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListOutpostsWithS3Command extends ListOutpostsWithS3Command_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  ListSharedEndpointsRequest,
11
5
  ListSharedEndpointsResult,
@@ -21,19 +15,16 @@ export interface ListSharedEndpointsCommandInput
21
15
  export interface ListSharedEndpointsCommandOutput
22
16
  extends ListSharedEndpointsResult,
23
17
  __MetadataBearer {}
24
- export declare class ListSharedEndpointsCommand extends $Command<
25
- ListSharedEndpointsCommandInput,
26
- ListSharedEndpointsCommandOutput,
27
- S3OutpostsClientResolvedConfig
28
- > {
29
- readonly input: ListSharedEndpointsCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListSharedEndpointsCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: S3OutpostsClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput>;
37
- private serialize;
38
- private deserialize;
39
- }
18
+ declare const ListSharedEndpointsCommand_base: {
19
+ new (
20
+ input: ListSharedEndpointsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListSharedEndpointsCommandInput,
23
+ ListSharedEndpointsCommandOutput,
24
+ S3OutpostsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListSharedEndpointsCommand extends ListSharedEndpointsCommand_base {}
@@ -25,6 +25,24 @@ export declare const resolveClientEndpointParameters: <T>(
25
25
  ClientInputEndpointParameters & {
26
26
  defaultSigningName: string;
27
27
  };
28
+ export declare const commonParams: {
29
+ readonly UseFIPS: {
30
+ readonly type: "builtInParams";
31
+ readonly name: "useFipsEndpoint";
32
+ };
33
+ readonly Endpoint: {
34
+ readonly type: "builtInParams";
35
+ readonly name: "endpoint";
36
+ };
37
+ readonly Region: {
38
+ readonly type: "builtInParams";
39
+ readonly name: "region";
40
+ };
41
+ readonly UseDualStack: {
42
+ readonly type: "builtInParams";
43
+ readonly name: "useDualstackEndpoint";
44
+ };
45
+ };
28
46
  export interface EndpointParameters extends __EndpointParameters {
29
47
  Region?: string;
30
48
  UseDualStack?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-s3outposts",
3
3
  "description": "AWS SDK for JavaScript S3outposts Client for Node.js, Browser and React Native",
4
- "version": "3.478.0",
4
+ "version": "3.481.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.478.0",
24
- "@aws-sdk/core": "3.477.0",
25
- "@aws-sdk/credential-provider-node": "3.478.0",
23
+ "@aws-sdk/client-sts": "3.481.0",
24
+ "@aws-sdk/core": "3.481.0",
25
+ "@aws-sdk/credential-provider-node": "3.481.0",
26
26
  "@aws-sdk/middleware-host-header": "3.468.0",
27
27
  "@aws-sdk/middleware-logger": "3.468.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.468.0",
@@ -34,26 +34,26 @@
34
34
  "@aws-sdk/util-user-agent-browser": "3.468.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.470.0",
36
36
  "@smithy/config-resolver": "^2.0.21",
37
- "@smithy/core": "^1.2.0",
37
+ "@smithy/core": "^1.2.1",
38
38
  "@smithy/fetch-http-handler": "^2.3.1",
39
39
  "@smithy/hash-node": "^2.0.17",
40
40
  "@smithy/invalid-dependency": "^2.0.15",
41
41
  "@smithy/middleware-content-length": "^2.0.17",
42
42
  "@smithy/middleware-endpoint": "^2.2.3",
43
- "@smithy/middleware-retry": "^2.0.24",
43
+ "@smithy/middleware-retry": "^2.0.25",
44
44
  "@smithy/middleware-serde": "^2.0.15",
45
45
  "@smithy/middleware-stack": "^2.0.9",
46
46
  "@smithy/node-config-provider": "^2.1.8",
47
47
  "@smithy/node-http-handler": "^2.2.1",
48
48
  "@smithy/protocol-http": "^3.0.11",
49
- "@smithy/smithy-client": "^2.1.18",
49
+ "@smithy/smithy-client": "^2.2.0",
50
50
  "@smithy/types": "^2.7.0",
51
51
  "@smithy/url-parser": "^2.0.15",
52
52
  "@smithy/util-base64": "^2.0.1",
53
53
  "@smithy/util-body-length-browser": "^2.0.1",
54
54
  "@smithy/util-body-length-node": "^2.1.0",
55
- "@smithy/util-defaults-mode-browser": "^2.0.22",
56
- "@smithy/util-defaults-mode-node": "^2.0.29",
55
+ "@smithy/util-defaults-mode-browser": "^2.0.23",
56
+ "@smithy/util-defaults-mode-node": "^2.0.30",
57
57
  "@smithy/util-endpoints": "^1.0.7",
58
58
  "@smithy/util-retry": "^2.0.8",
59
59
  "@smithy/util-utf8": "^2.0.2",