File tree Expand file tree Collapse file tree 6 files changed +14
-0
lines changed Expand file tree Collapse file tree 6 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -763,6 +763,7 @@ export interface InternalServerException
763
763
$MetadataBearer {
764
764
name : "InternalServerException" ;
765
765
$fault : "server" ;
766
+ $retryable : { } ;
766
767
message : string | undefined ;
767
768
/**
768
769
* <p>The seconds to wait to retry.</p>
@@ -1213,6 +1214,7 @@ export interface ThrottlingException
1213
1214
$MetadataBearer {
1214
1215
name : "ThrottlingException" ;
1215
1216
$fault : "client" ;
1217
+ $retryable : { } ;
1216
1218
message : string | undefined ;
1217
1219
/**
1218
1220
* <p>The seconds to wait to retry.</p>
Original file line number Diff line number Diff line change @@ -2724,6 +2724,7 @@ const deserializeAws_restJson1_1InternalServerExceptionResponse = async (
2724
2724
const contents : InternalServerException = {
2725
2725
name : "InternalServerException" ,
2726
2726
$fault : "server" ,
2727
+ $retryable : { } ,
2727
2728
$metadata : deserializeMetadata ( parsedOutput ) ,
2728
2729
message : undefined ,
2729
2730
retryAfterSeconds : undefined
@@ -2798,6 +2799,7 @@ const deserializeAws_restJson1_1ThrottlingExceptionResponse = async (
2798
2799
const contents : ThrottlingException = {
2799
2800
name : "ThrottlingException" ,
2800
2801
$fault : "client" ,
2802
+ $retryable : { } ,
2801
2803
$metadata : deserializeMetadata ( parsedOutput ) ,
2802
2804
message : undefined ,
2803
2805
retryAfterSeconds : undefined
Original file line number Diff line number Diff line change @@ -1654,6 +1654,7 @@ export interface InternalServerErrorException
1654
1654
$MetadataBearer {
1655
1655
name : "InternalServerErrorException" ;
1656
1656
$fault : "server" ;
1657
+ $retryable : { } ;
1657
1658
message ?: string ;
1658
1659
}
1659
1660
@@ -2549,6 +2550,7 @@ export interface ServiceUnavailableException
2549
2550
$MetadataBearer {
2550
2551
name : "ServiceUnavailableException" ;
2551
2552
$fault : "server" ;
2553
+ $retryable : { } ;
2552
2554
message ?: string ;
2553
2555
}
2554
2556
Original file line number Diff line number Diff line change @@ -5046,6 +5046,7 @@ const deserializeAws_restJson1_1InternalServerErrorExceptionResponse = async (
5046
5046
const contents : InternalServerErrorException = {
5047
5047
name : "InternalServerErrorException" ,
5048
5048
$fault : "server" ,
5049
+ $retryable : { } ,
5049
5050
$metadata : deserializeMetadata ( parsedOutput ) ,
5050
5051
message : undefined
5051
5052
} ;
@@ -5114,6 +5115,7 @@ const deserializeAws_restJson1_1ServiceUnavailableExceptionResponse = async (
5114
5115
const contents : ServiceUnavailableException = {
5115
5116
name : "ServiceUnavailableException" ,
5116
5117
$fault : "server" ,
5118
+ $retryable : { } ,
5117
5119
$metadata : deserializeMetadata ( parsedOutput ) ,
5118
5120
message : undefined
5119
5121
} ;
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ export interface InternalServerException
69
69
$MetadataBearer {
70
70
name : "InternalServerException" ;
71
71
$fault : "server" ;
72
+ $retryable : { } ;
72
73
message : string | undefined ;
73
74
}
74
75
@@ -118,6 +119,7 @@ export interface ServiceQuotaExceededException
118
119
$MetadataBearer {
119
120
name : "ServiceQuotaExceededException" ;
120
121
$fault : "client" ;
122
+ $retryable : { } ;
121
123
message : string | undefined ;
122
124
}
123
125
@@ -139,6 +141,7 @@ export interface ThrottlingException
139
141
$MetadataBearer {
140
142
name : "ThrottlingException" ;
141
143
$fault : "client" ;
144
+ $retryable : { } ;
142
145
message : string | undefined ;
143
146
}
144
147
Original file line number Diff line number Diff line change @@ -1346,6 +1346,7 @@ const deserializeAws_restJson1_1InternalServerExceptionResponse = async (
1346
1346
const contents : InternalServerException = {
1347
1347
name : "InternalServerException" ,
1348
1348
$fault : "server" ,
1349
+ $retryable : { } ,
1349
1350
$metadata : deserializeMetadata ( parsedOutput ) ,
1350
1351
message : undefined
1351
1352
} ;
@@ -1380,6 +1381,7 @@ const deserializeAws_restJson1_1ServiceQuotaExceededExceptionResponse = async (
1380
1381
const contents : ServiceQuotaExceededException = {
1381
1382
name : "ServiceQuotaExceededException" ,
1382
1383
$fault : "client" ,
1384
+ $retryable : { } ,
1383
1385
$metadata : deserializeMetadata ( parsedOutput ) ,
1384
1386
message : undefined
1385
1387
} ;
@@ -1397,6 +1399,7 @@ const deserializeAws_restJson1_1ThrottlingExceptionResponse = async (
1397
1399
const contents : ThrottlingException = {
1398
1400
name : "ThrottlingException" ,
1399
1401
$fault : "client" ,
1402
+ $retryable : { } ,
1400
1403
$metadata : deserializeMetadata ( parsedOutput ) ,
1401
1404
message : undefined
1402
1405
} ;
You can’t perform that action at this time.
0 commit comments