@aws-sdk/client-ssm-guiconnect 3.799.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 (91) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +253 -0
  3. package/dist-cjs/SSMGuiConnect.js +17 -0
  4. package/dist-cjs/SSMGuiConnectClient.js +52 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/DeleteConnectionRecordingPreferencesCommand.js +26 -0
  8. package/dist-cjs/commands/GetConnectionRecordingPreferencesCommand.js +26 -0
  9. package/dist-cjs/commands/UpdateConnectionRecordingPreferencesCommand.js +26 -0
  10. package/dist-cjs/commands/index.js +6 -0
  11. package/dist-cjs/endpoint/EndpointParameters.js +17 -0
  12. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  13. package/dist-cjs/endpoint/ruleset.js +7 -0
  14. package/dist-cjs/extensionConfiguration.js +2 -0
  15. package/dist-cjs/index.js +10 -0
  16. package/dist-cjs/models/SSMGuiConnectServiceException.js +12 -0
  17. package/dist-cjs/models/index.js +4 -0
  18. package/dist-cjs/models/models_0.js +95 -0
  19. package/dist-cjs/protocols/Aws_restJson1.js +230 -0
  20. package/dist-cjs/runtimeConfig.browser.js +39 -0
  21. package/dist-cjs/runtimeConfig.js +53 -0
  22. package/dist-cjs/runtimeConfig.native.js +15 -0
  23. package/dist-cjs/runtimeConfig.shared.js +34 -0
  24. package/dist-cjs/runtimeExtensions.js +13 -0
  25. package/dist-es/SSMGuiConnect.js +13 -0
  26. package/dist-es/SSMGuiConnectClient.js +48 -0
  27. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  28. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  29. package/dist-es/commands/DeleteConnectionRecordingPreferencesCommand.js +22 -0
  30. package/dist-es/commands/GetConnectionRecordingPreferencesCommand.js +22 -0
  31. package/dist-es/commands/UpdateConnectionRecordingPreferencesCommand.js +22 -0
  32. package/dist-es/commands/index.js +3 -0
  33. package/dist-es/endpoint/EndpointParameters.js +13 -0
  34. package/dist-es/endpoint/endpointResolver.js +14 -0
  35. package/dist-es/endpoint/ruleset.js +4 -0
  36. package/dist-es/extensionConfiguration.js +1 -0
  37. package/dist-es/index.js +5 -0
  38. package/dist-es/models/SSMGuiConnectServiceException.js +8 -0
  39. package/dist-es/models/index.js +1 -0
  40. package/dist-es/models/models_0.js +85 -0
  41. package/dist-es/protocols/Aws_restJson1.js +221 -0
  42. package/dist-es/runtimeConfig.browser.js +34 -0
  43. package/dist-es/runtimeConfig.js +48 -0
  44. package/dist-es/runtimeConfig.native.js +11 -0
  45. package/dist-es/runtimeConfig.shared.js +30 -0
  46. package/dist-es/runtimeExtensions.js +9 -0
  47. package/dist-types/SSMGuiConnect.d.ts +56 -0
  48. package/dist-types/SSMGuiConnectClient.d.ts +213 -0
  49. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  50. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  51. package/dist-types/commands/DeleteConnectionRecordingPreferencesCommand.d.ts +106 -0
  52. package/dist-types/commands/GetConnectionRecordingPreferencesCommand.d.ts +126 -0
  53. package/dist-types/commands/UpdateConnectionRecordingPreferencesCommand.d.ts +151 -0
  54. package/dist-types/commands/index.d.ts +3 -0
  55. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  56. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  57. package/dist-types/endpoint/ruleset.d.ts +2 -0
  58. package/dist-types/extensionConfiguration.d.ts +9 -0
  59. package/dist-types/index.d.ts +36 -0
  60. package/dist-types/models/SSMGuiConnectServiceException.d.ts +14 -0
  61. package/dist-types/models/index.d.ts +1 -0
  62. package/dist-types/models/models_0.d.ts +194 -0
  63. package/dist-types/protocols/Aws_restJson1.d.ts +29 -0
  64. package/dist-types/runtimeConfig.browser.d.ts +50 -0
  65. package/dist-types/runtimeConfig.d.ts +50 -0
  66. package/dist-types/runtimeConfig.native.d.ts +49 -0
  67. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  68. package/dist-types/runtimeExtensions.d.ts +17 -0
  69. package/dist-types/ts3.4/SSMGuiConnect.d.ts +78 -0
  70. package/dist-types/ts3.4/SSMGuiConnectClient.d.ts +138 -0
  71. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  72. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  73. package/dist-types/ts3.4/commands/DeleteConnectionRecordingPreferencesCommand.d.ts +51 -0
  74. package/dist-types/ts3.4/commands/GetConnectionRecordingPreferencesCommand.d.ts +47 -0
  75. package/dist-types/ts3.4/commands/UpdateConnectionRecordingPreferencesCommand.d.ts +51 -0
  76. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  77. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  78. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  79. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  80. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  81. package/dist-types/ts3.4/index.d.ts +8 -0
  82. package/dist-types/ts3.4/models/SSMGuiConnectServiceException.d.ts +9 -0
  83. package/dist-types/ts3.4/models/index.d.ts +1 -0
  84. package/dist-types/ts3.4/models/models_0.d.ts +78 -0
  85. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +41 -0
  86. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
  87. package/dist-types/ts3.4/runtimeConfig.d.ts +98 -0
  88. package/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
  89. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  90. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  91. package/package.json +101 -0
