@aws-sdk/client-iot 3.319.0 → 3.323.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.
@@ -526,6 +526,7 @@ const se_CreateDomainConfigurationCommand = async (input, context) => {
526
526
  serverCertificateArns: (_) => (0, smithy_client_1._json)(_),
527
527
  serviceType: [],
528
528
  tags: (_) => (0, smithy_client_1._json)(_),
529
+ tlsConfig: (_) => (0, smithy_client_1._json)(_),
529
530
  validationCertificateArn: [],
530
531
  }));
531
532
  return new protocol_http_1.HttpRequest({
@@ -4878,6 +4879,7 @@ const se_UpdateDomainConfigurationCommand = async (input, context) => {
4878
4879
  authorizerConfig: (_) => (0, smithy_client_1._json)(_),
4879
4880
  domainConfigurationStatus: [],
4880
4881
  removeAuthorizerConfig: [],
4882
+ tlsConfig: (_) => (0, smithy_client_1._json)(_),
4881
4883
  }));
4882
4884
  return new protocol_http_1.HttpRequest({
4883
4885
  protocol,
@@ -9430,6 +9432,7 @@ const de_DescribeDomainConfigurationCommand = async (output, context) => {
9430
9432
  lastStatusChangeDate: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
9431
9433
  serverCertificates: smithy_client_1._json,
9432
9434
  serviceType: smithy_client_1.expectString,
9435
+ tlsConfig: smithy_client_1._json,
9433
9436
  });
9434
9437
  Object.assign(contents, doc);
9435
9438
  return contents;
@@ -492,6 +492,7 @@ export const se_CreateDomainConfigurationCommand = async (input, context) => {
492
492
  serverCertificateArns: (_) => _json(_),
493
493
  serviceType: [],
494
494
  tags: (_) => _json(_),
495
+ tlsConfig: (_) => _json(_),
495
496
  validationCertificateArn: [],
496
497
  }));
497
498
  return new __HttpRequest({
@@ -4645,6 +4646,7 @@ export const se_UpdateDomainConfigurationCommand = async (input, context) => {
4645
4646
  authorizerConfig: (_) => _json(_),
4646
4647
  domainConfigurationStatus: [],
4647
4648
  removeAuthorizerConfig: [],
4649
+ tlsConfig: (_) => _json(_),
4648
4650
  }));
4649
4651
  return new __HttpRequest({
4650
4652
  protocol,
@@ -9091,6 +9093,7 @@ export const de_DescribeDomainConfigurationCommand = async (output, context) =>
9091
9093
  lastStatusChangeDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
9092
9094
  serverCertificates: _json,
9093
9095
  serviceType: __expectString,
9096
+ tlsConfig: _json,
9094
9097
  });
9095
9098
  Object.assign(contents, doc);
9096
9099
  return contents;
@@ -45,6 +45,9 @@ export interface CreateDomainConfigurationCommandOutput extends CreateDomainConf
45
45
  * Value: "STRING_VALUE",
46
46
  * },
47
47
  * ],
48
+ * tlsConfig: { // TlsConfig
49
+ * securityPolicy: "STRING_VALUE",
50
+ * },
48
51
  * };
49
52
  * const command = new CreateDomainConfigurationCommand(input);
50
53
  * const response = await client.send(command);
