@aws-sdk/client-ivschat 3.222.0 → 3.224.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.
@@ -6,7 +6,7 @@ exports.ruleSet = {
6
6
  parameters: {
7
7
  Region: {
8
8
  builtIn: "AWS::Region",
9
- required: false,
9
+ required: true,
10
10
  documentation: "The AWS region used to dispatch the request.",
11
11
  type: "String",
12
12
  },
@@ -675,6 +675,9 @@ const deserializeAws_restJson1DeleteMessageCommandError = async (output, context
675
675
  case "AccessDeniedException":
676
676
  case "com.amazonaws.ivschat#AccessDeniedException":
677
677
  throw await deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context);
678
+ case "PendingVerification":
679
+ case "com.amazonaws.ivschat#PendingVerification":
680
+ throw await deserializeAws_restJson1PendingVerificationResponse(parsedOutput, context);
678
681
  case "ResourceNotFoundException":
679
682
  case "com.amazonaws.ivschat#ResourceNotFoundException":
680
683
  throw await deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context);
@@ -755,6 +758,9 @@ const deserializeAws_restJson1DisconnectUserCommandError = async (output, contex
755
758
  case "AccessDeniedException":
756
759
  case "com.amazonaws.ivschat#AccessDeniedException":
757
760
  throw await deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context);
761
+ case "PendingVerification":
762
+ case "com.amazonaws.ivschat#PendingVerification":
763
+ throw await deserializeAws_restJson1PendingVerificationResponse(parsedOutput, context);
758
764
  case "ResourceNotFoundException":
759
765
  case "com.amazonaws.ivschat#ResourceNotFoundException":
760
766
  throw await deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context);
@@ -1049,6 +1055,9 @@ const deserializeAws_restJson1SendEventCommandError = async (output, context) =>
1049
1055
  case "AccessDeniedException":
1050
1056
  case "com.amazonaws.ivschat#AccessDeniedException":
1051
1057
  throw await deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context);
1058
+ case "PendingVerification":
1059
+ case "com.amazonaws.ivschat#PendingVerification":
1060
+ throw await deserializeAws_restJson1PendingVerificationResponse(parsedOutput, context);
1052
1061
  case "ResourceNotFoundException":
1053
1062
  case "com.amazonaws.ivschat#ResourceNotFoundException":
1054
1063
  throw await deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context);
@@ -3,7 +3,7 @@ export const ruleSet = {
3
3
  parameters: {
4
4
  Region: {
5
5
  builtIn: "AWS::Region",
6
- required: false,
6
+ required: true,
7
7
  documentation: "The AWS region used to dispatch the request.",
8
8
  type: "String",
9
9
  },
@@ -650,6 +650,9 @@ const deserializeAws_restJson1DeleteMessageCommandError = async (output, context
650
650
  case "AccessDeniedException":
651
651
  case "com.amazonaws.ivschat#AccessDeniedException":
652
652
  throw await deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context);
653
+ case "PendingVerification":
654
+ case "com.amazonaws.ivschat#PendingVerification":
655
+ throw await deserializeAws_restJson1PendingVerificationResponse(parsedOutput, context);
653
656
  case "ResourceNotFoundException":
654
657
  case "com.amazonaws.ivschat#ResourceNotFoundException":
655
658
  throw await deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context);
@@ -728,6 +731,9 @@ const deserializeAws_restJson1DisconnectUserCommandError = async (output, contex
728
731
  case "AccessDeniedException":
729
732
  case "com.amazonaws.ivschat#AccessDeniedException":
730
733
  throw await deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context);
734
+ case "PendingVerification":
735
+ case "com.amazonaws.ivschat#PendingVerification":
736
+ throw await deserializeAws_restJson1PendingVerificationResponse(parsedOutput, context);
731
737
  case "ResourceNotFoundException":
732
738
  case "com.amazonaws.ivschat#ResourceNotFoundException":
733
739
  throw await deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context);
@@ -1016,6 +1022,9 @@ const deserializeAws_restJson1SendEventCommandError = async (output, context) =>
1016
1022
  case "AccessDeniedException":
1017
1023
  case "com.amazonaws.ivschat#AccessDeniedException":
1018
1024
  throw await deserializeAws_restJson1AccessDeniedExceptionResponse(parsedOutput, context);
1025
+ case "PendingVerification":
1026
+ case "com.amazonaws.ivschat#PendingVerification":
1027
+ throw await deserializeAws_restJson1PendingVerificationResponse(parsedOutput, context);
1019
1028
  case "ResourceNotFoundException":
1020
1029
  case "com.amazonaws.ivschat#ResourceNotFoundException":
1021
1030
  throw await deserializeAws_restJson1ResourceNotFoundExceptionResponse(parsedOutput, context);
@@ -12,7 +12,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
12
12
  defaultSigningName: string;
13
13
  };
