@aws-sdk/client-apprunner 3.428.0 → 3.429.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.
|
@@ -63,7 +63,7 @@ export interface CertificateValidationRecord {
|
|
|
63
63
|
* <p>The current state of the certificate CNAME record validation. It should change to <code>SUCCESS</code> after App Runner completes validation with your
|
|
64
64
|
* DNS.</p>
|
|
65
65
|
*/
|
|
66
|
-
Status?: CertificateValidationRecordStatus
|
|
66
|
+
Status?: CertificateValidationRecordStatus;
|
|
67
67
|
}
|
|
68
68
|
/**
|
|
69
69
|
* @public
|
|
@@ -109,7 +109,7 @@ export interface CustomDomain {
|
|
|
109
109
|
* @public
|
|
110
110
|
* <p>The current state of the domain name association.</p>
|
|
111
111
|
*/
|
|
112
|
-
Status: CustomDomainAssociationStatus |
|
|
112
|
+
Status: CustomDomainAssociationStatus | undefined;
|
|
113
113
|
}
|
|
114
114
|
/**
|
|
115
115
|
* @public
|
|
@@ -325,7 +325,7 @@ export interface AutoScalingConfiguration {
|
|
|
325
325
|
* <p>The current state of the auto scaling configuration. If the status of a configuration revision is <code>INACTIVE</code>, it was deleted and can't be
|
|
326
326
|
* used. Inactive configuration revisions are permanently removed some time after they are deleted.</p>
|
|
327
327
|
*/
|
|
328
|
-
Status?: AutoScalingConfigurationStatus
|
|
328
|
+
Status?: AutoScalingConfigurationStatus;
|
|
329
329
|
/**
|
|
330
330
|
* @public
|
|
331
331
|
* <p>The maximum number of concurrent requests that an instance processes. If the number of concurrent requests exceeds this limit, App Runner scales the service
|
|
@@ -420,7 +420,7 @@ export interface CreateConnectionRequest {
|
|
|
420
420
|
* @public
|
|
421
421
|
* <p>The source repository provider.</p>
|
|
422
422
|
*/
|
|
423
|
-
ProviderType: ProviderType |
|
|
423
|
+
ProviderType: ProviderType | undefined;
|
|
424
424
|
/**
|
|
425
425
|
* @public
|
|
426
426
|
* <p>A list of metadata items that you can associate with your connection resource. A tag is a key-value pair.</p>
|
|
@@ -460,12 +460,12 @@ export interface Connection {
|
|
|
460
460
|
* @public
|
|
461
461
|
* <p>The source repository provider.</p>
|
|
462
462
|
*/
|
|
463
|
-
ProviderType?: ProviderType
|
|
463
|
+
ProviderType?: ProviderType;
|
|
464
464
|
/**
|
|
465
465
|
* @public
|
|
466
466
|
* <p>The current state of the App Runner connection. When the state is <code>AVAILABLE</code>, you can use the connection to create an App Runner service.</p>
|
|
467
467
|
*/
|
|
468
|
-
Status?: ConnectionStatus
|
|
468
|
+
Status?: ConnectionStatus;
|
|
469
469
|
/**
|
|
470
470
|
* @public
|
|
471
471
|
* <p>The App Runner connection creation time, expressed as a Unix time stamp.</p>
|
|
@@ -502,7 +502,7 @@ export interface TraceConfiguration {
|
|
|
502
502
|
* @public
|
|
503
503
|
* <p>The implementation provider chosen for tracing App Runner services.</p>
|
|
504
504
|
*/
|
|
505
|
-
Vendor: TracingVendor |
|
|
505
|
+
Vendor: TracingVendor | undefined;
|
|
506
506
|
}
|
|
507
507
|
/**
|
|
508
508
|
* @public
|
|
@@ -584,7 +584,7 @@ export interface ObservabilityConfiguration {
|
|
|
584
584
|
* <p>The current state of the observability configuration. If the status of a configuration revision is <code>INACTIVE</code>, it was deleted and can't be
|
|
585
585
|
* used. Inactive configuration revisions are permanently removed some time after they are deleted.</p>
|
|
586
586
|
*/
|
|
587
|
-
Status?: ObservabilityConfigurationStatus
|
|
587
|
+
Status?: ObservabilityConfigurationStatus;
|
|
588
588
|
/**
|
|
589
589
|
* @public
|
|
590
590
|
* <p>The time when the observability configuration was created. It's in Unix time stamp format.</p>
|
|
@@ -641,7 +641,7 @@ export interface HealthCheckConfiguration {
|
|
|
641
641
|
* <p>Default: <code>TCP</code>
|
|
642
642
|
* </p>
|
|
643
643
|
*/
|
|
644
|
-
Protocol?: HealthCheckProtocol
|
|
644
|
+
Protocol?: HealthCheckProtocol;
|
|
645
645
|
/**
|
|
646
646
|
* @public
|
|
647
647
|
* <p>The URL that health check requests are sent to.</p>
|
|
@@ -729,7 +729,7 @@ export interface EgressConfiguration {
|
|
|
729
729
|
* <p>Set to <code>DEFAULT</code> for access to resources hosted on public networks.</p>
|
|
730
730
|
* <p>Set to <code>VPC</code> to associate your service to a custom VPC specified by <code>VpcConnectorArn</code>.</p>
|
|
731
731
|
*/
|
|
732
|
-
EgressType?: EgressType
|
|
732
|
+
EgressType?: EgressType;
|
|
733
733
|
/**
|
|
734
734
|
* @public
|
|
735
735
|
* <p>The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service. Only valid when <code>EgressType =
|
|
@@ -841,7 +841,7 @@ export interface CodeConfigurationValues {
|
|
|
841
841
|
* It represents a
|
|
842
842
|
* programming language runtime.</p>
|
|
843
843
|
*/
|
|
844
|
-
Runtime: Runtime |
|
|
844
|
+
Runtime: Runtime | undefined;
|
|
845
845
|
/**
|
|
846
846
|
* @public
|
|
847
847
|
* <p>The command App Runner runs to build your
|
|
@@ -918,7 +918,7 @@ export interface CodeConfiguration {
|
|
|
918
918
|
* </li>
|
|
919
919
|
* </ul>
|
|
920
920
|
*/
|
|
921
|
-
ConfigurationSource: ConfigurationSource |
|
|
921
|
+
ConfigurationSource: ConfigurationSource | undefined;
|
|
922
922
|
/**
|
|
923
923
|
* @public
|
|
924
924
|
* <p>The basic configuration for building and running the App Runner service. Use it to quickly launch an App Runner service without providing a
|
|
@@ -947,7 +947,7 @@ export interface SourceCodeVersion {
|
|
|
947
947
|
* <p>The type of version identifier.</p>
|
|
948
948
|
* <p>For a git-based repository, branches represent versions.</p>
|
|
949
949
|
*/
|
|
950
|
-
Type: SourceCodeVersionType |
|
|
950
|
+
Type: SourceCodeVersionType | undefined;
|
|
951
951
|
/**
|
|
952
952
|
* @public
|
|
953
953
|
* <p>A source code version.</p>
|
|
@@ -1060,7 +1060,7 @@ export interface ImageRepository {
|
|
|
1060
1060
|
* @public
|
|
1061
1061
|
* <p>The type of the image repository. This reflects the repository provider and whether the repository is private or public.</p>
|
|
1062
1062
|
*/
|
|
1063
|
-
ImageRepositoryType: ImageRepositoryType |
|
|
1063
|
+
ImageRepositoryType: ImageRepositoryType | undefined;
|
|
1064
1064
|
}
|
|
1065
1065
|
/**
|
|
1066
1066
|
* @public
|
|
@@ -1182,7 +1182,7 @@ export interface AutoScalingConfigurationSummary {
|
|
|
1182
1182
|
* <p>The current state of the auto scaling configuration. If the status of a configuration revision is <code>INACTIVE</code>, it was deleted and can't be
|
|
1183
1183
|
* used. Inactive configuration revisions are permanently removed some time after they are deleted.</p>
|
|
1184
1184
|
*/
|
|
1185
|
-
Status?: AutoScalingConfigurationStatus
|
|
1185
|
+
Status?: AutoScalingConfigurationStatus;
|
|
1186
1186
|
/**
|
|
1187
1187
|
* @public
|
|
1188
1188
|
* <p>The time when the auto scaling configuration was created. It's in Unix time stamp format.</p>
|
|
@@ -1278,7 +1278,7 @@ export interface Service {
|
|
|
1278
1278
|
* </li>
|
|
1279
1279
|
* </ul>
|
|
1280
1280
|
*/
|
|
1281
|
-
Status: ServiceStatus |
|
|
1281
|
+
Status: ServiceStatus | undefined;
|
|
1282
1282
|
/**
|
|
1283
1283
|
* @public
|
|
1284
1284
|
* <p>The source deployed to the App Runner service. It can be a code or an image repository.</p>
|
|
@@ -1420,7 +1420,7 @@ export interface VpcConnector {
|
|
|
1420
1420
|
* <p>The current state of the VPC connector. If the status of a connector revision is <code>INACTIVE</code>, it was deleted and can't be
|
|
1421
1421
|
* used. Inactive connector revisions are permanently removed some time after they are deleted.</p>
|
|
1422
1422
|
*/
|
|
1423
|
-
Status?: VpcConnectorStatus
|
|
1423
|
+
Status?: VpcConnectorStatus;
|
|
1424
1424
|
/**
|
|
1425
1425
|
* @public
|
|
1426
1426
|
* <p>The time when the VPC connector was created. It's in Unix time stamp format.</p>
|
|
@@ -1534,7 +1534,7 @@ export interface VpcIngressConnection {
|
|
|
1534
1534
|
* The VPC Ingress Connection displays one of the following statuses: <code>AVAILABLE</code>, <code>PENDING_CREATION</code>, <code>PENDING_UPDATE</code>, <code>PENDING_DELETION</code>,<code>FAILED_CREATION</code>, <code>FAILED_UPDATE</code>, <code>FAILED_DELETION</code>, and <code>DELETED</code>..
|
|
1535
1535
|
* </p>
|
|
1536
1536
|
*/
|
|
1537
|
-
Status?: VpcIngressConnectionStatus
|
|
1537
|
+
Status?: VpcIngressConnectionStatus;
|
|
1538
1538
|
/**
|
|
1539
1539
|
* @public
|
|
1540
1540
|
* <p>The Account Id you use to create the VPC Ingress Connection resource.</p>
|
|
@@ -2047,12 +2047,12 @@ export interface ConnectionSummary {
|
|
|
2047
2047
|
* @public
|
|
2048
2048
|
* <p>The source repository provider.</p>
|
|
2049
2049
|
*/
|
|
2050
|
-
ProviderType?: ProviderType
|
|
2050
|
+
ProviderType?: ProviderType;
|
|
2051
2051
|
/**
|
|
2052
2052
|
* @public
|
|
2053
2053
|
* <p>The current state of the App Runner connection. When the state is <code>AVAILABLE</code>, you can use the connection to create an App Runner service.</p>
|
|
2054
2054
|
*/
|
|
2055
|
-
Status?: ConnectionStatus
|
|
2055
|
+
Status?: ConnectionStatus;
|
|
2056
2056
|
/**
|
|
2057
2057
|
* @public
|
|
2058
2058
|
* <p>The App Runner connection creation time, expressed as a Unix time stamp.</p>
|
|
@@ -2218,12 +2218,12 @@ export interface OperationSummary {
|
|
|
2218
2218
|
* @public
|
|
2219
2219
|
* <p>The type of operation. It indicates a specific action that occured.</p>
|
|
2220
2220
|
*/
|
|
2221
|
-
Type?: OperationType
|
|
2221
|
+
Type?: OperationType;
|
|
2222
2222
|
/**
|
|
2223
2223
|
* @public
|
|
2224
2224
|
* <p>The current state of the operation.</p>
|
|
2225
2225
|
*/
|
|
2226
|
-
Status?: OperationStatus
|
|
2226
|
+
Status?: OperationStatus;
|
|
2227
2227
|
/**
|
|
2228
2228
|
* @public
|
|
2229
2229
|
* <p>The Amazon Resource Name (ARN) of the resource that the operation acted on (for example, an App Runner service).</p>
|
|
@@ -2332,7 +2332,7 @@ export interface ServiceSummary {
|
|
|
2332
2332
|
* </li>
|
|
2333
2333
|
* </ul>
|
|
2334
2334
|
*/
|
|
2335
|
-
Status?: ServiceStatus
|
|
2335
|
+
Status?: ServiceStatus;
|
|
2336
2336
|
}
|
|
2337
2337
|
/**
|
|
2338
2338
|
* @public
|
|
@@ -16,7 +16,7 @@ export interface CertificateValidationRecord {
|
|
|
16
16
|
Name?: string;
|
|
17
17
|
Type?: string;
|
|
18
18
|
Value?: string;
|
|
19
|
-
Status?: CertificateValidationRecordStatus
|
|
19
|
+
Status?: CertificateValidationRecordStatus;
|
|
20
20
|
}
|
|
21
21
|
export declare const CustomDomainAssociationStatus: {
|
|
22
22
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -33,7 +33,7 @@ export interface CustomDomain {
|
|
|
33
33
|
DomainName: string | undefined;
|
|
34
34
|
EnableWWWSubdomain: boolean | undefined;
|
|
35
35
|
CertificateValidationRecords?: CertificateValidationRecord[];
|
|
36
|
-
Status: CustomDomainAssociationStatus |
|
|
36
|
+
Status: CustomDomainAssociationStatus | undefined;
|
|
37
37
|
}
|
|
38
38
|
export interface VpcDNSTarget {
|
|
39
39
|
VpcIngressConnectionArn?: string;
|
|
@@ -92,7 +92,7 @@ export interface AutoScalingConfiguration {
|
|
|
92
92
|
AutoScalingConfigurationName?: string;
|
|
93
93
|
AutoScalingConfigurationRevision?: number;
|
|
94
94
|
Latest?: boolean;
|
|
95
|
-
Status?: AutoScalingConfigurationStatus
|
|
95
|
+
Status?: AutoScalingConfigurationStatus;
|
|
96
96
|
MaxConcurrency?: number;
|
|
97
97
|
MinSize?: number;
|
|
98
98
|
MaxSize?: number;
|
|
@@ -119,7 +119,7 @@ export declare const ProviderType: {
|
|
|
119
119
|
export type ProviderType = (typeof ProviderType)[keyof typeof ProviderType];
|
|
120
120
|
export interface CreateConnectionRequest {
|
|
121
121
|
ConnectionName: string | undefined;
|
|
122
|
-
ProviderType: ProviderType |
|
|
122
|
+
ProviderType: ProviderType | undefined;
|
|
123
123
|
Tags?: Tag[];
|
|
124
124
|
}
|
|
125
125
|
export declare const ConnectionStatus: {
|
|
@@ -133,8 +133,8 @@ export type ConnectionStatus =
|
|
|
133
133
|
export interface Connection {
|
|
134
134
|
ConnectionName?: string;
|
|
135
135
|
ConnectionArn?: string;
|
|
136
|
-
ProviderType?: ProviderType
|
|
137
|
-
Status?: ConnectionStatus
|
|
136
|
+
ProviderType?: ProviderType;
|
|
137
|
+
Status?: ConnectionStatus;
|
|
138
138
|
CreatedAt?: Date;
|
|
139
139
|
}
|
|
140
140
|
export interface CreateConnectionResponse {
|
|
@@ -145,7 +145,7 @@ export declare const TracingVendor: {
|
|
|
145
145
|
};
|
|
146
146
|
export type TracingVendor = (typeof TracingVendor)[keyof typeof TracingVendor];
|
|
147
147
|
export interface TraceConfiguration {
|
|
148
|
-
Vendor: TracingVendor |
|
|
148
|
+
Vendor: TracingVendor | undefined;
|
|
149
149
|
}
|
|
150
150
|
export interface CreateObservabilityConfigurationRequest {
|
|
151
151
|
ObservabilityConfigurationName: string | undefined;
|
|
@@ -164,7 +164,7 @@ export interface ObservabilityConfiguration {
|
|
|
164
164
|
TraceConfiguration?: TraceConfiguration;
|
|
165
165
|
ObservabilityConfigurationRevision?: number;
|
|
166
166
|
Latest?: boolean;
|
|
167
|
-
Status?: ObservabilityConfigurationStatus
|
|
167
|
+
Status?: ObservabilityConfigurationStatus;
|
|
168
168
|
CreatedAt?: Date;
|
|
169
169
|
DeletedAt?: Date;
|
|
170
170
|
}
|
|
@@ -181,7 +181,7 @@ export declare const HealthCheckProtocol: {
|
|
|
181
181
|
export type HealthCheckProtocol =
|
|
182
182
|
(typeof HealthCheckProtocol)[keyof typeof HealthCheckProtocol];
|
|
183
183
|
export interface HealthCheckConfiguration {
|
|
184
|
-
Protocol?: HealthCheckProtocol
|
|
184
|
+
Protocol?: HealthCheckProtocol;
|
|
185
185
|
Path?: string;
|
|
186
186
|
Interval?: number;
|
|
187
187
|
Timeout?: number;
|
|
@@ -199,7 +199,7 @@ export declare const EgressType: {
|
|
|
199
199
|
};
|
|
200
200
|
export type EgressType = (typeof EgressType)[keyof typeof EgressType];
|
|
201
201
|
export interface EgressConfiguration {
|
|
202
|
-
EgressType?: EgressType
|
|
202
|
+
EgressType?: EgressType;
|
|
203
203
|
VpcConnectorArn?: string;
|
|
204
204
|
}
|
|
205
205
|
export interface IngressConfiguration {
|
|
@@ -231,7 +231,7 @@ export declare const Runtime: {
|
|
|
231
231
|
};
|
|
232
232
|
export type Runtime = (typeof Runtime)[keyof typeof Runtime];
|
|
233
233
|
export interface CodeConfigurationValues {
|
|
234
|
-
Runtime: Runtime |
|
|
234
|
+
Runtime: Runtime | undefined;
|
|
235
235
|
BuildCommand?: string;
|
|
236
236
|
StartCommand?: string;
|
|
237
237
|
Port?: string;
|
|
@@ -245,7 +245,7 @@ export declare const ConfigurationSource: {
|
|
|
245
245
|
export type ConfigurationSource =
|
|
246
246
|
(typeof ConfigurationSource)[keyof typeof ConfigurationSource];
|
|
247
247
|
export interface CodeConfiguration {
|
|
248
|
-
ConfigurationSource: ConfigurationSource |
|
|
248
|
+
ConfigurationSource: ConfigurationSource | undefined;
|
|
249
249
|
CodeConfigurationValues?: CodeConfigurationValues;
|
|
250
250
|
}
|
|
251
251
|
export declare const SourceCodeVersionType: {
|
|
@@ -254,7 +254,7 @@ export declare const SourceCodeVersionType: {
|
|
|
254
254
|
export type SourceCodeVersionType =
|
|
255
255
|
(typeof SourceCodeVersionType)[keyof typeof SourceCodeVersionType];
|
|
256
256
|
export interface SourceCodeVersion {
|
|
257
|
-
Type: SourceCodeVersionType |
|
|
257
|
+
Type: SourceCodeVersionType | undefined;
|
|
258
258
|
Value: string | undefined;
|
|
259
259
|
}
|
|
260
260
|
export interface CodeRepository {
|
|
@@ -278,7 +278,7 @@ export type ImageRepositoryType =
|
|
|
278
278
|
export interface ImageRepository {
|
|
279
279
|
ImageIdentifier: string | undefined;
|
|
280
280
|
ImageConfiguration?: ImageConfiguration;
|
|
281
|
-
ImageRepositoryType: ImageRepositoryType |
|
|
281
|
+
ImageRepositoryType: ImageRepositoryType | undefined;
|
|
282
282
|
}
|
|
283
283
|
export interface SourceConfiguration {
|
|
284
284
|
CodeRepository?: CodeRepository;
|
|
@@ -301,7 +301,7 @@ export interface AutoScalingConfigurationSummary {
|
|
|
301
301
|
AutoScalingConfigurationArn?: string;
|
|
302
302
|
AutoScalingConfigurationName?: string;
|
|
303
303
|
AutoScalingConfigurationRevision?: number;
|
|
304
|
-
Status?: AutoScalingConfigurationStatus
|
|
304
|
+
Status?: AutoScalingConfigurationStatus;
|
|
305
305
|
CreatedAt?: Date;
|
|
306
306
|
HasAssociatedService?: boolean;
|
|
307
307
|
IsDefault?: boolean;
|
|
@@ -323,7 +323,7 @@ export interface Service {
|
|
|
323
323
|
CreatedAt: Date | undefined;
|
|
324
324
|
UpdatedAt: Date | undefined;
|
|
325
325
|
DeletedAt?: Date;
|
|
326
|
-
Status: ServiceStatus |
|
|
326
|
+
Status: ServiceStatus | undefined;
|
|
327
327
|
SourceConfiguration: SourceConfiguration | undefined;
|
|
328
328
|
InstanceConfiguration: InstanceConfiguration | undefined;
|
|
329
329
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
@@ -354,7 +354,7 @@ export interface VpcConnector {
|
|
|
354
354
|
VpcConnectorRevision?: number;
|
|
355
355
|
Subnets?: string[];
|
|
356
356
|
SecurityGroups?: string[];
|
|
357
|
-
Status?: VpcConnectorStatus
|
|
357
|
+
Status?: VpcConnectorStatus;
|
|
358
358
|
CreatedAt?: Date;
|
|
359
359
|
DeletedAt?: Date;
|
|
360
360
|
}
|
|
@@ -387,7 +387,7 @@ export interface VpcIngressConnection {
|
|
|
387
387
|
VpcIngressConnectionArn?: string;
|
|
388
388
|
VpcIngressConnectionName?: string;
|
|
389
389
|
ServiceArn?: string;
|
|
390
|
-
Status?: VpcIngressConnectionStatus
|
|
390
|
+
Status?: VpcIngressConnectionStatus;
|
|
391
391
|
AccountId?: string;
|
|
392
392
|
DomainName?: string;
|
|
393
393
|
IngressVpcConfiguration?: IngressVpcConfiguration;
|
|
@@ -515,8 +515,8 @@ export interface ListConnectionsRequest {
|
|
|
515
515
|
export interface ConnectionSummary {
|
|
516
516
|
ConnectionName?: string;
|
|
517
517
|
ConnectionArn?: string;
|
|
518
|
-
ProviderType?: ProviderType
|
|
519
|
-
Status?: ConnectionStatus
|
|
518
|
+
ProviderType?: ProviderType;
|
|
519
|
+
Status?: ConnectionStatus;
|
|
520
520
|
CreatedAt?: Date;
|
|
521
521
|
}
|
|
522
522
|
export interface ListConnectionsResponse {
|
|
@@ -567,8 +567,8 @@ export declare const OperationType: {
|
|
|
567
567
|
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
568
568
|
export interface OperationSummary {
|
|
569
569
|
Id?: string;
|
|
570
|
-
Type?: OperationType
|
|
571
|
-
Status?: OperationStatus
|
|
570
|
+
Type?: OperationType;
|
|
571
|
+
Status?: OperationStatus;
|
|
572
572
|
TargetArn?: string;
|
|
573
573
|
StartedAt?: Date;
|
|
574
574
|
EndedAt?: Date;
|
|
@@ -589,7 +589,7 @@ export interface ServiceSummary {
|
|
|
589
589
|
ServiceUrl?: string;
|
|
590
590
|
CreatedAt?: Date;
|
|
591
591
|
UpdatedAt?: Date;
|
|
592
|
-
Status?: ServiceStatus
|
|
592
|
+
Status?: ServiceStatus;
|
|
593
593
|
}
|
|
594
594
|
export interface ListServicesResponse {
|
|
595
595
|
ServiceSummaryList: ServiceSummary[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-apprunner",
|
|
3
3
|
"description": "AWS SDK for JavaScript Apprunner Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|