@@ -0,0 +1,41 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ DeleteConnectionRecordingPreferencesCommandInput,
8
+ DeleteConnectionRecordingPreferencesCommandOutput,
9
+ } from "../commands/DeleteConnectionRecordingPreferencesCommand";
10
+ import {
11
+ GetConnectionRecordingPreferencesCommandInput,
12
+ GetConnectionRecordingPreferencesCommandOutput,
13
+ } from "../commands/GetConnectionRecordingPreferencesCommand";
14
+ import {
15
+ UpdateConnectionRecordingPreferencesCommandInput,
16
+ UpdateConnectionRecordingPreferencesCommandOutput,
17
+ } from "../commands/UpdateConnectionRecordingPreferencesCommand";
18
+ export declare const se_DeleteConnectionRecordingPreferencesCommand: (
19
+ input: DeleteConnectionRecordingPreferencesCommandInput,
20
+ context: __SerdeContext
21
+ ) => Promise<__HttpRequest>;
22
+ export declare const se_GetConnectionRecordingPreferencesCommand: (
23
+ input: GetConnectionRecordingPreferencesCommandInput,
24
+ context: __SerdeContext
25
+ ) => Promise<__HttpRequest>;
26
+ export declare const se_UpdateConnectionRecordingPreferencesCommand: (
27
+ input: UpdateConnectionRecordingPreferencesCommandInput,
28
+ context: __SerdeContext
29
+ ) => Promise<__HttpRequest>;
30
+ export declare const de_DeleteConnectionRecordingPreferencesCommand: (
31
+ output: __HttpResponse,
32
+ context: __SerdeContext
33
+ ) => Promise<DeleteConnectionRecordingPreferencesCommandOutput>;
34
+ export declare const de_GetConnectionRecordingPreferencesCommand: (
35
+ output: __HttpResponse,
36
+ context: __SerdeContext
37
+ ) => Promise<GetConnectionRecordingPreferencesCommandOutput>;
38
+ export declare const de_UpdateConnectionRecordingPreferencesCommand: (
39
+ output: __HttpResponse,
40
+ context: __SerdeContext
41
+ ) => Promise<UpdateConnectionRecordingPreferencesCommandOutput>;
@@ -0,0 +1,100 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient";
3
+ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ _: unknown
13
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
14
+ defaultUserAgentProvider: (
15
+ config?:
16
+ | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
17
+ | undefined
18
+ ) => Promise<import("@smithy/types").UserAgent>;
19
+ maxAttempts: number | import("@smithy/types").Provider<number>;
20
+ region: string | import("@smithy/types").Provider<any>;
21
+ requestHandler:
22
+ | import("@smithy/protocol-http").HttpHandler<any>
23
+ | RequestHandler;
24
+ retryMode: string | import("@smithy/types").Provider<string>;
25
+ sha256: import("@smithy/types").HashConstructor;
26
+ streamCollector: import("@smithy/types").StreamCollector;
27
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
28
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
29
+ apiVersion: string;
30
+ cacheMiddleware?: boolean | undefined;
31
+ urlParser: import("@smithy/types").UrlParser;
32
+ base64Decoder: import("@smithy/types").Decoder;
33
+ base64Encoder: (_input: string | Uint8Array) => string;
34
+ utf8Decoder: import("@smithy/types").Decoder;
35
+ utf8Encoder: (input: string | Uint8Array) => string;
36
+ disableHostPrefix: boolean;
37
+ serviceId: string;
38
+ profile?: string | undefined;
39
+ logger: import("@smithy/types").Logger;
40
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
42
+ userAgentAppId?:
43
+ | string
44
+ | import("@smithy/types").Provider<string | undefined>
45
+ | undefined;
46
+ retryStrategy?:
47
+ | import("@smithy/types").RetryStrategy
48
+ | import("@smithy/types").RetryStrategyV2
49
+ | undefined;
50
+ endpoint?:
51
+ | ((
52
+ | string
53
+ | import("@smithy/types").Endpoint
54
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
55
+ | import("@smithy/types").EndpointV2
56
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
57
+ ) &
58
+ (
59
+ | string
60
+ | import("@smithy/types").Provider<string>
61
+ | import("@smithy/types").Endpoint
62
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
63
+ | import("@smithy/types").EndpointV2
64
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
65
+ ))
66
+ | undefined;
67
+ endpointProvider: (
68
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
69
+ context?: {
70
+ logger?: import("@smithy/types").Logger | undefined;
71
+ }
72
+ ) => import("@smithy/types").EndpointV2;
73
+ tls?: boolean | undefined;
74
+ serviceConfiguredEndpoint?: undefined;
75
+ authSchemePreference?:
76
+ | string[]
77
+ | import("@smithy/types").Provider<string[]>
78
+ | undefined;
79
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
80
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSMGuiConnectHttpAuthSchemeProvider;
81
+ credentials?:
82
+ | import("@smithy/types").AwsCredentialIdentity
83
+ | import("@smithy/types").AwsCredentialIdentityProvider
84
+ | undefined;
85
+ signer?:
86
+ | import("@smithy/types").RequestSigner
87
+ | ((
88
+ authScheme?: import("@smithy/types").AuthScheme | undefined
89
+ ) => Promise<import("@smithy/types").RequestSigner>)
90
+ | undefined;
91
+ signingEscapePath?: boolean | undefined;
92
+ systemClockOffset?: number | undefined;
93
+ signingRegion?: string | undefined;
94
+ signerConstructor?:
95
+ | (new (
96
+ options: import("@smithy/signature-v4").SignatureV4Init &
97
+ import("@smithy/signature-v4").SignatureV4CryptoInit
98
+ ) => import("@smithy/types").RequestSigner)
99
+ | undefined;
100
+ };
@@ -0,0 +1,98 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient";
3
+ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider:
11
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
12
+ | ((
13
+ init?:
14
+ | import("@aws-sdk/credential-provider-node").DefaultProviderInit
15
+ | undefined
16
+ ) => import("@smithy/types").MemoizedProvider<
17
+ import("@smithy/types").AwsCredentialIdentity
18
+ >);
19
+ defaultUserAgentProvider: (
20
+ config?:
21
+ | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
22
+ | undefined
23
+ ) => Promise<import("@smithy/types").UserAgent>;
24
+ maxAttempts: number | import("@smithy/types").Provider<number>;
25
+ region: string | import("@smithy/types").Provider<string>;
26
+ requestHandler:
27
+ | RequestHandler
28
+ | import("@smithy/protocol-http").HttpHandler<any>;
29
+ retryMode: string | import("@smithy/types").Provider<string>;
30
+ sha256: import("@smithy/types").HashConstructor;
31
+ streamCollector: import("@smithy/types").StreamCollector;
32
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
33
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
34
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
35
+ apiVersion: string;
36
+ cacheMiddleware?: boolean | undefined;
37
+ urlParser: import("@smithy/types").UrlParser;
38
+ base64Decoder: import("@smithy/types").Decoder;
39
+ base64Encoder: (_input: string | Uint8Array) => string;
40
+ utf8Decoder: import("@smithy/types").Decoder;
41
+ utf8Encoder: (input: string | Uint8Array) => string;
42
+ disableHostPrefix: boolean;
43
+ serviceId: string;
44
+ profile?: string | undefined;
45
+ logger: import("@smithy/types").Logger;
46
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
47
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
48
+ retryStrategy?:
49
+ | import("@smithy/types").RetryStrategy
50
+ | import("@smithy/types").RetryStrategyV2
51
+ | undefined;
52
+ endpoint?:
53
+ | ((
54
+ | string
55
+ | import("@smithy/types").Endpoint
56
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
57
+ | import("@smithy/types").EndpointV2
58
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
59
+ ) &
60
+ (
61
+ | string
62
+ | import("@smithy/types").Provider<string>
63
+ | import("@smithy/types").Endpoint
64
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
65
+ | import("@smithy/types").EndpointV2
66
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
67
+ ))
68
+ | undefined;
69
+ endpointProvider: (
70
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
71
+ context?: {
72
+ logger?: import("@smithy/types").Logger | undefined;
73
+ }
74
+ ) => import("@smithy/types").EndpointV2;
75
+ tls?: boolean | undefined;
76
+ serviceConfiguredEndpoint?: undefined;
77
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
78
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSMGuiConnectHttpAuthSchemeProvider;
79
+ credentials?:
80
+ | import("@smithy/types").AwsCredentialIdentity
81
+ | import("@smithy/types").AwsCredentialIdentityProvider
82
+ | undefined;
83
+ signer?:
84
+ | import("@smithy/types").RequestSigner
85
+ | ((
86
+ authScheme?: import("@smithy/types").AuthScheme | undefined
87
+ ) => Promise<import("@smithy/types").RequestSigner>)
88
+ | undefined;
89
+ signingEscapePath?: boolean | undefined;
90
+ systemClockOffset?: number | undefined;
91
+ signingRegion?: string | undefined;
92
+ signerConstructor?:
93
+ | (new (
94
+ options: import("@smithy/signature-v4").SignatureV4Init &
95
+ import("@smithy/signature-v4").SignatureV4CryptoInit
96
+ ) => import("@smithy/types").RequestSigner)
97
+ | undefined;
98
+ };
@@ -0,0 +1,104 @@
1
+ import { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient";
2
+ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
3
+ runtime: string;
4
+ sha256: import("@smithy/types").HashConstructor;
5
+ requestHandler:
6
+ | import("@smithy/types").NodeHttpHandlerOptions
7
+ | import("@smithy/types").FetchHttpHandlerOptions
8
+ | Record<string, unknown>
9
+ | import("@smithy/protocol-http").HttpHandler<any>
10
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
11
+ apiVersion: string;
12
+ cacheMiddleware?: boolean | undefined;
13
+ urlParser: import("@smithy/types").UrlParser;
14
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
15
+ streamCollector: import("@smithy/types").StreamCollector;
16
+ base64Decoder: import("@smithy/types").Decoder;
17
+ base64Encoder: (_input: string | Uint8Array) => string;
18
+ utf8Decoder: import("@smithy/types").Decoder;
19
+ utf8Encoder: (input: string | Uint8Array) => string;
20
+ disableHostPrefix: boolean;
21
+ serviceId: string;
22
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
+ region: string | import("@smithy/types").Provider<any>;
25
+ profile?: string | undefined;
26
+ defaultUserAgentProvider: (
27
+ config?:
28
+ | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
29
+ | undefined
30
+ ) => Promise<import("@smithy/types").UserAgent>;
31
+ credentialDefaultProvider:
32
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
33
+ | ((
34
+ _: unknown
35
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
36
+ maxAttempts: number | import("@smithy/types").Provider<number>;
37
+ retryMode: string | import("@smithy/types").Provider<string>;
38
+ logger: import("@smithy/types").Logger;
39
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
40
+ defaultsMode:
41
+ | import("@smithy/smithy-client").DefaultsMode
42
+ | import("@smithy/types").Provider<
43
+ import("@smithy/smithy-client").DefaultsMode
44
+ >;
45
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
46
+ userAgentAppId?:
47
+ | string
48
+ | import("@smithy/types").Provider<string | undefined>
49
+ | undefined;
50
+ retryStrategy?:
51
+ | import("@smithy/types").RetryStrategy
52
+ | import("@smithy/types").RetryStrategyV2
53
+ | undefined;
54
+ endpoint?:
55
+ | ((
56
+ | string
57
+ | import("@smithy/types").Endpoint
58
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
59
+ | import("@smithy/types").EndpointV2
60
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
61
+ ) &
62
+ (
63
+ | string
64
+ | import("@smithy/types").Provider<string>
65
+ | import("@smithy/types").Endpoint
66
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
67
+ | import("@smithy/types").EndpointV2
68
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
69
+ ))
70
+ | undefined;
71
+ endpointProvider: (
72
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
73
+ context?: {
74
+ logger?: import("@smithy/types").Logger | undefined;
75
+ }
76
+ ) => import("@smithy/types").EndpointV2;
77
+ tls?: boolean | undefined;
78
+ serviceConfiguredEndpoint?: undefined;
79
+ authSchemePreference?:
80
+ | string[]
81
+ | import("@smithy/types").Provider<string[]>
82
+ | undefined;
83
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
84
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSMGuiConnectHttpAuthSchemeProvider;
85
+ credentials?:
86
+ | import("@smithy/types").AwsCredentialIdentity
87
+ | import("@smithy/types").AwsCredentialIdentityProvider
88
+ | undefined;
89
+ signer?:
90
+ | import("@smithy/types").RequestSigner
91
+ | ((
92
+ authScheme?: import("@smithy/types").AuthScheme | undefined
93
+ ) => Promise<import("@smithy/types").RequestSigner>)
94
+ | undefined;
95
+ signingEscapePath?: boolean | undefined;
96
+ systemClockOffset?: number | undefined;
97
+ signingRegion?: string | undefined;
98
+ signerConstructor?:
99
+ | (new (
100
+ options: import("@smithy/signature-v4").SignatureV4Init &
101
+ import("@smithy/signature-v4").SignatureV4CryptoInit
102
+ ) => import("@smithy/types").RequestSigner)
103
+ | undefined;
104
+ };
@@ -0,0 +1,21 @@
1
+ import { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient";
2
+ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
3
+ apiVersion: string;
4
+ base64Decoder: import("@smithy/types").Decoder;
5
+ base64Encoder: (_input: string | Uint8Array) => string;
6
+ disableHostPrefix: boolean;
7
+ endpointProvider: (
8
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
9
+ context?: {
10
+ logger?: import("@smithy/types").Logger | undefined;
11
+ }
12
+ ) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSMGuiConnectHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ serviceId: string;
18
+ urlParser: import("@smithy/types").UrlParser;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
+ };
@@ -0,0 +1,11 @@
1
+ import { SSMGuiConnectExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(extensionConfiguration: SSMGuiConnectExtensionConfiguration): void;
4
+ }
5
+ export interface RuntimeExtensionsConfig {
6
+ extensions: RuntimeExtension[];
7
+ }
8
+ export declare const resolveRuntimeExtensions: (
9
+ runtimeConfig: any,
10
+ extensions: RuntimeExtension[]
11
+ ) => any;
package/package.json ADDED
@@ -0,0 +1,101 @@
1
+ {
2
+ "name": "@aws-sdk/client-ssm-guiconnect",
3
+ "description": "AWS SDK for JavaScript Ssm Guiconnect Client for Node.js, Browser and React Native",
4
+ "version": "3.799.0",
5
+ "scripts": {
6
+ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
+ "build:cjs": "tsc -p tsconfig.cjs.json",
8
+ "build:es": "tsc -p tsconfig.es.json",
9
+ "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
10
+ "build:types": "tsc -p tsconfig.types.json",
11
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
13
+ "extract:docs": "api-extractor run --local",
14
+ "generate:client": "node ../../scripts/generate-clients/single-service --solo ssm-guiconnect"
15
+ },
16
+ "main": "./dist-cjs/index.js",
17
+ "types": "./dist-types/index.d.ts",
18
+ "module": "./dist-es/index.js",
19
+ "sideEffects": false,
20
+ "dependencies": {
21
+ "@aws-crypto/sha256-browser": "5.2.0",
22
+ "@aws-crypto/sha256-js": "5.2.0",
23
+ "@aws-sdk/core": "3.799.0",
24
+ "@aws-sdk/credential-provider-node": "3.799.0",
25
+ "@aws-sdk/middleware-host-header": "3.775.0",
26
+ "@aws-sdk/middleware-logger": "3.775.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.775.0",
28
+ "@aws-sdk/middleware-user-agent": "3.799.0",
29
+ "@aws-sdk/region-config-resolver": "3.775.0",
30
+ "@aws-sdk/types": "3.775.0",
31
+ "@aws-sdk/util-endpoints": "3.787.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.775.0",
33
+ "@aws-sdk/util-user-agent-node": "3.799.0",
34
+ "@smithy/config-resolver": "^4.1.0",
35
+ "@smithy/core": "^3.3.0",
36
+ "@smithy/fetch-http-handler": "^5.0.2",
37
+ "@smithy/hash-node": "^4.0.2",
38
+ "@smithy/invalid-dependency": "^4.0.2",
39
+ "@smithy/middleware-content-length": "^4.0.2",
40
+ "@smithy/middleware-endpoint": "^4.1.1",
41
+ "@smithy/middleware-retry": "^4.1.1",
42
+ "@smithy/middleware-serde": "^4.0.3",
43
+ "@smithy/middleware-stack": "^4.0.2",
44
+ "@smithy/node-config-provider": "^4.0.2",
45
+ "@smithy/node-http-handler": "^4.0.4",
46
+ "@smithy/protocol-http": "^5.1.0",
47
+ "@smithy/smithy-client": "^4.2.1",
48
+ "@smithy/types": "^4.2.0",
49
+ "@smithy/url-parser": "^4.0.2",
50
+ "@smithy/util-base64": "^4.0.0",
51
+ "@smithy/util-body-length-browser": "^4.0.0",
52
+ "@smithy/util-body-length-node": "^4.0.0",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.9",
54
+ "@smithy/util-defaults-mode-node": "^4.0.9",
55
+ "@smithy/util-endpoints": "^3.0.2",
56
+ "@smithy/util-middleware": "^4.0.2",
57
+ "@smithy/util-retry": "^4.0.2",
58
+ "@smithy/util-utf8": "^4.0.0",
59
+ "@types/uuid": "^9.0.1",
60
+ "tslib": "^2.6.2",
61
+ "uuid": "^9.0.1"
62
+ },
63
+ "devDependencies": {
64
+ "@tsconfig/node18": "18.2.4",
65
+ "@types/node": "^18.19.69",
66
+ "concurrently": "7.0.0",
67
+ "downlevel-dts": "0.10.1",
68
+ "rimraf": "3.0.2",
69
+ "typescript": "~5.2.2"
70
+ },
71
+ "engines": {
72
+ "node": ">=18.0.0"
73
+ },
74
+ "typesVersions": {
75
+ "<4.0": {
76
+ "dist-types/*": [
77
+ "dist-types/ts3.4/*"
78
+ ]
79
+ }
80
+ },
81
+ "files": [
82
+ "dist-*/**"
83
+ ],
84
+ "author": {
85
+ "name": "AWS SDK for JavaScript Team",
86
+ "url": "https://aws.amazon.com/javascript/"
87
+ },
88
+ "license": "Apache-2.0",
89
+ "browser": {
90
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
91
+ },
92
+ "react-native": {
93
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
94
+ },
95
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-ssm-guiconnect",
96
+ "repository": {
97
+ "type": "git",
98
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
99
+ "directory": "clients/client-ssm-guiconnect"
100
+ }
101
+ }