14
14
  export interface EndpointParameters extends __EndpointParameters {
15
- Region?: string;
15
+ Region: string;
16
16
  UseDualStack?: boolean;
17
17
  UseFIPS?: boolean;
18
18
  Endpoint?: string;
@@ -186,7 +186,7 @@ export interface S3DestinationConfiguration {
186
186
  export declare type DestinationConfiguration = DestinationConfiguration.CloudWatchLogsMember | DestinationConfiguration.FirehoseMember | DestinationConfiguration.S3Member | DestinationConfiguration.$UnknownMember;
187
187
  export declare namespace DestinationConfiguration {
188
188
  /**
189
- * <p>Name of the Amazon S3 bucket where chat activity will be logged.</p>
189
+ * <p>An Amazon S3 destination configuration where chat activity will be logged.</p>
190
190
  */
191
191
  interface S3Member {
192
192
  s3: S3DestinationConfiguration;
@@ -195,7 +195,8 @@ export declare namespace DestinationConfiguration {
195
195
  $unknown?: never;
196
196
  }
197
197
  /**
198
- * <p>Name of the Amazon CloudWatch Logs destination where chat activity will be logged.</p>
198
+ * <p>An Amazon CloudWatch Logs destination configuration where chat activity will be
199
+ * logged.</p>
199
200
  */
200
201
  interface CloudWatchLogsMember {
201
202
  s3?: never;
@@ -204,8 +205,8 @@ export declare namespace DestinationConfiguration {
204
205
  $unknown?: never;
205
206
  }
206
207
  /**
207
- * <p>Name of the Amazon Kinesis Data Firehose destination where chat activity will be
208
- * logged</p>
208
+ * <p>An Amazon Kinesis Data Firehose destination configuration where chat activity will be
209
+ * logged.</p>
209
210
  */
210
211
  interface FirehoseMember {
211
212
  s3?: never;
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
27
27
  defaultSigningName: string;
28
28
  };
29
29
  export interface EndpointParameters extends __EndpointParameters {
30
- Region?: string;
30
+ Region: string;
31
31
  UseDualStack?: boolean;
32
32
  UseFIPS?: boolean;
33
33
  Endpoint?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ivschat",
3
3
  "description": "AWS SDK for JavaScript Ivschat Client for Node.js, Browser and React Native",
4
- "version": "3.222.0",
4
+ "version": "3.224.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,37 +19,36 @@
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.222.0",
23
- "@aws-sdk/config-resolver": "3.222.0",
24
- "@aws-sdk/credential-provider-node": "3.222.0",
25
- "@aws-sdk/fetch-http-handler": "3.222.0",
26
- "@aws-sdk/hash-node": "3.222.0",
27
- "@aws-sdk/invalid-dependency": "3.222.0",
28
- "@aws-sdk/middleware-content-length": "3.222.0",
29
- "@aws-sdk/middleware-endpoint": "3.222.0",
30
- "@aws-sdk/middleware-host-header": "3.222.0",
31
- "@aws-sdk/middleware-logger": "3.222.0",
32
- "@aws-sdk/middleware-recursion-detection": "3.222.0",
33
- "@aws-sdk/middleware-retry": "3.222.0",
34
- "@aws-sdk/middleware-serde": "3.222.0",
35
- "@aws-sdk/middleware-signing": "3.222.0",
36
- "@aws-sdk/middleware-stack": "3.222.0",
37
- "@aws-sdk/middleware-user-agent": "3.222.0",
38
- "@aws-sdk/node-config-provider": "3.222.0",
39
- "@aws-sdk/node-http-handler": "3.222.0",
40
- "@aws-sdk/protocol-http": "3.222.0",
41
- "@aws-sdk/smithy-client": "3.222.0",
42
- "@aws-sdk/types": "3.222.0",
43
- "@aws-sdk/url-parser": "3.222.0",
22
+ "@aws-sdk/client-sts": "3.224.0",
23
+ "@aws-sdk/config-resolver": "3.224.0",
24
+ "@aws-sdk/credential-provider-node": "3.224.0",
25
+ "@aws-sdk/fetch-http-handler": "3.224.0",
26
+ "@aws-sdk/hash-node": "3.224.0",
27
+ "@aws-sdk/invalid-dependency": "3.224.0",
28
+ "@aws-sdk/middleware-content-length": "3.224.0",
29
+ "@aws-sdk/middleware-endpoint": "3.224.0",
30
+ "@aws-sdk/middleware-host-header": "3.224.0",
31
+ "@aws-sdk/middleware-logger": "3.224.0",
32
+ "@aws-sdk/middleware-recursion-detection": "3.224.0",
33
+ "@aws-sdk/middleware-retry": "3.224.0",
34
+ "@aws-sdk/middleware-serde": "3.224.0",
35
+ "@aws-sdk/middleware-signing": "3.224.0",
36
+ "@aws-sdk/middleware-stack": "3.224.0",
37
+ "@aws-sdk/middleware-user-agent": "3.224.0",
38
+ "@aws-sdk/node-config-provider": "3.224.0",
39
+ "@aws-sdk/node-http-handler": "3.224.0",
40
+ "@aws-sdk/protocol-http": "3.224.0",
41
+ "@aws-sdk/smithy-client": "3.224.0",
42
+ "@aws-sdk/types": "3.224.0",
43
+ "@aws-sdk/url-parser": "3.224.0",
44
44
  "@aws-sdk/util-base64": "3.208.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.188.0",
46
46
  "@aws-sdk/util-body-length-node": "3.208.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.222.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.222.0",
49
- "@aws-sdk/util-endpoints": "3.222.0",
50
- "@aws-sdk/util-retry": "3.222.0",
51
- "@aws-sdk/util-user-agent-browser": "3.222.0",
52
- "@aws-sdk/util-user-agent-node": "3.222.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.224.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.224.0",
49
+ "@aws-sdk/util-endpoints": "3.224.0",
50
+ "@aws-sdk/util-user-agent-browser": "3.224.0",
51
+ "@aws-sdk/util-user-agent-node": "3.224.0",
53
52
  "@aws-sdk/util-utf8-browser": "3.188.0",
54
53
  "@aws-sdk/util-utf8-node": "3.208.0",
55
54
  "tslib": "^2.3.1"