@aws-sdk/client-appstream 3.1093.0 → 3.1095.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/README.md CHANGED
@@ -68,6 +68,45 @@ const params = { /** input parameters */ };
68
68
  const command = new ListExportImageTasksCommand(params);
69
69
  ```
70
70
 
71
+ #### Supported Message Protocols
72
+
73
+ This client supports multiple protocols.
74
+
75
+ The default for this client is **AWS JSON (RPC) 1.1**.
76
+
77
+ We have selected this default based on our evaluation of the
78
+ performance characteristics of this protocol format in JavaScript. You don't need to change it,
79
+ but you have the option to do so, for example to support existing integrations or tests.
80
+ Selecting a non-default protocol changes the format
81
+ of the data sent over the network, but does not affect how you interact with the
82
+ client using JavaScript objects.
83
+
84
+ Install the `@aws-sdk/config` package to access alternate protocols.
85
+
86
+ See [AWS Protocols](https://smithy.io/2.0/aws/protocols/index.html) for more information.
87
+
88
+ ##### AWS JSON (RPC) 1.1
89
+
90
+ This protocol uses JSON payloads.
91
+ ```js
92
+ import { AwsJson1_1Protocol } from "@aws-sdk/config/protocol";
93
+
94
+ const client = new AppStreamClient({
95
+ protocol: AwsJson1_1Protocol
96
+ });
97
+ ```
98
+
99
+ ##### Smithy RPC v2 CBOR
100
+
101
+ This protocol uses CBOR payloads.
102
+ ```js
103
+ import { AwsSmithyRpcV2CborProtocol } from "@aws-sdk/config/protocol";
104
+
105
+ const client = new AppStreamClient({
106
+ protocol: AwsSmithyRpcV2CborProtocol
107
+ });
108
+ ```
109
+
71
110
  #### Async/await
72
111
 
73
112
  We recommend using the [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await)
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1092.0";
72
+ var version = "3.1094.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -42,6 +42,7 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
42
42
  logger?: import("@smithy/types").Logger;
43
43
  }) => import("@smithy/types").EndpointV2;
44
44
  tls?: boolean;
45
+ ignoreConfiguredEndpointUrls?: boolean;
45
46
  serviceConfiguredEndpoint?: never;
46
47
  authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
47
48
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
@@ -52,4 +53,5 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
52
53
  systemClockOffset?: number;
53
54
  signingRegion?: string;
54
55
  signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
56
+ disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
55
57
  };
@@ -43,6 +43,7 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
43
43
  logger?: import("@smithy/types").Logger;
44
44
  }) => import("@smithy/types").EndpointV2;
45
45
  tls?: boolean;
46
+ ignoreConfiguredEndpointUrls?: boolean;
46
47
  serviceConfiguredEndpoint?: never;
47
48
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
48
49
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AppStreamHttpAuthSchemeProvider;
@@ -52,4 +53,5 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
52
53
  systemClockOffset?: number;
53
54
  signingRegion?: string;
54
55
  signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
56
+ disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
55
57
  };
@@ -41,6 +41,7 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
41
41
  logger?: import("@smithy/types").Logger;
42
42
  }) => import("@smithy/types").EndpointV2;
43
43
  tls?: boolean;
44
+ ignoreConfiguredEndpointUrls?: boolean;
44
45
  serviceConfiguredEndpoint?: never;
45
46
  authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
46
47
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
@@ -51,4 +52,5 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
51
52
  systemClockOffset?: number;
52
53
  signingRegion?: string;
53
54
  signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
55
+ disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
54
56
  };
@@ -71,6 +71,7 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
71
71
  },
72
72
  ) => import("@smithy/types").EndpointV2;
73
73
  tls?: boolean;
74
+ ignoreConfiguredEndpointUrls?: boolean;
74
75
  serviceConfiguredEndpoint?: never;
75
76
  authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
76
77
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
@@ -90,4 +91,5 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
90
91
  options: import("@smithy/signature-v4").SignatureV4Init &
91
92
  import("@smithy/signature-v4").SignatureV4CryptoInit,
92
93
  ) => import("@smithy/types").RequestSigner;
94
+ disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
93
95
  };
@@ -72,6 +72,7 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
72
72
  },
73
73
  ) => import("@smithy/types").EndpointV2;
74
74
  tls?: boolean;
75
+ ignoreConfiguredEndpointUrls?: boolean;
75
76
  serviceConfiguredEndpoint?: never;
76
77
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
77
78
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AppStreamHttpAuthSchemeProvider;
@@ -90,4 +91,5 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
90
91
  options: import("@smithy/signature-v4").SignatureV4Init &
91
92
  import("@smithy/signature-v4").SignatureV4CryptoInit,
92
93
  ) => import("@smithy/types").RequestSigner;
94
+ disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
93
95
  };
@@ -75,6 +75,7 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
75
75
  },
76
76
  ) => import("@smithy/types").EndpointV2;
77
77
  tls?: boolean;
78
+ ignoreConfiguredEndpointUrls?: boolean;
78
79
  serviceConfiguredEndpoint?: never;
79
80
  authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
80
81
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
@@ -94,4 +95,5 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
94
95
  options: import("@smithy/signature-v4").SignatureV4Init &
95
96
  import("@smithy/signature-v4").SignatureV4CryptoInit,
96
97
  ) => import("@smithy/types").RequestSigner;
98
+ disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
97
99
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-appstream",
3
- "version": "3.1093.0",
3
+ "version": "3.1095.0",
4
4
  "description": "AWS SDK for JavaScript Appstream Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-appstream",
6
6
  "license": "Apache-2.0",
@@ -46,12 +46,12 @@
46
46
  "test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
47
47
  },
48
48
  "dependencies": {
49
- "@aws-sdk/core": "^3.976.0",
50
- "@aws-sdk/credential-provider-node": "^3.972.71",
49
+ "@aws-sdk/core": "^3.977.0",
50
+ "@aws-sdk/credential-provider-node": "^3.972.72",
51
51
  "@aws-sdk/types": "^3.974.2",
52
- "@smithy/core": "^3.29.4",
53
- "@smithy/fetch-http-handler": "^5.6.6",
54
- "@smithy/node-http-handler": "^4.9.6",
52
+ "@smithy/core": "^3.29.8",
53
+ "@smithy/fetch-http-handler": "^5.6.10",
54
+ "@smithy/node-http-handler": "^4.9.10",
55
55
  "@smithy/types": "^4.16.1",
56
56
  "tslib": "^2.6.2"
57
57
  },