@aws-sdk/client-codepipeline 3.52.0 → 3.53.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.
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class CodePipelineServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { CodePipelineServiceException as __BaseException } from "./CodePipelineServiceException";
2
3
 
3
4
  export interface AcknowledgeJobInput {
4
5
 
@@ -29,25 +30,25 @@ export declare namespace AcknowledgeJobOutput {
29
30
  const filterSensitiveLog: (obj: AcknowledgeJobOutput) => any;
30
31
  }
31
32
 
32
- export interface InvalidNonceException extends __SmithyException, $MetadataBearer {
33
- name: "InvalidNonceException";
34
- $fault: "client";
33
+ export declare class InvalidNonceException extends __BaseException {
34
+ readonly name: "InvalidNonceException";
35
+ readonly $fault: "client";
35
36
 
36
- message?: string;
37
+ constructor(opts: __ExceptionOptionType<InvalidNonceException, __BaseException>);
37
38
  }
38
39
 
39
- export interface JobNotFoundException extends __SmithyException, $MetadataBearer {
40
- name: "JobNotFoundException";
41
- $fault: "client";
40
+ export declare class JobNotFoundException extends __BaseException {
41
+ readonly name: "JobNotFoundException";
42
+ readonly $fault: "client";
42
43
 
43
- message?: string;
44
+ constructor(opts: __ExceptionOptionType<JobNotFoundException, __BaseException>);
44
45
  }
45
46
 
46
- export interface ValidationException extends __SmithyException, $MetadataBearer {
47
- name: "ValidationException";
48
- $fault: "client";
47
+ export declare class ValidationException extends __BaseException {
48
+ readonly name: "ValidationException";
49
+ readonly $fault: "client";
49
50
 
50
- message?: string;
51
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
51
52
  }
52
53
 
53
54
  export interface AcknowledgeThirdPartyJobInput {
@@ -72,11 +73,11 @@ export declare namespace AcknowledgeThirdPartyJobOutput {
72
73
  const filterSensitiveLog: (obj: AcknowledgeThirdPartyJobOutput) => any;
73
74
  }
74
75
 
75
- export interface InvalidClientTokenException extends __SmithyException, $MetadataBearer {
76
- name: "InvalidClientTokenException";
77
- $fault: "client";
76
+ export declare class InvalidClientTokenException extends __BaseException {
77
+ readonly name: "InvalidClientTokenException";
78
+ readonly $fault: "client";
78
79
 
79
- message?: string;
80
+ constructor(opts: __ExceptionOptionType<InvalidClientTokenException, __BaseException>);
80
81
  }
81
82
  export declare enum ActionCategory {
82
83
  Approval = "Approval",
@@ -355,11 +356,11 @@ export declare namespace ActionExecutionFilter {
355
356
  const filterSensitiveLog: (obj: ActionExecutionFilter) => any;
356
357
  }
357
358
 
358
- export interface ActionNotFoundException extends __SmithyException, $MetadataBearer {
359
- name: "ActionNotFoundException";
360
- $fault: "client";
359
+ export declare class ActionNotFoundException extends __BaseException {
360
+ readonly name: "ActionNotFoundException";
361
+ readonly $fault: "client";
361
362
 
362
- message?: string;
363
+ constructor(opts: __ExceptionOptionType<ActionNotFoundException, __BaseException>);
363
364
  }
364
365
 
365
366
  export interface ActionRevision {
@@ -577,18 +578,18 @@ export declare namespace ActionTypeDeclaration {
577
578
  const filterSensitiveLog: (obj: ActionTypeDeclaration) => any;
578
579
  }
579
580
 
580
- export interface ActionTypeNotFoundException extends __SmithyException, $MetadataBearer {
581
- name: "ActionTypeNotFoundException";
582
- $fault: "client";
581
+ export declare class ActionTypeNotFoundException extends __BaseException {
582
+ readonly name: "ActionTypeNotFoundException";
583
+ readonly $fault: "client";
583
584
 
584
- message?: string;
585
+ constructor(opts: __ExceptionOptionType<ActionTypeNotFoundException, __BaseException>);
585
586
  }
586
587
 
587
- export interface ApprovalAlreadyCompletedException extends __SmithyException, $MetadataBearer {
588
- name: "ApprovalAlreadyCompletedException";
589
- $fault: "client";
588
+ export declare class ApprovalAlreadyCompletedException extends __BaseException {
589
+ readonly name: "ApprovalAlreadyCompletedException";
590
+ readonly $fault: "client";
590
591
 
591
- message?: string;
592
+ constructor(opts: __ExceptionOptionType<ApprovalAlreadyCompletedException, __BaseException>);
592
593
  }
593
594
  export declare enum ApprovalStatus {
594
595
  Approved = "Approved",
@@ -720,10 +721,11 @@ export declare namespace BlockerDeclaration {
720
721
  const filterSensitiveLog: (obj: BlockerDeclaration) => any;
721
722
  }
722
723
 
723
- export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
724
- name: "ConcurrentModificationException";
725
- $fault: "client";
726
- message?: string;
724
+ export declare class ConcurrentModificationException extends __BaseException {
725
+ readonly name: "ConcurrentModificationException";
726
+ readonly $fault: "client";
727
+
728
+ constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
727
729
  }
728
730
 
729
731
  export interface Tag {
@@ -771,23 +773,25 @@ export declare namespace CreateCustomActionTypeOutput {
771
773
  const filterSensitiveLog: (obj: CreateCustomActionTypeOutput) => any;
772
774
  }
773
775
 
774
- export interface InvalidTagsException extends __SmithyException, $MetadataBearer {
775
- name: "InvalidTagsException";
776
- $fault: "client";
777
- message?: string;
776
+ export declare class InvalidTagsException extends __BaseException {
777
+ readonly name: "InvalidTagsException";
778
+ readonly $fault: "client";
779
+
780
+ constructor(opts: __ExceptionOptionType<InvalidTagsException, __BaseException>);
778
781
  }
779
782
 
780
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
781
- name: "LimitExceededException";
782
- $fault: "client";
783
+ export declare class LimitExceededException extends __BaseException {
784
+ readonly name: "LimitExceededException";
785
+ readonly $fault: "client";
783
786
 
784
- message?: string;
787
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
785
788
  }
786
789
 
787
- export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
788
- name: "TooManyTagsException";
789
- $fault: "client";
790
- message?: string;
790
+ export declare class TooManyTagsException extends __BaseException {
791
+ readonly name: "TooManyTagsException";
792
+ readonly $fault: "client";
793
+
794
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
791
795
  }
792
796
 
793
797
  export interface StageDeclaration {
@@ -846,39 +850,39 @@ export declare namespace CreatePipelineOutput {
846
850
  const filterSensitiveLog: (obj: CreatePipelineOutput) => any;
847
851
  }
848
852
 
849
- export interface InvalidActionDeclarationException extends __SmithyException, $MetadataBearer {
850
- name: "InvalidActionDeclarationException";
851
- $fault: "client";
853
+ export declare class InvalidActionDeclarationException extends __BaseException {
854
+ readonly name: "InvalidActionDeclarationException";
855
+ readonly $fault: "client";
852
856
 
853
- message?: string;
857
+ constructor(opts: __ExceptionOptionType<InvalidActionDeclarationException, __BaseException>);
854
858
  }
855
859
 
856
- export interface InvalidBlockerDeclarationException extends __SmithyException, $MetadataBearer {
857
- name: "InvalidBlockerDeclarationException";
858
- $fault: "client";
860
+ export declare class InvalidBlockerDeclarationException extends __BaseException {
861
+ readonly name: "InvalidBlockerDeclarationException";
862
+ readonly $fault: "client";
859
863
 
860
- message?: string;
864
+ constructor(opts: __ExceptionOptionType<InvalidBlockerDeclarationException, __BaseException>);
861
865
  }
862
866
 
863
- export interface InvalidStageDeclarationException extends __SmithyException, $MetadataBearer {
864
- name: "InvalidStageDeclarationException";
865
- $fault: "client";
867
+ export declare class InvalidStageDeclarationException extends __BaseException {
868
+ readonly name: "InvalidStageDeclarationException";
869
+ readonly $fault: "client";
866
870
 
867
- message?: string;
871
+ constructor(opts: __ExceptionOptionType<InvalidStageDeclarationException, __BaseException>);
868
872
  }
869
873
 
870
- export interface InvalidStructureException extends __SmithyException, $MetadataBearer {
871
- name: "InvalidStructureException";
872
- $fault: "client";
874
+ export declare class InvalidStructureException extends __BaseException {
875
+ readonly name: "InvalidStructureException";
876
+ readonly $fault: "client";
873
877
 
874
- message?: string;
878
+ constructor(opts: __ExceptionOptionType<InvalidStructureException, __BaseException>);
875
879
  }
876
880
 
877
- export interface PipelineNameInUseException extends __SmithyException, $MetadataBearer {
878
- name: "PipelineNameInUseException";
879
- $fault: "client";
881
+ export declare class PipelineNameInUseException extends __BaseException {
882
+ readonly name: "PipelineNameInUseException";
883
+ readonly $fault: "client";
880
884
 
881
- message?: string;
885
+ constructor(opts: __ExceptionOptionType<PipelineNameInUseException, __BaseException>);
882
886
  }
883
887
 
884
888
  export interface DeleteCustomActionTypeInput {
@@ -931,9 +935,11 @@ export declare namespace DeregisterWebhookWithThirdPartyOutput {
931
935
  const filterSensitiveLog: (obj: DeregisterWebhookWithThirdPartyOutput) => any;
932
936
  }
933
937
 
934
- export interface WebhookNotFoundException extends __SmithyException, $MetadataBearer {
935
- name: "WebhookNotFoundException";
936
- $fault: "client";
938
+ export declare class WebhookNotFoundException extends __BaseException {
939
+ readonly name: "WebhookNotFoundException";
940
+ readonly $fault: "client";
941
+
942
+ constructor(opts: __ExceptionOptionType<WebhookNotFoundException, __BaseException>);
937
943
  }
938
944
  export declare enum StageTransitionType {
939
945
  Inbound = "Inbound",
@@ -955,18 +961,18 @@ export declare namespace DisableStageTransitionInput {
955
961
  const filterSensitiveLog: (obj: DisableStageTransitionInput) => any;
956
962
  }
957
963
 
958
- export interface PipelineNotFoundException extends __SmithyException, $MetadataBearer {
959
- name: "PipelineNotFoundException";
960
- $fault: "client";
964
+ export declare class PipelineNotFoundException extends __BaseException {
965
+ readonly name: "PipelineNotFoundException";
966
+ readonly $fault: "client";
961
967
 
962
- message?: string;
968
+ constructor(opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>);
963
969
  }
964
970
 
965
- export interface StageNotFoundException extends __SmithyException, $MetadataBearer {
966
- name: "StageNotFoundException";
967
- $fault: "client";
971
+ export declare class StageNotFoundException extends __BaseException {
972
+ readonly name: "StageNotFoundException";
973
+ readonly $fault: "client";
968
974
 
969
- message?: string;
975
+ constructor(opts: __ExceptionOptionType<StageNotFoundException, __BaseException>);
970
976
  }
971
977
 
972
978
  export interface EnableStageTransitionInput {
@@ -1119,11 +1125,11 @@ export declare namespace GetPipelineOutput {
1119
1125
  const filterSensitiveLog: (obj: GetPipelineOutput) => any;
1120
1126
  }
1121
1127
 
1122
- export interface PipelineVersionNotFoundException extends __SmithyException, $MetadataBearer {
1123
- name: "PipelineVersionNotFoundException";
1124
- $fault: "client";
1128
+ export declare class PipelineVersionNotFoundException extends __BaseException {
1129
+ readonly name: "PipelineVersionNotFoundException";
1130
+ readonly $fault: "client";
1125
1131
 
1126
- message?: string;
1132
+ constructor(opts: __ExceptionOptionType<PipelineVersionNotFoundException, __BaseException>);
1127
1133
  }
1128
1134
 
1129
1135
  export interface GetPipelineExecutionInput {
@@ -1174,11 +1180,11 @@ export declare namespace GetPipelineExecutionOutput {
1174
1180
  const filterSensitiveLog: (obj: GetPipelineExecutionOutput) => any;
1175
1181
  }
1176
1182
 
1177
- export interface PipelineExecutionNotFoundException extends __SmithyException, $MetadataBearer {
1178
- name: "PipelineExecutionNotFoundException";
1179
- $fault: "client";
1183
+ export declare class PipelineExecutionNotFoundException extends __BaseException {
1184
+ readonly name: "PipelineExecutionNotFoundException";
1185
+ readonly $fault: "client";
1180
1186
 
1181
- message?: string;
1187
+ constructor(opts: __ExceptionOptionType<PipelineExecutionNotFoundException, __BaseException>);
1182
1188
  }
1183
1189
 
1184
1190
  export interface GetPipelineStateInput {
@@ -1314,18 +1320,18 @@ export declare namespace GetThirdPartyJobDetailsOutput {
1314
1320
  const filterSensitiveLog: (obj: GetThirdPartyJobDetailsOutput) => any;
1315
1321
  }
1316
1322
 
1317
- export interface InvalidJobException extends __SmithyException, $MetadataBearer {
1318
- name: "InvalidJobException";
1319
- $fault: "client";
1323
+ export declare class InvalidJobException extends __BaseException {
1324
+ readonly name: "InvalidJobException";
1325
+ readonly $fault: "client";
1320
1326
 
1321
- message?: string;
1327
+ constructor(opts: __ExceptionOptionType<InvalidJobException, __BaseException>);
1322
1328
  }
1323
1329
 
1324
- export interface InvalidNextTokenException extends __SmithyException, $MetadataBearer {
1325
- name: "InvalidNextTokenException";
1326
- $fault: "client";
1330
+ export declare class InvalidNextTokenException extends __BaseException {
1331
+ readonly name: "InvalidNextTokenException";
1332
+ readonly $fault: "client";
1327
1333
 
1328
- message?: string;
1334
+ constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
1329
1335
  }
1330
1336
  export interface ListActionExecutionsInput {
1331
1337
 
@@ -1501,10 +1507,11 @@ export declare namespace ListPipelinesOutput {
1501
1507
  const filterSensitiveLog: (obj: ListPipelinesOutput) => any;
1502
1508
  }
1503
1509
 
1504
- export interface InvalidArnException extends __SmithyException, $MetadataBearer {
1505
- name: "InvalidArnException";
1506
- $fault: "client";
1507
- message?: string;
1510
+ export declare class InvalidArnException extends __BaseException {
1511
+ readonly name: "InvalidArnException";
1512
+ readonly $fault: "client";
1513
+
1514
+ constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
1508
1515
  }
1509
1516
  export interface ListTagsForResourceInput {
1510
1517
 
@@ -1529,11 +1536,11 @@ export declare namespace ListTagsForResourceOutput {
1529
1536
  const filterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
1530
1537
  }
1531
1538
 
1532
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
1533
- name: "ResourceNotFoundException";
1534
- $fault: "client";
1539
+ export declare class ResourceNotFoundException extends __BaseException {
1540
+ readonly name: "ResourceNotFoundException";
1541
+ readonly $fault: "client";
1535
1542
 
1536
- message?: string;
1543
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
1537
1544
  }
1538
1545
  export interface ListWebhooksInput {
1539
1546
 
@@ -1719,11 +1726,11 @@ export declare namespace PutActionRevisionOutput {
1719
1726
  const filterSensitiveLog: (obj: PutActionRevisionOutput) => any;
1720
1727
  }
1721
1728
 
1722
- export interface InvalidApprovalTokenException extends __SmithyException, $MetadataBearer {
1723
- name: "InvalidApprovalTokenException";
1724
- $fault: "client";
1729
+ export declare class InvalidApprovalTokenException extends __BaseException {
1730
+ readonly name: "InvalidApprovalTokenException";
1731
+ readonly $fault: "client";
1725
1732
 
1726
- message?: string;
1733
+ constructor(opts: __ExceptionOptionType<InvalidApprovalTokenException, __BaseException>);
1727
1734
  }
1728
1735
 
1729
1736
  export interface PutApprovalResultInput {
@@ -1752,11 +1759,11 @@ export declare namespace PutApprovalResultOutput {
1752
1759
  const filterSensitiveLog: (obj: PutApprovalResultOutput) => any;
1753
1760
  }
1754
1761
 
1755
- export interface InvalidJobStateException extends __SmithyException, $MetadataBearer {
1756
- name: "InvalidJobStateException";
1757
- $fault: "client";
1762
+ export declare class InvalidJobStateException extends __BaseException {
1763
+ readonly name: "InvalidJobStateException";
1764
+ readonly $fault: "client";
1758
1765
 
1759
- message?: string;
1766
+ constructor(opts: __ExceptionOptionType<InvalidJobStateException, __BaseException>);
1760
1767
  }
1761
1768
  export declare enum FailureType {
1762
1769
  ConfigurationError = "ConfigurationError",
@@ -1791,10 +1798,11 @@ export declare namespace PutJobFailureResultInput {
1791
1798
  const filterSensitiveLog: (obj: PutJobFailureResultInput) => any;
1792
1799
  }
1793
1800
 
1794
- export interface OutputVariablesSizeExceededException extends __SmithyException, $MetadataBearer {
1795
- name: "OutputVariablesSizeExceededException";
1796
- $fault: "client";
1797
- message?: string;
1801
+ export declare class OutputVariablesSizeExceededException extends __BaseException {
1802
+ readonly name: "OutputVariablesSizeExceededException";
1803
+ readonly $fault: "client";
1804
+
1805
+ constructor(opts: __ExceptionOptionType<OutputVariablesSizeExceededException, __BaseException>);
1798
1806
  }
1799
1807
 
1800
1808
  export interface CurrentRevision {
@@ -1874,18 +1882,18 @@ export declare namespace PutThirdPartyJobSuccessResultInput {
1874
1882
  const filterSensitiveLog: (obj: PutThirdPartyJobSuccessResultInput) => any;
1875
1883
  }
1876
1884
 
1877
- export interface InvalidWebhookAuthenticationParametersException extends __SmithyException, $MetadataBearer {
1878
- name: "InvalidWebhookAuthenticationParametersException";
1879
- $fault: "client";
1885
+ export declare class InvalidWebhookAuthenticationParametersException extends __BaseException {
1886
+ readonly name: "InvalidWebhookAuthenticationParametersException";
1887
+ readonly $fault: "client";
1880
1888
 
1881
- message?: string;
1889
+ constructor(opts: __ExceptionOptionType<InvalidWebhookAuthenticationParametersException, __BaseException>);
1882
1890
  }
1883
1891
 
1884
- export interface InvalidWebhookFilterPatternException extends __SmithyException, $MetadataBearer {
1885
- name: "InvalidWebhookFilterPatternException";
1886
- $fault: "client";
1892
+ export declare class InvalidWebhookFilterPatternException extends __BaseException {
1893
+ readonly name: "InvalidWebhookFilterPatternException";
1894
+ readonly $fault: "client";
1887
1895
 
1888
- message?: string;
1896
+ constructor(opts: __ExceptionOptionType<InvalidWebhookFilterPatternException, __BaseException>);
1889
1897
  }
1890
1898
  export interface PutWebhookInput {
1891
1899
 
@@ -1920,17 +1928,18 @@ export declare namespace RegisterWebhookWithThirdPartyOutput {
1920
1928
  const filterSensitiveLog: (obj: RegisterWebhookWithThirdPartyOutput) => any;
1921
1929
  }
1922
1930
 
1923
- export interface ConflictException extends __SmithyException, $MetadataBearer {
1924
- name: "ConflictException";
1925
- $fault: "client";
1926
- message?: string;
1931
+ export declare class ConflictException extends __BaseException {
1932
+ readonly name: "ConflictException";
1933
+ readonly $fault: "client";
1934
+
1935
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
1927
1936
  }
1928
1937
 
1929
- export interface NotLatestPipelineExecutionException extends __SmithyException, $MetadataBearer {
1930
- name: "NotLatestPipelineExecutionException";
1931
- $fault: "client";
1938
+ export declare class NotLatestPipelineExecutionException extends __BaseException {
1939
+ readonly name: "NotLatestPipelineExecutionException";
1940
+ readonly $fault: "client";
1932
1941
 
1933
- message?: string;
1942
+ constructor(opts: __ExceptionOptionType<NotLatestPipelineExecutionException, __BaseException>);
1934
1943
  }
1935
1944
  export declare enum StageRetryMode {
1936
1945
  FAILED_ACTIONS = "FAILED_ACTIONS"
@@ -1960,11 +1969,11 @@ export declare namespace RetryStageExecutionOutput {
1960
1969
  const filterSensitiveLog: (obj: RetryStageExecutionOutput) => any;
1961
1970
  }
1962
1971
 
1963
- export interface StageNotRetryableException extends __SmithyException, $MetadataBearer {
1964
- name: "StageNotRetryableException";
1965
- $fault: "client";
1972
+ export declare class StageNotRetryableException extends __BaseException {
1973
+ readonly name: "StageNotRetryableException";
1974
+ readonly $fault: "client";
1966
1975
 
1967
- message?: string;
1976
+ constructor(opts: __ExceptionOptionType<StageNotRetryableException, __BaseException>);
1968
1977
  }
1969
1978
 
1970
1979
  export interface StartPipelineExecutionInput {
@@ -1987,16 +1996,18 @@ export declare namespace StartPipelineExecutionOutput {
1987
1996
  const filterSensitiveLog: (obj: StartPipelineExecutionOutput) => any;
1988
1997
  }
1989
1998
 
1990
- export interface DuplicatedStopRequestException extends __SmithyException, $MetadataBearer {
1991
- name: "DuplicatedStopRequestException";
1992
- $fault: "client";
1993
- message?: string;
1999
+ export declare class DuplicatedStopRequestException extends __BaseException {
2000
+ readonly name: "DuplicatedStopRequestException";
2001
+ readonly $fault: "client";
2002
+
2003
+ constructor(opts: __ExceptionOptionType<DuplicatedStopRequestException, __BaseException>);
1994
2004
  }
1995
2005
 
1996
- export interface PipelineExecutionNotStoppableException extends __SmithyException, $MetadataBearer {
1997
- name: "PipelineExecutionNotStoppableException";
1998
- $fault: "client";
1999
- message?: string;
2006
+ export declare class PipelineExecutionNotStoppableException extends __BaseException {
2007
+ readonly name: "PipelineExecutionNotStoppableException";
2008
+ readonly $fault: "client";
2009
+
2010
+ constructor(opts: __ExceptionOptionType<PipelineExecutionNotStoppableException, __BaseException>);
2000
2011
  }
2001
2012
  export interface StopPipelineExecutionInput {
2002
2013
 
@@ -2053,10 +2064,11 @@ export declare namespace UntagResourceOutput {
2053
2064
  const filterSensitiveLog: (obj: UntagResourceOutput) => any;
2054
2065
  }
2055
2066
 
2056
- export interface RequestFailedException extends __SmithyException, $MetadataBearer {
2057
- name: "RequestFailedException";
2058
- $fault: "client";
2059
- message?: string;
2067
+ export declare class RequestFailedException extends __BaseException {
2068
+ readonly name: "RequestFailedException";
2069
+ readonly $fault: "client";
2070
+
2071
+ constructor(opts: __ExceptionOptionType<RequestFailedException, __BaseException>);
2060
2072
  }
2061
2073
  export interface UpdateActionTypeInput {
2062
2074
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codepipeline",
3
3
  "description": "AWS SDK for JavaScript Codepipeline Client for Node.js, Browser and React Native",
4
- "version": "3.52.0",
4
+ "version": "3.53.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",
@@ -18,34 +18,34 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.52.0",
22
- "@aws-sdk/config-resolver": "3.52.0",
23
- "@aws-sdk/credential-provider-node": "3.52.0",
24
- "@aws-sdk/fetch-http-handler": "3.52.0",
25
- "@aws-sdk/hash-node": "3.52.0",
26
- "@aws-sdk/invalid-dependency": "3.52.0",
27
- "@aws-sdk/middleware-content-length": "3.52.0",
28
- "@aws-sdk/middleware-host-header": "3.52.0",
29
- "@aws-sdk/middleware-logger": "3.52.0",
30
- "@aws-sdk/middleware-retry": "3.52.0",
31
- "@aws-sdk/middleware-serde": "3.52.0",
32
- "@aws-sdk/middleware-signing": "3.52.0",
33
- "@aws-sdk/middleware-stack": "3.52.0",
34
- "@aws-sdk/middleware-user-agent": "3.52.0",
35
- "@aws-sdk/node-config-provider": "3.52.0",
36
- "@aws-sdk/node-http-handler": "3.52.0",
37
- "@aws-sdk/protocol-http": "3.52.0",
38
- "@aws-sdk/smithy-client": "3.52.0",
39
- "@aws-sdk/types": "3.52.0",
40
- "@aws-sdk/url-parser": "3.52.0",
21
+ "@aws-sdk/client-sts": "3.53.0",
22
+ "@aws-sdk/config-resolver": "3.53.0",
23
+ "@aws-sdk/credential-provider-node": "3.53.0",
24
+ "@aws-sdk/fetch-http-handler": "3.53.0",
25
+ "@aws-sdk/hash-node": "3.53.0",
26
+ "@aws-sdk/invalid-dependency": "3.53.0",
27
+ "@aws-sdk/middleware-content-length": "3.53.0",
28
+ "@aws-sdk/middleware-host-header": "3.53.0",
29
+ "@aws-sdk/middleware-logger": "3.53.0",
30
+ "@aws-sdk/middleware-retry": "3.53.0",
31
+ "@aws-sdk/middleware-serde": "3.53.0",
32
+ "@aws-sdk/middleware-signing": "3.53.0",
33
+ "@aws-sdk/middleware-stack": "3.53.0",
34
+ "@aws-sdk/middleware-user-agent": "3.53.0",
35
+ "@aws-sdk/node-config-provider": "3.53.0",
36
+ "@aws-sdk/node-http-handler": "3.53.0",
37
+ "@aws-sdk/protocol-http": "3.53.0",
38
+ "@aws-sdk/smithy-client": "3.53.0",
39
+ "@aws-sdk/types": "3.53.0",
40
+ "@aws-sdk/url-parser": "3.53.0",
41
41
  "@aws-sdk/util-base64-browser": "3.52.0",
42
42
  "@aws-sdk/util-base64-node": "3.52.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.52.0",
44
44
  "@aws-sdk/util-body-length-node": "3.52.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.52.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.52.0",
47
- "@aws-sdk/util-user-agent-browser": "3.52.0",
48
- "@aws-sdk/util-user-agent-node": "3.52.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.53.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.53.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.53.0",
48
+ "@aws-sdk/util-user-agent-node": "3.53.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.52.0",
50
50
  "@aws-sdk/util-utf8-node": "3.52.0",
51
51
  "tslib": "^2.3.0",