@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,151 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateConnectionRecordingPreferencesRequest, UpdateConnectionRecordingPreferencesResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMGuiConnectClientResolvedConfig } from "../SSMGuiConnectClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateConnectionRecordingPreferencesCommand}.
14
+ */
15
+ export interface UpdateConnectionRecordingPreferencesCommandInput extends UpdateConnectionRecordingPreferencesRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateConnectionRecordingPreferencesCommand}.
21
+ */
22
+ export interface UpdateConnectionRecordingPreferencesCommandOutput extends UpdateConnectionRecordingPreferencesResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdateConnectionRecordingPreferencesCommand_base: {
25
+ new (input: UpdateConnectionRecordingPreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConnectionRecordingPreferencesCommandInput, UpdateConnectionRecordingPreferencesCommandOutput, SSMGuiConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: UpdateConnectionRecordingPreferencesCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateConnectionRecordingPreferencesCommandInput, UpdateConnectionRecordingPreferencesCommandOutput, SSMGuiConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates the preferences for recording RDP connections.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { SSMGuiConnectClient, UpdateConnectionRecordingPreferencesCommand } from "@aws-sdk/client-ssm-guiconnect"; // ES Modules import
35
+ * // const { SSMGuiConnectClient, UpdateConnectionRecordingPreferencesCommand } = require("@aws-sdk/client-ssm-guiconnect"); // CommonJS import
36
+ * const client = new SSMGuiConnectClient(config);
37
+ * const input = { // UpdateConnectionRecordingPreferencesRequest
38
+ * ConnectionRecordingPreferences: { // ConnectionRecordingPreferences
39
+ * RecordingDestinations: { // RecordingDestinations
40
+ * S3Buckets: [ // S3Buckets // required
41
+ * { // S3Bucket
42
+ * BucketOwner: "STRING_VALUE", // required
43
+ * BucketName: "STRING_VALUE", // required
44
+ * },
45
+ * ],
46
+ * },
47
+ * KMSKeyArn: "STRING_VALUE", // required
48
+ * },
49
+ * ClientToken: "STRING_VALUE",
50
+ * };
51
+ * const command = new UpdateConnectionRecordingPreferencesCommand(input);
52
+ * const response = await client.send(command);
53
+ * // { // UpdateConnectionRecordingPreferencesResponse
54
+ * // ClientToken: "STRING_VALUE",
55
+ * // ConnectionRecordingPreferences: { // ConnectionRecordingPreferences
56
+ * // RecordingDestinations: { // RecordingDestinations
57
+ * // S3Buckets: [ // S3Buckets // required
58
+ * // { // S3Bucket
59
+ * // BucketOwner: "STRING_VALUE", // required
60
+ * // BucketName: "STRING_VALUE", // required
61
+ * // },
62
+ * // ],
63
+ * // },
64
+ * // KMSKeyArn: "STRING_VALUE", // required
65
+ * // },
66
+ * // };
67
+ *
68
+ * ```
69
+ *
70
+ * @param UpdateConnectionRecordingPreferencesCommandInput - {@link UpdateConnectionRecordingPreferencesCommandInput}
71
+ * @returns {@link UpdateConnectionRecordingPreferencesCommandOutput}
72
+ * @see {@link UpdateConnectionRecordingPreferencesCommandInput} for command's `input` shape.
73
+ * @see {@link UpdateConnectionRecordingPreferencesCommandOutput} for command's `response` shape.
74
+ * @see {@link SSMGuiConnectClientResolvedConfig | config} for SSMGuiConnectClient's `config` shape.
75
+ *
76
+ * @throws {@link AccessDeniedException} (client fault)
77
+ * <p>You do not have sufficient access to perform this action.</p>
78
+ *
79
+ * @throws {@link ConflictException} (client fault)
80
+ * <p>An error occurred due to a conflict.</p>
81
+ *
82
+ * @throws {@link InternalServerException} (server fault)
83
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
84
+ *
85
+ * @throws {@link ResourceNotFoundException} (client fault)
86
+ * <p>The resource could not be found.</p>
87
+ *
88
+ * @throws {@link ServiceQuotaExceededException} (client fault)
89
+ * <p>Your request exceeds a service quota.</p>
90
+ *
91
+ * @throws {@link ThrottlingException} (client fault)
92
+ * <p>The request was denied due to request throttling.</p>
93
+ *
94
+ * @throws {@link ValidationException} (client fault)
95
+ * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
96
+ *
97
+ * @throws {@link SSMGuiConnectServiceException}
98
+ * <p>Base exception class for all service exceptions from SSMGuiConnect service.</p>
99
+ *
100
+ *
101
+ * @example Updates the connection recording preferences for the account
102
+ * ```javascript
103
+ * //
104
+ * const input = {
105
+ * ConnectionRecordingPreferences: {
106
+ * KMSKeyArn: "arn:aws:kms:region:account_id:key/sample_key_id",
107
+ * RecordingDestinations: {
108
+ * S3Buckets: [
109
+ * {
110
+ * BucketName: "sample-connection-recording-bucket",
111
+ * BucketOwner: "123456789012"
112
+ * }
113
+ * ]
114
+ * }
115
+ * }
116
+ * };
117
+ * const command = new UpdateConnectionRecordingPreferencesCommand(input);
118
+ * const response = await client.send(command);
119
+ * /* response is
120
+ * {
121
+ * ClientToken: "sample_uuid",
122
+ * ConnectionRecordingPreferences: {
123
+ * KMSKeyArn: "arn:aws:kms:region:account_id:key/sample_key_id",
124
+ * RecordingDestinations: {
125
+ * S3Buckets: [
126
+ * {
127
+ * BucketName: "sample-connection-recording-bucket",
128
+ * BucketOwner: "123456789012"
129
+ * }
130
+ * ]
131
+ * }
132
+ * }
133
+ * }
134
+ * *\/
135
+ * ```
136
+ *
137
+ * @public
138
+ */
139
+ export declare class UpdateConnectionRecordingPreferencesCommand extends UpdateConnectionRecordingPreferencesCommand_base {
140
+ /** @internal type navigation helper, not in runtime. */
141
+ protected static __types: {
142
+ api: {
143
+ input: UpdateConnectionRecordingPreferencesRequest;
144
+ output: UpdateConnectionRecordingPreferencesResponse;
145
+ };
146
+ sdk: {
147
+ input: UpdateConnectionRecordingPreferencesCommandInput;
148
+ output: UpdateConnectionRecordingPreferencesCommandOutput;
149
+ };
150
+ };
151
+ }
@@ -0,0 +1,3 @@
1
+ export * from "./DeleteConnectionRecordingPreferencesCommand";
2
+ export * from "./GetConnectionRecordingPreferencesCommand";
3
+ export * from "./UpdateConnectionRecordingPreferencesCommand";
@@ -0,0 +1,40 @@
1
+ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface ClientInputEndpointParameters {
6
+ region?: string | Provider<string>;
7
+ useDualstackEndpoint?: boolean | Provider<boolean>;
8
+ useFipsEndpoint?: boolean | Provider<boolean>;
9
+ endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
10
+ }
11
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
12
+ defaultSigningName: string;
13
+ };
14
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
+ defaultSigningName: string;
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
+ };
35
+ export interface EndpointParameters extends __EndpointParameters {
36
+ Region?: string;
37
+ UseDualStack?: boolean;
38
+ UseFIPS?: boolean;
39
+ Endpoint?: string;
40
+ }
@@ -0,0 +1,5 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
+ logger?: Logger;
5
+ }) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ /**
6
+ * @internal
7
+ */
8
+ export interface SSMGuiConnectExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration, HttpAuthExtensionConfiguration {
9
+ }
@@ -0,0 +1,36 @@
1
+ /**
2
+ * <fullname>AWS Systems Manager GUI Connect</fullname>
3
+ * <p>Systems Manager GUI Connect, a component of Fleet Manager, lets you connect to your Window
4
+ * Server-type Amazon Elastic Compute Cloud (Amazon EC2) instances using the Remote Desktop Protocol (RDP). GUI
5
+ * Connect, which is powered by <a href="https://docs.aws.amazon.com/dcv/latest/adminguide/what-is-dcv.html">Amazon DCV</a>, provides you
6
+ * with secure connectivity to your Windows Server instances directly from the Systems Manager console.
7
+ * You can have up to four simultaneous connections in a single browser window. In the
8
+ * console, GUI Connect is also referred to as Fleet Manager Remote Desktop.</p>
9
+ * <p>This reference is intended to be used with the <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/">
10
+ * <i>Amazon Web Services Systems Manager User
11
+ * Guide</i>
12
+ * </a>. To get started, see the following user guide topics:</p>
13
+ * <ul>
14
+ * <li>
15
+ * <p>
16
+ * <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-setting-up.html">Setting up
17
+ * Amazon Web Services Systems Manager</a>
18
+ * </p>
19
+ * </li>
20
+ * <li>
21
+ * <p>
22
+ * <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/fleet-rdp.html">Connect to a Windows Server managed instance using Remote Desktop</a>
23
+ * </p>
24
+ * </li>
25
+ * </ul>
26
+ *
27
+ * @packageDocumentation
28
+ */
29
+ export * from "./SSMGuiConnectClient";
30
+ export * from "./SSMGuiConnect";
31
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
32
+ export type { RuntimeExtension } from "./runtimeExtensions";
33
+ export type { SSMGuiConnectExtensionConfiguration } from "./extensionConfiguration";
34
+ export * from "./commands";
35
+ export * from "./models";
36
+ export { SSMGuiConnectServiceException } from "./models/SSMGuiConnectServiceException";
@@ -0,0 +1,14 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
2
+ export type { __ServiceExceptionOptions };
3
+ export { __ServiceException };
4
+ /**
5
+ * @public
6
+ *
7
+ * Base exception class for all service exceptions from SSMGuiConnect service.
8
+ */
9
+ export declare class SSMGuiConnectServiceException extends __ServiceException {
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(options: __ServiceExceptionOptions);
14
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,194 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { SSMGuiConnectServiceException as __BaseException } from "./SSMGuiConnectServiceException";
3
+ /**
4
+ * <p>You do not have sufficient access to perform this action.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
+ }
15
+ /**
16
+ * <p>An error occurred due to a conflict.</p>
17
+ * @public
18
+ */
19
+ export declare class ConflictException extends __BaseException {
20
+ readonly name: "ConflictException";
21
+ readonly $fault: "client";
22
+ /**
23
+ * @internal
24
+ */
25
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
26
+ }
27
+ /**
28
+ * <p>The S3 bucket where RDP connection recordings are stored.</p>
29
+ * @public
30
+ */
31
+ export interface S3Bucket {
32
+ /**
33
+ * <p>The Amazon Web Services account number that owns the S3 bucket.</p>
34
+ * @public
35
+ */
36
+ BucketOwner: string | undefined;
37
+ /**
38
+ * <p>The name of the S3 bucket where RDP connection recordings are stored.</p>
39
+ * @public
40
+ */
41
+ BucketName: string | undefined;
42
+ }
43
+ /**
44
+ * <p>Determines where recordings of RDP connections are stored.</p>
45
+ * @public
46
+ */
47
+ export interface RecordingDestinations {
48
+ /**
49
+ * <p>The S3 bucket where RDP connection recordings are stored.</p>
50
+ * @public
51
+ */
52
+ S3Buckets: S3Bucket[] | undefined;
53
+ }
54
+ /**
55
+ * <p>The set of preferences used for recording RDP connections in the requesting Amazon Web Services account and Amazon Web Services Region. This includes details such as which S3 bucket recordings are stored in.</p>
56
+ * @public
57
+ */
58
+ export interface ConnectionRecordingPreferences {
59
+ /**
60
+ * <p>Determines where recordings of RDP connections are stored.</p>
61
+ * @public
62
+ */
63
+ RecordingDestinations: RecordingDestinations | undefined;
64
+ /**
65
+ * <p>The ARN of a KMS key that is used to encrypt data while it is being processed by the service. This key must exist in the same Amazon Web Services Region as the node you start an RDP connection to.</p>
66
+ * @public
67
+ */
68
+ KMSKeyArn: string | undefined;
69
+ }
70
+ /**
71
+ * @public
72
+ */
73
+ export interface DeleteConnectionRecordingPreferencesRequest {
74
+ /**
75
+ * <p>User-provided idempotency token.</p>
76
+ * @public
77
+ */
78
+ ClientToken?: string | undefined;
79
+ }
80
+ /**
81
+ * @public
82
+ */
83
+ export interface DeleteConnectionRecordingPreferencesResponse {
84
+ /**
85
+ * <p>Service-provided idempotency token.</p>
86
+ * @public
87
+ */
88
+ ClientToken?: string | undefined;
89
+ }
90
+ /**
91
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
92
+ * @public
93
+ */
94
+ export declare class InternalServerException extends __BaseException {
95
+ readonly name: "InternalServerException";
96
+ readonly $fault: "server";
97
+ /**
98
+ * @internal
99
+ */
100
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
101
+ }
102
+ /**
103
+ * <p>The resource could not be found.</p>
104
+ * @public
105
+ */
106
+ export declare class ResourceNotFoundException extends __BaseException {
107
+ readonly name: "ResourceNotFoundException";
108
+ readonly $fault: "client";
109
+ /**
110
+ * @internal
111
+ */
112
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
113
+ }
114
+ /**
115
+ * <p>Your request exceeds a service quota.</p>
116
+ * @public
117
+ */
118
+ export declare class ServiceQuotaExceededException extends __BaseException {
119
+ readonly name: "ServiceQuotaExceededException";
120
+ readonly $fault: "client";
121
+ /**
122
+ * @internal
123
+ */
124
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
125
+ }
126
+ /**
127
+ * <p>The request was denied due to request throttling.</p>
128
+ * @public
129
+ */
130
+ export declare class ThrottlingException extends __BaseException {
131
+ readonly name: "ThrottlingException";
132
+ readonly $fault: "client";
133
+ /**
134
+ * @internal
135
+ */
136
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
137
+ }
138
+ /**
139
+ * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
140
+ * @public
141
+ */
142
+ export declare class ValidationException extends __BaseException {
143
+ readonly name: "ValidationException";
144
+ readonly $fault: "client";
145
+ /**
146
+ * @internal
147
+ */
148
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
149
+ }
150
+ /**
151
+ * @public
152
+ */
153
+ export interface GetConnectionRecordingPreferencesResponse {
154
+ /**
155
+ * <p>Service-provided idempotency token.</p>
156
+ * @public
157
+ */
158
+ ClientToken?: string | undefined;
159
+ /**
160
+ * <p>The set of preferences used for recording RDP connections in the requesting Amazon Web Services account and Amazon Web Services Region. This includes details such as which S3 bucket recordings are stored in.</p>
161
+ * @public
162
+ */
163
+ ConnectionRecordingPreferences?: ConnectionRecordingPreferences | undefined;
164
+ }
165
+ /**
166
+ * @public
167
+ */
168
+ export interface UpdateConnectionRecordingPreferencesRequest {
169
+ /**
170
+ * <p>The set of preferences used for recording RDP connections in the requesting Amazon Web Services account and Amazon Web Services Region. This includes details such as which S3 bucket recordings are stored in.</p>
171
+ * @public
172
+ */
173
+ ConnectionRecordingPreferences: ConnectionRecordingPreferences | undefined;
174
+ /**
175
+ * <p>User-provided idempotency token.</p>
176
+ * @public
177
+ */
178
+ ClientToken?: string | undefined;
179
+ }
180
+ /**
181
+ * @public
182
+ */
183
+ export interface UpdateConnectionRecordingPreferencesResponse {
184
+ /**
185
+ * <p>Service-provided idempotency token.</p>
186
+ * @public
187
+ */
188
+ ClientToken?: string | undefined;
189
+ /**
190
+ * <p>The set of preferences used for recording RDP connections in the requesting Amazon Web Services account and Amazon Web Services Region. This includes details such as which S3 bucket recordings are stored in.</p>
191
+ * @public
192
+ */
193
+ ConnectionRecordingPreferences?: ConnectionRecordingPreferences | undefined;
194
+ }
@@ -0,0 +1,29 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { DeleteConnectionRecordingPreferencesCommandInput, DeleteConnectionRecordingPreferencesCommandOutput } from "../commands/DeleteConnectionRecordingPreferencesCommand";
4
+ import { GetConnectionRecordingPreferencesCommandInput, GetConnectionRecordingPreferencesCommandOutput } from "../commands/GetConnectionRecordingPreferencesCommand";
5
+ import { UpdateConnectionRecordingPreferencesCommandInput, UpdateConnectionRecordingPreferencesCommandOutput } from "../commands/UpdateConnectionRecordingPreferencesCommand";
6
+ /**
7
+ * serializeAws_restJson1DeleteConnectionRecordingPreferencesCommand
8
+ */
9
+ export declare const se_DeleteConnectionRecordingPreferencesCommand: (input: DeleteConnectionRecordingPreferencesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
10
+ /**
11
+ * serializeAws_restJson1GetConnectionRecordingPreferencesCommand
12
+ */
13
+ export declare const se_GetConnectionRecordingPreferencesCommand: (input: GetConnectionRecordingPreferencesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
14
+ /**
15
+ * serializeAws_restJson1UpdateConnectionRecordingPreferencesCommand
16
+ */
17
+ export declare const se_UpdateConnectionRecordingPreferencesCommand: (input: UpdateConnectionRecordingPreferencesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ /**
19
+ * deserializeAws_restJson1DeleteConnectionRecordingPreferencesCommand
20
+ */
21
+ export declare const de_DeleteConnectionRecordingPreferencesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectionRecordingPreferencesCommandOutput>;
22
+ /**
23
+ * deserializeAws_restJson1GetConnectionRecordingPreferencesCommand
24
+ */
25
+ export declare const de_GetConnectionRecordingPreferencesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConnectionRecordingPreferencesCommandOutput>;
26
+ /**
27
+ * deserializeAws_restJson1UpdateConnectionRecordingPreferencesCommand
28
+ */
29
+ export declare const de_UpdateConnectionRecordingPreferencesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConnectionRecordingPreferencesCommandOutput>;
@@ -0,0 +1,50 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ cacheMiddleware?: boolean | undefined;
22
+ urlParser: import("@smithy/types").UrlParser;
23
+ base64Decoder: import("@smithy/types").Decoder;
24
+ base64Encoder: (_input: string | Uint8Array) => string;
25
+ utf8Decoder: import("@smithy/types").Decoder;
26
+ utf8Encoder: (input: string | Uint8Array) => string;
27
+ disableHostPrefix: boolean;
28
+ serviceId: string;
29
+ profile?: string | undefined;
30
+ logger: import("@smithy/types").Logger;
31
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
33
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
35
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
36
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
+ logger?: import("@smithy/types").Logger | undefined;
38
+ }) => import("@smithy/types").EndpointV2;
39
+ tls?: boolean | undefined;
40
+ serviceConfiguredEndpoint?: undefined;
41
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]> | undefined;
42
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
43
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSMGuiConnectHttpAuthSchemeProvider;
44
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
45
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
46
+ signingEscapePath?: boolean | undefined;
47
+ systemClockOffset?: number | undefined;
48
+ signingRegion?: string | undefined;
49
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
50
+ };
@@ -0,0 +1,50 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
12
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
13
+ maxAttempts: number | import("@smithy/types").Provider<number>;
14
+ region: string | import("@smithy/types").Provider<string>;
15
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
16
+ retryMode: string | import("@smithy/types").Provider<string>;
17
+ sha256: import("@smithy/types").HashConstructor;
18
+ streamCollector: import("@smithy/types").StreamCollector;
19
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
22
+ apiVersion: string;
23
+ cacheMiddleware?: boolean | undefined;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: (_input: string | Uint8Array) => string;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: (input: string | Uint8Array) => string;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ profile?: string | undefined;
32
+ logger: import("@smithy/types").Logger;
33
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
36
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
37
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
38
+ logger?: import("@smithy/types").Logger | undefined;
39
+ }) => import("@smithy/types").EndpointV2;
40
+ tls?: boolean | undefined;
41
+ serviceConfiguredEndpoint?: undefined;
42
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
43
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSMGuiConnectHttpAuthSchemeProvider;
44
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
45
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
46
+ signingEscapePath?: boolean | undefined;
47
+ systemClockOffset?: number | undefined;
48
+ signingRegion?: string | undefined;
49
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
50
+ };
@@ -0,0 +1,49 @@
1
+ import { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: SSMGuiConnectClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ cacheMiddleware?: boolean | undefined;
11
+ urlParser: import("@smithy/types").UrlParser;
12
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
+ streamCollector: import("@smithy/types").StreamCollector;
14
+ base64Decoder: import("@smithy/types").Decoder;
15
+ base64Encoder: (_input: string | Uint8Array) => string;
16
+ utf8Decoder: import("@smithy/types").Decoder;
17
+ utf8Encoder: (input: string | Uint8Array) => string;
18
+ disableHostPrefix: boolean;
19
+ serviceId: string;
20
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ region: string | import("@smithy/types").Provider<any>;
23
+ profile?: string | undefined;
24
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
25
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
26
+ maxAttempts: number | import("@smithy/types").Provider<number>;
27
+ retryMode: string | import("@smithy/types").Provider<string>;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
33
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
+ logger?: import("@smithy/types").Logger | undefined;
37
+ }) => import("@smithy/types").EndpointV2;
38
+ tls?: boolean | undefined;
39
+ serviceConfiguredEndpoint?: undefined;
40
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]> | undefined;
41
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
42
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSMGuiConnectHttpAuthSchemeProvider;
43
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
44
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
45
+ signingEscapePath?: boolean | undefined;
46
+ systemClockOffset?: number | undefined;
47
+ signingRegion?: string | undefined;
48
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
49
+ };