@@ -2,7 +2,7 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient";
5
- import { DeletePolicyRequest } from "../models/models_0";
5
+ import { DeletePolicyRequest } from "../models/models_1";
6
6
  /**
7
7
  * @public
8
8
  *
@@ -2,7 +2,8 @@ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient";
5
- import { ListSecurityProfilesForTargetRequest, ListSecurityProfilesForTargetResponse } from "../models/models_1";
5
+ import { ListSecurityProfilesForTargetRequest } from "../models/models_1";
6
+ import { ListSecurityProfilesForTargetResponse } from "../models/models_2";
6
7
  /**
7
8
  * @public
8
9
  *
@@ -36,6 +36,9 @@ export interface UpdateDomainConfigurationCommandOutput extends UpdateDomainConf
36
36
  * },
37
37
  * domainConfigurationStatus: "ENABLED" || "DISABLED",
38
38
  * removeAuthorizerConfig: true || false,
39
+ * tlsConfig: { // TlsConfig
40
+ * securityPolicy: "STRING_VALUE",
41
+ * },
39
42
  * };
40
43
  * const command = new UpdateDomainConfigurationCommand(input);
41
44
  * const response = await client.send(command);
@@ -3187,6 +3187,18 @@ export declare const ServiceType: {
3187
3187
  * @public
3188
3188
  */
3189
3189
  export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
3190
+ /**
3191
+ * @public
3192
+ * <p>An object that specifies the TLS configuration for a domain.</p>
3193
+ */
3194
+ export interface TlsConfig {
3195
+ /**
3196
+ * <p>The security policy for a domain configuration. For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/transport-security.html#tls-policy-table">Security
3197
+ * policies </a> in the <i>Amazon Web Services IoT Core developer
3198
+ * guide</i>.</p>
3199
+ */
3200
+ securityPolicy?: string;
3201
+ }
3190
3202
  /**
3191
3203
  * @public
3192
3204
  */
@@ -3231,6 +3243,10 @@ export interface CreateDomainConfigurationRequest {
3231
3243
  * </note>
3232
3244
  */
3233
3245
  tags?: Tag[];
3246
+ /**
3247
+ * <p>An object that specifies the TLS configuration for a domain.</p>
3248
+ */
3249
+ tlsConfig?: TlsConfig;
3234
3250
  }
3235
3251
  /**
3236
3252
  * @public
@@ -3553,8 +3569,9 @@ export interface JobExecutionsRolloutConfig {
3553
3569
  */
