@aws-sdk/client-iotfleetwise 3.226.0 → 3.228.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
  },
@@ -3930,6 +3930,7 @@ const deserializeAws_json1_0DecoderManifestValidationException = (output, contex
3930
3930
  invalidSignals: output.invalidSignals != null
3931
3931
  ? deserializeAws_json1_0InvalidSignalDecoders(output.invalidSignals, context)
3932
3932
  : undefined,
3933
+ message: (0, smithy_client_1.expectString)(output.message),
3933
3934
  };
3934
3935
  };
3935
3936
  const deserializeAws_json1_0DeleteCampaignResponse = (output, context) => {
@@ -4193,6 +4194,7 @@ const deserializeAws_json1_0InvalidNetworkInterfaces = (output, context) => {
4193
4194
  const deserializeAws_json1_0InvalidNodeException = (output, context) => {
4194
4195
  return {
4195
4196
  invalidNodes: output.invalidNodes != null ? deserializeAws_json1_0Nodes(output.invalidNodes, context) : undefined,
4197
+ message: (0, smithy_client_1.expectString)(output.message),
4196
4198
  reason: (0, smithy_client_1.expectString)(output.reason),
4197
4199
  };
4198
4200
  };
@@ -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
  },
@@ -3826,6 +3826,7 @@ const deserializeAws_json1_0DecoderManifestValidationException = (output, contex
3826
3826
  invalidSignals: output.invalidSignals != null
3827
3827
  ? deserializeAws_json1_0InvalidSignalDecoders(output.invalidSignals, context)
3828
3828
  : undefined,
3829
+ message: __expectString(output.message),
3829
3830
  };
3830
3831
  };
3831
3832
  const deserializeAws_json1_0DeleteCampaignResponse = (output, context) => {
@@ -4089,6 +4090,7 @@ const deserializeAws_json1_0InvalidNetworkInterfaces = (output, context) => {
4089
4090
  const deserializeAws_json1_0InvalidNodeException = (output, context) => {
4090
4091
  return {
4091
4092
  invalidNodes: output.invalidNodes != null ? deserializeAws_json1_0Nodes(output.invalidNodes, context) : undefined,
4093
+ message: __expectString(output.message),
4092
4094
  reason: __expectString(output.reason),
4093
4095
  };
4094
4096
  };
@@ -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;
@@ -79,6 +79,8 @@ export interface Actuator {
79
79
  */
80
80
  max?: number;
81
81
  /**
82
+ * @deprecated
83
+ *
82
84
  * <p>A specified value for the actuator.</p>
83
85
  */
84
86
  assignedValue?: string;
@@ -226,6 +228,8 @@ export interface Attribute {
226
228
  */
227
229
  max?: number;
228
230
  /**
231
+ * @deprecated
232
+ *
229
233
  * <p>A specified value for the attribute.</p>
230
234
  */
231
235
  assignedValue?: string;
@@ -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-iotfleetwise",
3
3
  "description": "AWS SDK for JavaScript Iotfleetwise Client for Node.js, Browser and React Native",
4
- "version": "3.226.0",
4
+ "version": "3.228.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",