@aws-sdk/client-ec2-instance-connect 3.169.0 → 3.171.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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/EC2InstanceConnect.d.ts +38 -15
- package/dist-types/ts3.4/EC2InstanceConnectClient.d.ts +117 -75
- package/dist-types/ts3.4/commands/SendSSHPublicKeyCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/SendSerialConsoleSSHPublicKeyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +2 -2
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/EC2InstanceConnectServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +135 -128
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +29 -8
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-ec2-instance-connect
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-ec2-instance-connect
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-ec2-instance-connect
|
|
@@ -1,15 +1,38 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
SendSerialConsoleSSHPublicKeyCommandInput,
|
|
4
|
+
SendSerialConsoleSSHPublicKeyCommandOutput,
|
|
5
|
+
} from "./commands/SendSerialConsoleSSHPublicKeyCommand";
|
|
6
|
+
import {
|
|
7
|
+
SendSSHPublicKeyCommandInput,
|
|
8
|
+
SendSSHPublicKeyCommandOutput,
|
|
9
|
+
} from "./commands/SendSSHPublicKeyCommand";
|
|
10
|
+
import { EC2InstanceConnectClient } from "./EC2InstanceConnectClient";
|
|
11
|
+
export declare class EC2InstanceConnect extends EC2InstanceConnectClient {
|
|
12
|
+
sendSerialConsoleSSHPublicKey(
|
|
13
|
+
args: SendSerialConsoleSSHPublicKeyCommandInput,
|
|
14
|
+
options?: __HttpHandlerOptions
|
|
15
|
+
): Promise<SendSerialConsoleSSHPublicKeyCommandOutput>;
|
|
16
|
+
sendSerialConsoleSSHPublicKey(
|
|
17
|
+
args: SendSerialConsoleSSHPublicKeyCommandInput,
|
|
18
|
+
cb: (err: any, data?: SendSerialConsoleSSHPublicKeyCommandOutput) => void
|
|
19
|
+
): void;
|
|
20
|
+
sendSerialConsoleSSHPublicKey(
|
|
21
|
+
args: SendSerialConsoleSSHPublicKeyCommandInput,
|
|
22
|
+
options: __HttpHandlerOptions,
|
|
23
|
+
cb: (err: any, data?: SendSerialConsoleSSHPublicKeyCommandOutput) => void
|
|
24
|
+
): void;
|
|
25
|
+
sendSSHPublicKey(
|
|
26
|
+
args: SendSSHPublicKeyCommandInput,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Promise<SendSSHPublicKeyCommandOutput>;
|
|
29
|
+
sendSSHPublicKey(
|
|
30
|
+
args: SendSSHPublicKeyCommandInput,
|
|
31
|
+
cb: (err: any, data?: SendSSHPublicKeyCommandOutput) => void
|
|
32
|
+
): void;
|
|
33
|
+
sendSSHPublicKey(
|
|
34
|
+
args: SendSSHPublicKeyCommandInput,
|
|
35
|
+
options: __HttpHandlerOptions,
|
|
36
|
+
cb: (err: any, data?: SendSSHPublicKeyCommandOutput) => void
|
|
37
|
+
): void;
|
|
38
|
+
}
|
|
@@ -1,75 +1,117 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
SendSerialConsoleSSHPublicKeyCommandInput,
|
|
47
|
+
SendSerialConsoleSSHPublicKeyCommandOutput,
|
|
48
|
+
} from "./commands/SendSerialConsoleSSHPublicKeyCommand";
|
|
49
|
+
import {
|
|
50
|
+
SendSSHPublicKeyCommandInput,
|
|
51
|
+
SendSSHPublicKeyCommandOutput,
|
|
52
|
+
} from "./commands/SendSSHPublicKeyCommand";
|
|
53
|
+
export declare type ServiceInputTypes =
|
|
54
|
+
| SendSSHPublicKeyCommandInput
|
|
55
|
+
| SendSerialConsoleSSHPublicKeyCommandInput;
|
|
56
|
+
export declare type ServiceOutputTypes =
|
|
57
|
+
| SendSSHPublicKeyCommandOutput
|
|
58
|
+
| SendSerialConsoleSSHPublicKeyCommandOutput;
|
|
59
|
+
export interface ClientDefaults
|
|
60
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
61
|
+
requestHandler?: __HttpHandler;
|
|
62
|
+
sha256?: __HashConstructor;
|
|
63
|
+
urlParser?: __UrlParser;
|
|
64
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
65
|
+
streamCollector?: __StreamCollector;
|
|
66
|
+
base64Decoder?: __Decoder;
|
|
67
|
+
base64Encoder?: __Encoder;
|
|
68
|
+
utf8Decoder?: __Decoder;
|
|
69
|
+
utf8Encoder?: __Encoder;
|
|
70
|
+
runtime?: string;
|
|
71
|
+
disableHostPrefix?: boolean;
|
|
72
|
+
maxAttempts?: number | __Provider<number>;
|
|
73
|
+
retryMode?: string | __Provider<string>;
|
|
74
|
+
logger?: __Logger;
|
|
75
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
76
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
77
|
+
serviceId?: string;
|
|
78
|
+
region?: string | __Provider<string>;
|
|
79
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
80
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
81
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
82
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
83
|
+
}
|
|
84
|
+
declare type EC2InstanceConnectClientConfigType = Partial<
|
|
85
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
86
|
+
> &
|
|
87
|
+
ClientDefaults &
|
|
88
|
+
RegionInputConfig &
|
|
89
|
+
EndpointsInputConfig &
|
|
90
|
+
RetryInputConfig &
|
|
91
|
+
HostHeaderInputConfig &
|
|
92
|
+
AwsAuthInputConfig &
|
|
93
|
+
UserAgentInputConfig;
|
|
94
|
+
export interface EC2InstanceConnectClientConfig
|
|
95
|
+
extends EC2InstanceConnectClientConfigType {}
|
|
96
|
+
declare type EC2InstanceConnectClientResolvedConfigType =
|
|
97
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
98
|
+
Required<ClientDefaults> &
|
|
99
|
+
RegionResolvedConfig &
|
|
100
|
+
EndpointsResolvedConfig &
|
|
101
|
+
RetryResolvedConfig &
|
|
102
|
+
HostHeaderResolvedConfig &
|
|
103
|
+
AwsAuthResolvedConfig &
|
|
104
|
+
UserAgentResolvedConfig;
|
|
105
|
+
export interface EC2InstanceConnectClientResolvedConfig
|
|
106
|
+
extends EC2InstanceConnectClientResolvedConfigType {}
|
|
107
|
+
export declare class EC2InstanceConnectClient extends __Client<
|
|
108
|
+
__HttpHandlerOptions,
|
|
109
|
+
ServiceInputTypes,
|
|
110
|
+
ServiceOutputTypes,
|
|
111
|
+
EC2InstanceConnectClientResolvedConfig
|
|
112
|
+
> {
|
|
113
|
+
readonly config: EC2InstanceConnectClientResolvedConfig;
|
|
114
|
+
constructor(configuration: EC2InstanceConnectClientConfig);
|
|
115
|
+
destroy(): void;
|
|
116
|
+
}
|
|
117
|
+
export {};
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EC2InstanceConnectClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EC2InstanceConnectClient";
|
|
13
|
+
import {
|
|
14
|
+
SendSSHPublicKeyRequest,
|
|
15
|
+
SendSSHPublicKeyResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface SendSSHPublicKeyCommandInput extends SendSSHPublicKeyRequest {}
|
|
18
|
+
export interface SendSSHPublicKeyCommandOutput
|
|
19
|
+
extends SendSSHPublicKeyResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class SendSSHPublicKeyCommand extends $Command<
|
|
22
|
+
SendSSHPublicKeyCommandInput,
|
|
23
|
+
SendSSHPublicKeyCommandOutput,
|
|
24
|
+
EC2InstanceConnectClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: SendSSHPublicKeyCommandInput;
|
|
27
|
+
constructor(input: SendSSHPublicKeyCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: EC2InstanceConnectClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<SendSSHPublicKeyCommandInput, SendSSHPublicKeyCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
EC2InstanceConnectClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../EC2InstanceConnectClient";
|
|
13
|
+
import {
|
|
14
|
+
SendSerialConsoleSSHPublicKeyRequest,
|
|
15
|
+
SendSerialConsoleSSHPublicKeyResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface SendSerialConsoleSSHPublicKeyCommandInput
|
|
18
|
+
extends SendSerialConsoleSSHPublicKeyRequest {}
|
|
19
|
+
export interface SendSerialConsoleSSHPublicKeyCommandOutput
|
|
20
|
+
extends SendSerialConsoleSSHPublicKeyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class SendSerialConsoleSSHPublicKeyCommand extends $Command<
|
|
23
|
+
SendSerialConsoleSSHPublicKeyCommandInput,
|
|
24
|
+
SendSerialConsoleSSHPublicKeyCommandOutput,
|
|
25
|
+
EC2InstanceConnectClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: SendSerialConsoleSSHPublicKeyCommandInput;
|
|
28
|
+
constructor(input: SendSerialConsoleSSHPublicKeyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: EC2InstanceConnectClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
SendSerialConsoleSSHPublicKeyCommandInput,
|
|
35
|
+
SendSerialConsoleSSHPublicKeyCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./SendSSHPublicKeyCommand";
|
|
2
|
-
export * from "./SendSerialConsoleSSHPublicKeyCommand";
|
|
1
|
+
export * from "./SendSSHPublicKeyCommand";
|
|
2
|
+
export * from "./SendSerialConsoleSSHPublicKeyCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./EC2InstanceConnect";
|
|
2
|
-
export * from "./EC2InstanceConnectClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { EC2InstanceConnectServiceException } from "./models/EC2InstanceConnectServiceException";
|
|
1
|
+
export * from "./EC2InstanceConnect";
|
|
2
|
+
export * from "./EC2InstanceConnectClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { EC2InstanceConnectServiceException } from "./models/EC2InstanceConnectServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class EC2InstanceConnectServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|
|
@@ -1,128 +1,135 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { EC2InstanceConnectServiceException as __BaseException } from "./EC2InstanceConnectServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
export declare class EC2InstanceTypeInvalidException extends __BaseException {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
export declare const
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { EC2InstanceConnectServiceException as __BaseException } from "./EC2InstanceConnectServiceException";
|
|
3
|
+
export declare class AuthException extends __BaseException {
|
|
4
|
+
readonly name: "AuthException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string;
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AuthException, __BaseException>);
|
|
8
|
+
}
|
|
9
|
+
export declare class EC2InstanceNotFoundException extends __BaseException {
|
|
10
|
+
readonly name: "EC2InstanceNotFoundException";
|
|
11
|
+
readonly $fault: "client";
|
|
12
|
+
Message?: string;
|
|
13
|
+
constructor(
|
|
14
|
+
opts: __ExceptionOptionType<EC2InstanceNotFoundException, __BaseException>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
export declare class EC2InstanceStateInvalidException extends __BaseException {
|
|
18
|
+
readonly name: "EC2InstanceStateInvalidException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
|
+
Message?: string;
|
|
21
|
+
constructor(
|
|
22
|
+
opts: __ExceptionOptionType<
|
|
23
|
+
EC2InstanceStateInvalidException,
|
|
24
|
+
__BaseException
|
|
25
|
+
>
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
export declare class EC2InstanceTypeInvalidException extends __BaseException {
|
|
29
|
+
readonly name: "EC2InstanceTypeInvalidException";
|
|
30
|
+
readonly $fault: "client";
|
|
31
|
+
Message?: string;
|
|
32
|
+
constructor(
|
|
33
|
+
opts: __ExceptionOptionType<
|
|
34
|
+
EC2InstanceTypeInvalidException,
|
|
35
|
+
__BaseException
|
|
36
|
+
>
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
export declare class EC2InstanceUnavailableException extends __BaseException {
|
|
40
|
+
readonly name: "EC2InstanceUnavailableException";
|
|
41
|
+
readonly $fault: "server";
|
|
42
|
+
Message?: string;
|
|
43
|
+
constructor(
|
|
44
|
+
opts: __ExceptionOptionType<
|
|
45
|
+
EC2InstanceUnavailableException,
|
|
46
|
+
__BaseException
|
|
47
|
+
>
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
export declare class InvalidArgsException extends __BaseException {
|
|
51
|
+
readonly name: "InvalidArgsException";
|
|
52
|
+
readonly $fault: "client";
|
|
53
|
+
Message?: string;
|
|
54
|
+
constructor(
|
|
55
|
+
opts: __ExceptionOptionType<InvalidArgsException, __BaseException>
|
|
56
|
+
);
|
|
57
|
+
}
|
|
58
|
+
export interface SendSerialConsoleSSHPublicKeyRequest {
|
|
59
|
+
InstanceId: string | undefined;
|
|
60
|
+
SerialPort?: number;
|
|
61
|
+
SSHPublicKey: string | undefined;
|
|
62
|
+
}
|
|
63
|
+
export interface SendSerialConsoleSSHPublicKeyResponse {
|
|
64
|
+
RequestId?: string;
|
|
65
|
+
Success?: boolean;
|
|
66
|
+
}
|
|
67
|
+
export declare class SerialConsoleAccessDisabledException extends __BaseException {
|
|
68
|
+
readonly name: "SerialConsoleAccessDisabledException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
Message?: string;
|
|
71
|
+
constructor(
|
|
72
|
+
opts: __ExceptionOptionType<
|
|
73
|
+
SerialConsoleAccessDisabledException,
|
|
74
|
+
__BaseException
|
|
75
|
+
>
|
|
76
|
+
);
|
|
77
|
+
}
|
|
78
|
+
export declare class SerialConsoleSessionLimitExceededException extends __BaseException {
|
|
79
|
+
readonly name: "SerialConsoleSessionLimitExceededException";
|
|
80
|
+
readonly $fault: "client";
|
|
81
|
+
Message?: string;
|
|
82
|
+
constructor(
|
|
83
|
+
opts: __ExceptionOptionType<
|
|
84
|
+
SerialConsoleSessionLimitExceededException,
|
|
85
|
+
__BaseException
|
|
86
|
+
>
|
|
87
|
+
);
|
|
88
|
+
}
|
|
89
|
+
export declare class SerialConsoleSessionUnavailableException extends __BaseException {
|
|
90
|
+
readonly name: "SerialConsoleSessionUnavailableException";
|
|
91
|
+
readonly $fault: "server";
|
|
92
|
+
Message?: string;
|
|
93
|
+
constructor(
|
|
94
|
+
opts: __ExceptionOptionType<
|
|
95
|
+
SerialConsoleSessionUnavailableException,
|
|
96
|
+
__BaseException
|
|
97
|
+
>
|
|
98
|
+
);
|
|
99
|
+
}
|
|
100
|
+
export declare class ServiceException extends __BaseException {
|
|
101
|
+
readonly name: "ServiceException";
|
|
102
|
+
readonly $fault: "server";
|
|
103
|
+
Message?: string;
|
|
104
|
+
constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
|
|
105
|
+
}
|
|
106
|
+
export declare class ThrottlingException extends __BaseException {
|
|
107
|
+
readonly name: "ThrottlingException";
|
|
108
|
+
readonly $fault: "client";
|
|
109
|
+
Message?: string;
|
|
110
|
+
constructor(
|
|
111
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
112
|
+
);
|
|
113
|
+
}
|
|
114
|
+
export interface SendSSHPublicKeyRequest {
|
|
115
|
+
InstanceId: string | undefined;
|
|
116
|
+
InstanceOSUser: string | undefined;
|
|
117
|
+
SSHPublicKey: string | undefined;
|
|
118
|
+
AvailabilityZone?: string;
|
|
119
|
+
}
|
|
120
|
+
export interface SendSSHPublicKeyResponse {
|
|
121
|
+
RequestId?: string;
|
|
122
|
+
Success?: boolean;
|
|
123
|
+
}
|
|
124
|
+
export declare const SendSerialConsoleSSHPublicKeyRequestFilterSensitiveLog: (
|
|
125
|
+
obj: SendSerialConsoleSSHPublicKeyRequest
|
|
126
|
+
) => any;
|
|
127
|
+
export declare const SendSerialConsoleSSHPublicKeyResponseFilterSensitiveLog: (
|
|
128
|
+
obj: SendSerialConsoleSSHPublicKeyResponse
|
|
129
|
+
) => any;
|
|
130
|
+
export declare const SendSSHPublicKeyRequestFilterSensitiveLog: (
|
|
131
|
+
obj: SendSSHPublicKeyRequest
|
|
132
|
+
) => any;
|
|
133
|
+
export declare const SendSSHPublicKeyResponseFilterSensitiveLog: (
|
|
134
|
+
obj: SendSSHPublicKeyResponse
|
|
135
|
+
) => any;
|
|
@@ -1,8 +1,29 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
SendSerialConsoleSSHPublicKeyCommandInput,
|
|
8
|
+
SendSerialConsoleSSHPublicKeyCommandOutput,
|
|
9
|
+
} from "../commands/SendSerialConsoleSSHPublicKeyCommand";
|
|
10
|
+
import {
|
|
11
|
+
SendSSHPublicKeyCommandInput,
|
|
12
|
+
SendSSHPublicKeyCommandOutput,
|
|
13
|
+
} from "../commands/SendSSHPublicKeyCommand";
|
|
14
|
+
export declare const serializeAws_json1_1SendSerialConsoleSSHPublicKeyCommand: (
|
|
15
|
+
input: SendSerialConsoleSSHPublicKeyCommandInput,
|
|
16
|
+
context: __SerdeContext
|
|
17
|
+
) => Promise<__HttpRequest>;
|
|
18
|
+
export declare const serializeAws_json1_1SendSSHPublicKeyCommand: (
|
|
19
|
+
input: SendSSHPublicKeyCommandInput,
|
|
20
|
+
context: __SerdeContext
|
|
21
|
+
) => Promise<__HttpRequest>;
|
|
22
|
+
export declare const deserializeAws_json1_1SendSerialConsoleSSHPublicKeyCommand: (
|
|
23
|
+
output: __HttpResponse,
|
|
24
|
+
context: __SerdeContext
|
|
25
|
+
) => Promise<SendSerialConsoleSSHPublicKeyCommandOutput>;
|
|
26
|
+
export declare const deserializeAws_json1_1SendSSHPublicKeyCommand: (
|
|
27
|
+
output: __HttpResponse,
|
|
28
|
+
context: __SerdeContext
|
|
29
|
+
) => Promise<SendSSHPublicKeyCommandOutput>;
|
|
@@ -1,38 +1,67 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: EC2InstanceConnectClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
11
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
12
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
13
|
+
credentialDefaultProvider: (
|
|
14
|
+
input: any
|
|
15
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
16
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
17
|
+
import("@aws-sdk/types").UserAgent
|
|
18
|
+
>;
|
|
19
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
20
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
23
|
+
any,
|
|
24
|
+
any,
|
|
25
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
26
|
+
> &
|
|
27
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
28
|
+
| RequestHandler;
|
|
29
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
30
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
31
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
32
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
36
|
+
apiVersion: string;
|
|
37
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
logger: import("@aws-sdk/types").Logger;
|
|
40
|
+
serviceId: string;
|
|
41
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
|
+
endpoint?:
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| undefined;
|
|
47
|
+
tls?: boolean | undefined;
|
|
48
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
|
+
credentials?:
|
|
50
|
+
| import("@aws-sdk/types").Credentials
|
|
51
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
52
|
+
| undefined;
|
|
53
|
+
signer?:
|
|
54
|
+
| import("@aws-sdk/types").RequestSigner
|
|
55
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
56
|
+
| undefined;
|
|
57
|
+
signingEscapePath?: boolean | undefined;
|
|
58
|
+
systemClockOffset?: number | undefined;
|
|
59
|
+
signingRegion?: string | undefined;
|
|
60
|
+
signerConstructor?:
|
|
61
|
+
| (new (
|
|
62
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
63
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
64
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
65
|
+
| undefined;
|
|
66
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
67
|
+
};
|
|
@@ -1,38 +1,67 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: EC2InstanceConnectClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
11
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
12
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
13
|
+
credentialDefaultProvider: (
|
|
14
|
+
input: any
|
|
15
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
16
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
17
|
+
import("@aws-sdk/types").UserAgent
|
|
18
|
+
>;
|
|
19
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
20
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
23
|
+
any,
|
|
24
|
+
any,
|
|
25
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
26
|
+
> &
|
|
27
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
28
|
+
| RequestHandler;
|
|
29
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
30
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
31
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
32
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
36
|
+
apiVersion: string;
|
|
37
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
logger: import("@aws-sdk/types").Logger;
|
|
40
|
+
serviceId: string;
|
|
41
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
|
+
endpoint?:
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| undefined;
|
|
47
|
+
tls?: boolean | undefined;
|
|
48
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
|
+
credentials?:
|
|
50
|
+
| import("@aws-sdk/types").Credentials
|
|
51
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
52
|
+
| undefined;
|
|
53
|
+
signer?:
|
|
54
|
+
| import("@aws-sdk/types").RequestSigner
|
|
55
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
56
|
+
| undefined;
|
|
57
|
+
signingEscapePath?: boolean | undefined;
|
|
58
|
+
systemClockOffset?: number | undefined;
|
|
59
|
+
signingRegion?: string | undefined;
|
|
60
|
+
signerConstructor?:
|
|
61
|
+
| (new (
|
|
62
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
63
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
64
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
65
|
+
| undefined;
|
|
66
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
67
|
+
};
|
|
@@ -1,37 +1,68 @@
|
|
|
1
|
-
import { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
1
|
+
import { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: EC2InstanceConnectClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
7
|
+
requestHandler:
|
|
8
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
9
|
+
any,
|
|
10
|
+
any,
|
|
11
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
12
|
+
> &
|
|
13
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
14
|
+
| import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
15
|
+
apiVersion: string;
|
|
16
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
17
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
18
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
20
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
21
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
22
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
23
|
+
disableHostPrefix: boolean;
|
|
24
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
25
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
26
|
+
logger: import("@aws-sdk/types").Logger;
|
|
27
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
28
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
29
|
+
serviceId: string;
|
|
30
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
31
|
+
credentialDefaultProvider: (
|
|
32
|
+
input: any
|
|
33
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
34
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
35
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
36
|
+
import("@aws-sdk/types").UserAgent
|
|
37
|
+
>;
|
|
38
|
+
defaultsMode:
|
|
39
|
+
| import("@aws-sdk/smithy-client").DefaultsMode
|
|
40
|
+
| import("@aws-sdk/types").Provider<
|
|
41
|
+
import("@aws-sdk/smithy-client").DefaultsMode
|
|
42
|
+
>;
|
|
43
|
+
endpoint?:
|
|
44
|
+
| string
|
|
45
|
+
| import("@aws-sdk/types").Endpoint
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
47
|
+
| undefined;
|
|
48
|
+
tls?: boolean | undefined;
|
|
49
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
|
+
credentials?:
|
|
51
|
+
| import("@aws-sdk/types").Credentials
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
53
|
+
| undefined;
|
|
54
|
+
signer?:
|
|
55
|
+
| import("@aws-sdk/types").RequestSigner
|
|
56
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
57
|
+
| undefined;
|
|
58
|
+
signingEscapePath?: boolean | undefined;
|
|
59
|
+
systemClockOffset?: number | undefined;
|
|
60
|
+
signingRegion?: string | undefined;
|
|
61
|
+
signerConstructor?:
|
|
62
|
+
| (new (
|
|
63
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
64
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
65
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
66
|
+
| undefined;
|
|
67
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
68
|
+
};
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
-
import { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: EC2InstanceConnectClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
disableHostPrefix: boolean;
|
|
8
|
+
logger: __Logger;
|
|
9
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
10
|
+
serviceId: string;
|
|
11
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
12
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2-instance-connect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ec2 Instance Connect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.171.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",
|
|
@@ -19,45 +19,45 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
43
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-node": "3.
|
|
45
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
51
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
52
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.171.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.171.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.171.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.171.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.171.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.171.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.171.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.171.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.171.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.171.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.171.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.171.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.171.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.171.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.171.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.171.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.171.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.171.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.171.0",
|
|
41
|
+
"@aws-sdk/types": "3.171.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.171.0",
|
|
43
|
+
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
44
|
+
"@aws-sdk/util-base64-node": "3.170.0",
|
|
45
|
+
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
46
|
+
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.171.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.171.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.171.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.171.0",
|
|
51
|
+
"@aws-sdk/util-utf8-browser": "3.170.0",
|
|
52
|
+
"@aws-sdk/util-utf8-node": "3.170.0",
|
|
53
53
|
"tslib": "^2.3.1"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
56
|
+
"@aws-sdk/service-client-documentation-generator": "3.170.0",
|
|
57
57
|
"@tsconfig/recommended": "1.0.1",
|
|
58
58
|
"@types/node": "^12.7.5",
|
|
59
59
|
"concurrently": "7.0.0",
|
|
60
|
-
"downlevel-dts": "0.
|
|
60
|
+
"downlevel-dts": "0.10.1",
|
|
61
61
|
"rimraf": "3.0.2",
|
|
62
62
|
"typedoc": "0.19.2",
|
|
63
63
|
"typescript": "~4.6.2"
|