3554
3570
  export interface PresignedUrlConfig {
3555
3571
  /**
3556
- * <p>The ARN of an IAM role that grants grants permission to download files from the S3 bucket where the job
3557
- * data/updates are stored. The role must also grant permission for IoT to download the files.</p>
3572
+ * <p>The ARN of an IAM role that grants permission to download files from the S3 bucket
3573
+ * where the job data/updates are stored. The role must also grant permission for IoT to
3574
+ * download the files.</p>
3558
3575
  * <important>
3559
3576
  * <p>For information about addressing the confused deputy problem, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/cross-service-confused-deputy-prevention.html">cross-service
3560
3577
  * confused deputy prevention</a> in the <i>Amazon Web Services IoT Core developer guide</i>.</p>
@@ -3671,15 +3688,9 @@ export interface CreateJobRequest {
3671
3688
  */
3672
3689
  targets: string[] | undefined;
3673
3690
  /**
3674
- * <p>An S3 link to the job document. Required if you don't specify a value for <code>document</code>.</p>
3675
- * <note>
3676
- * <p>If the job document resides in an S3 bucket, you must use a placeholder link when specifying the document.</p>
3677
- * <p>The placeholder link is of the following form:</p>
3678
- * <p>
3679
- * <code>$\{aws:iot:s3-presigned-url:https://s3.amazonaws.com/<i>bucket</i>/<i>key</i>\}</code>
3680
- * </p>
3681
- * <p>where <i>bucket</i> is your bucket name and <i>key</i> is the object in the bucket to which you are linking.</p>
3682
- * </note>
3691
+ * <p>An S3 link, or S3 object URL, to the job document. The link is an Amazon S3 object URL and is required if you don't specify a value for <code>document</code>.</p>
3692
+ * <p>For example, <code>--document-source https://s3.<i>region-code</i>.amazonaws.com/example-firmware/device-firmware.1.0</code>.</p>
3693
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-bucket-intro.html">Methods for accessing a bucket</a>.</p>
3683
3694
  */
3684
3695
  documentSource?: string;
3685
3696
  /**
@@ -5769,16 +5780,6 @@ export interface DeleteOTAUpdateRequest {
5769
5780
  */
5770
5781
  export interface DeleteOTAUpdateResponse {
5771
5782
  }
5772
- /**
5773
- * @public
5774
- * <p>The input for the DeletePolicy operation.</p>
5775
- */
5776
- export interface DeletePolicyRequest {
5777
- /**
5778
- * <p>The name of the policy to delete.</p>
5779
- */
5780
- policyName: string | undefined;
5781
- }
5782
5783
  /**
5783
5784
  * @internal
5784
5785
  */
@@ -1,6 +1,16 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { IoTServiceException as __BaseException } from "./IoTServiceException";
3
- import { AbortConfig, Action, ActiveViolation, AggregationType, AlertTarget, AuditCheckConfiguration, AuditCheckDetails, AuditFinding, AuditFrequency, AuditMitigationActionExecutionMetadata, AuditMitigationActionsExecutionStatus, AuditMitigationActionsTaskMetadata, AuditMitigationActionsTaskStatus, AuditMitigationActionsTaskTarget, AuditNotificationTarget, AuditSuppression, AuditTaskMetadata, AuditTaskStatus, AuditTaskType, AuthorizerConfig, AuthorizerDescription, AuthorizerStatus, AuthorizerSummary, AutoRegistrationStatus, AwsJobExecutionsRolloutConfig, AwsJobPresignedUrlConfig, Behavior, BillingGroupProperties, CustomMetricType, DayOfWeek, DimensionType, DimensionValueOperator, FleetMetricUnit, JobExecutionsRetryConfig, JobExecutionsRolloutConfig, LogLevel, MaintenanceWindow, MetricToRetain, MetricValue, MitigationActionParams, OTAUpdateFile, OTAUpdateStatus, Policy, PresignedUrlConfig, Protocol, ProvisioningHook, RelatedResource, ResourceIdentifier, SchedulingConfig, ServiceType, StreamFile, TargetSelection, TaskStatisticsForAuditCheck, TemplateType, ThingGroupProperties, ThingTypeProperties, TimeoutConfig, TopicRuleDestination, VerificationState } from "./models_0";
3
+ import { AbortConfig, Action, ActiveViolation, AggregationType, AlertTarget, AuditCheckConfiguration, AuditCheckDetails, AuditFinding, AuditFrequency, AuditMitigationActionExecutionMetadata, AuditMitigationActionsExecutionStatus, AuditMitigationActionsTaskMetadata, AuditMitigationActionsTaskStatus, AuditMitigationActionsTaskTarget, AuditNotificationTarget, AuditSuppression, AuditTaskMetadata, AuditTaskStatus, AuditTaskType, AuthorizerConfig, AuthorizerDescription, AuthorizerStatus, AuthorizerSummary, AutoRegistrationStatus, AwsJobExecutionsRolloutConfig, AwsJobPresignedUrlConfig, Behavior, BillingGroupProperties, CustomMetricType, DayOfWeek, DimensionType, DimensionValueOperator, FleetMetricUnit, JobExecutionsRetryConfig, JobExecutionsRolloutConfig, LogLevel, MaintenanceWindow, MetricToRetain, MetricValue, MitigationActionParams, OTAUpdateFile, OTAUpdateStatus, Policy, PresignedUrlConfig, Protocol, ProvisioningHook, RelatedResource, ResourceIdentifier, SchedulingConfig, ServiceType, StreamFile, TargetSelection, TaskStatisticsForAuditCheck, TemplateType, ThingGroupProperties, ThingTypeProperties, TimeoutConfig, TlsConfig, TopicRuleDestination, VerificationState } from "./models_0";
4
+ /**
5
+ * @public
6
+ * <p>The input for the DeletePolicy operation.</p>
7
+ */
8
+ export interface DeletePolicyRequest {
9
+ /**
10
+ * <p>The name of the policy to delete.</p>
11
+ */
12
+ policyName: string | undefined;
13
+ }
4
14
  /**
5
15
  * @public
6
16
  * <p>The input for the DeletePolicyVersion operation.</p>
@@ -1211,6 +1221,10 @@ export interface DescribeDomainConfigurationResponse {
1211
1221
  * <p>The date and time the domain configuration's status was last changed.</p>
1212
1222
  */
1213
1223
  lastStatusChangeDate?: Date;
1224
+ /**
1225
+ * <p>An object that specifies the TLS configuration for a domain.</p>
1226
+ */
1227
+ tlsConfig?: TlsConfig;
1214
1228
  }
1215
1229
  /**
1216
1230
  * @public
@@ -5741,17 +5755,3 @@ export interface SecurityProfileTargetMapping {
5741
5755
  */
5742
5756
  target?: SecurityProfileTarget;
5743
5757
  }
5744
- /**
5745
- * @public
5746
- */
5747
- export interface ListSecurityProfilesForTargetResponse {
5748
- /**
5749
- * <p>A list of security profiles and their associated targets.</p>
5750
- */
5751
- securityProfileTargetMappings?: SecurityProfileTargetMapping[];
5752
- /**
5753
- * <p>A token that can be used to retrieve the next set of results, or <code>null</code> if there are no
5754
- * additional results.</p>
5755
- */
5756
- nextToken?: string;
5757
- }
@@ -1,7 +1,21 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { IoTServiceException as __BaseException } from "./IoTServiceException";
3
- import { AbortConfig, AggregationType, AlertTarget, AttributePayload, AuditCheckConfiguration, AuditFrequency, AuditMitigationActionsTaskTarget, AuditNotificationTarget, AuthInfo, AuthorizerConfig, AuthorizerStatus, AuthResult, AutoRegistrationStatus, Behavior, BillingGroupProperties, CustomMetricType, DayOfWeek, DimensionType, FleetMetricUnit, JobExecutionsRetryConfig, JobExecutionsRolloutConfig, LogLevel, MetricToRetain, MetricValue, MitigationActionParams, PresignedUrlConfig, ProvisioningHook, ResourceIdentifier, StreamFile, Tag, ThingGroupProperties, ThingTypeProperties, TimeoutConfig, TopicRuleDestinationStatus, TopicRulePayload, VerificationState, ViolationEventAdditionalInfo } from "./models_0";
4
- import { BehaviorCriteriaType, CACertificateStatus, CertificateMode, CertificateStatus, Configuration, DetectMitigationActionsTaskTarget, DomainConfigurationStatus, GroupNameAndArn, LogTargetType, RegistrationConfig, SecurityProfileTarget, Status, ThingGroupIndexingConfiguration, ThingIndexingConfiguration, ThingTypeMetadata, ViolationEventOccurrenceRange } from "./models_1";
3
+ import { AbortConfig, AggregationType, AlertTarget, AttributePayload, AuditCheckConfiguration, AuditFrequency, AuditMitigationActionsTaskTarget, AuditNotificationTarget, AuthInfo, AuthorizerConfig, AuthorizerStatus, AuthResult, AutoRegistrationStatus, Behavior, BillingGroupProperties, CustomMetricType, DayOfWeek, DimensionType, FleetMetricUnit, JobExecutionsRetryConfig, JobExecutionsRolloutConfig, LogLevel, MetricToRetain, MetricValue, MitigationActionParams, PresignedUrlConfig, ProvisioningHook, ResourceIdentifier, StreamFile, Tag, ThingGroupProperties, ThingTypeProperties, TimeoutConfig, TlsConfig, TopicRuleDestinationStatus, TopicRulePayload, VerificationState, ViolationEventAdditionalInfo } from "./models_0";
4
+ import { BehaviorCriteriaType, CACertificateStatus, CertificateMode, CertificateStatus, Configuration, DetectMitigationActionsTaskTarget, DomainConfigurationStatus, GroupNameAndArn, LogTargetType, RegistrationConfig, SecurityProfileTarget, SecurityProfileTargetMapping, Status, ThingGroupIndexingConfiguration, ThingIndexingConfiguration, ThingTypeMetadata, ViolationEventOccurrenceRange } from "./models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export interface ListSecurityProfilesForTargetResponse {
9
+ /**
10
+ * <p>A list of security profiles and their associated targets.</p>
11
+ */
12
+ securityProfileTargetMappings?: SecurityProfileTargetMapping[];
13
+ /**
14
+ * <p>A token that can be used to retrieve the next set of results, or <code>null</code> if there are no
15
+ * additional results.</p>
16
+ */
17
+ nextToken?: string;
18
+ }
5
19
  /**
6
20
  * @public
7
21
  */
@@ -2167,6 +2181,10 @@ export interface UpdateDomainConfigurationRequest {
2167
2181
  * <p>Removes the authorization configuration from a domain.</p>
2168
2182
  */
2169
2183
  removeAuthorizerConfig?: boolean;
2184
+ /**
2185
+ * <p>An object that specifies the TLS configuration for a domain.</p>
2186
+ */
2187
+ tlsConfig?: TlsConfig;
2170
2188
  }
2171
2189
  /**
2172
2190
  * @public
@@ -11,7 +11,7 @@ import {
11
11
  ServiceInputTypes,
12
12
  ServiceOutputTypes,
13
13
  } from "../IoTClient";
14
- import { DeletePolicyRequest } from "../models/models_0";
14
+ import { DeletePolicyRequest } from "../models/models_1";
15
15
  export interface DeletePolicyCommandInput extends DeletePolicyRequest {}
16
16
  export interface DeletePolicyCommandOutput extends __MetadataBearer {}
17
17
  export declare class DeletePolicyCommand extends $Command<
@@ -11,10 +11,8 @@ import {
11
11
  ServiceInputTypes,
12
12
  ServiceOutputTypes,
13
13
  } from "../IoTClient";
14
- import {
15
- ListSecurityProfilesForTargetRequest,
16
- ListSecurityProfilesForTargetResponse,
17
- } from "../models/models_1";
14
+ import { ListSecurityProfilesForTargetRequest } from "../models/models_1";
15
+ import { ListSecurityProfilesForTargetResponse } from "../models/models_2";
18
16
  export interface ListSecurityProfilesForTargetCommandInput
19
17
  extends ListSecurityProfilesForTargetRequest {}
20
18
  export interface ListSecurityProfilesForTargetCommandOutput
@@ -959,6 +959,9 @@ export declare const ServiceType: {
959
959
  readonly JOBS: "JOBS";
960
960
  };
961
961
  export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
962
+ export interface TlsConfig {
963
+ securityPolicy?: string;
964
+ }
962
965
  export interface CreateDomainConfigurationRequest {
963
966
  domainConfigurationName: string | undefined;
964
967
  domainName?: string;
@@ -967,6 +970,7 @@ export interface CreateDomainConfigurationRequest {
967
970
  authorizerConfig?: AuthorizerConfig;
968
971
  serviceType?: ServiceType | string;
969
972
  tags?: Tag[];
973
+ tlsConfig?: TlsConfig;
970
974
  }
971
975
  export interface CreateDomainConfigurationResponse {
972
976
  domainConfigurationName?: string;
@@ -1694,9 +1698,6 @@ export interface DeleteOTAUpdateRequest {
1694
1698
  forceDeleteAWSJob?: boolean;
1695
1699
  }
1696
1700
  export interface DeleteOTAUpdateResponse {}
1697
- export interface DeletePolicyRequest {
1698
- policyName: string | undefined;
1699
- }
1700
1701
  export declare const KeyPairFilterSensitiveLog: (obj: KeyPair) => any;
1701
1702
  export declare const CreateKeysAndCertificateResponseFilterSensitiveLog: (
1702
1703
  obj: CreateKeysAndCertificateResponse
@@ -58,9 +58,13 @@ import {
58
58
  ThingGroupProperties,
59
59
  ThingTypeProperties,
60
60
  TimeoutConfig,
61
+ TlsConfig,
61
62
  TopicRuleDestination,
62
63
  VerificationState,
63
64
  } from "./models_0";
65
+ export interface DeletePolicyRequest {
66
+ policyName: string | undefined;
67
+ }
64
68
  export interface DeletePolicyVersionRequest {
65
69
  policyName: string | undefined;
66
70
  policyVersionId: string | undefined;
@@ -398,6 +402,7 @@ export interface DescribeDomainConfigurationResponse {
398
402
  serviceType?: ServiceType | string;
399
403
  domainType?: DomainType | string;
400
404
  lastStatusChangeDate?: Date;
405
+ tlsConfig?: TlsConfig;
401
406
  }
402
407
  export interface DescribeEndpointRequest {
403
408
  endpointType?: string;
@@ -1615,7 +1620,3 @@ export interface SecurityProfileTargetMapping {
1615
1620
  securityProfileIdentifier?: SecurityProfileIdentifier;
1616
1621
  target?: SecurityProfileTarget;
1617
1622
  }
1618
- export interface ListSecurityProfilesForTargetResponse {
1619
- securityProfileTargetMappings?: SecurityProfileTargetMapping[];
1620
- nextToken?: string;
1621
- }
@@ -34,6 +34,7 @@ import {
34
34
  ThingGroupProperties,
35
35
  ThingTypeProperties,
36
36
  TimeoutConfig,
37
+ TlsConfig,
37
38
  TopicRuleDestinationStatus,
38
39
  TopicRulePayload,
39
40
  VerificationState,
@@ -51,12 +52,17 @@ import {
51
52
  LogTargetType,
52
53
  RegistrationConfig,
53
54
  SecurityProfileTarget,
55
+ SecurityProfileTargetMapping,
54
56
  Status,
55
57
  ThingGroupIndexingConfiguration,
56
58
  ThingIndexingConfiguration,
57
59
  ThingTypeMetadata,
58
60
  ViolationEventOccurrenceRange,
59
61
  } from "./models_1";
62
+ export interface ListSecurityProfilesForTargetResponse {
63
+ securityProfileTargetMappings?: SecurityProfileTargetMapping[];
64
+ nextToken?: string;
65
+ }
60
66
  export interface ListStreamsRequest {
61
67
  maxResults?: number;
62
68
  nextToken?: string;
@@ -648,6 +654,7 @@ export interface UpdateDomainConfigurationRequest {
648
654
  authorizerConfig?: AuthorizerConfig;
649
655
  domainConfigurationStatus?: DomainConfigurationStatus | string;
650
656
  removeAuthorizerConfig?: boolean;
657
+ tlsConfig?: TlsConfig;
651
658
  }
652
659
  export interface UpdateDomainConfigurationResponse {
653
660
  domainConfigurationName?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-iot",
3
3
  "description": "AWS SDK for JavaScript Iot Client for Node.js, Browser and React Native",
4
- "version": "3.319.0",
4
+ "version": "3.323.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.319.0",
24
+ "@aws-sdk/client-sts": "3.321.1",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.319.0",
26
+ "@aws-sdk/credential-provider-node": "3.321.1",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -38,7 +38,7 @@
38
38
  "@aws-sdk/middleware-stack": "3.310.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.319.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
- "@aws-sdk/node-http-handler": "3.310.0",
41
+ "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
43
  "@aws-sdk/smithy-client": "3.316.0",
44
44
  "@aws-sdk/types": "3.310.0",