@aws-sdk/client-elastic-beanstalk 3.180.0 → 3.183.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.
Files changed (67) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/dist-cjs/protocols/Aws_query.js +64 -56
  3. package/dist-es/ElasticBeanstalk.js +190 -197
  4. package/dist-es/ElasticBeanstalkClient.js +22 -28
  5. package/dist-es/commands/AbortEnvironmentUpdateCommand.js +22 -29
  6. package/dist-es/commands/ApplyEnvironmentManagedActionCommand.js +21 -28
  7. package/dist-es/commands/AssociateEnvironmentOperationsRoleCommand.js +22 -29
  8. package/dist-es/commands/CheckDNSAvailabilityCommand.js +21 -28
  9. package/dist-es/commands/ComposeEnvironmentsCommand.js +21 -28
  10. package/dist-es/commands/CreateApplicationCommand.js +21 -28
  11. package/dist-es/commands/CreateApplicationVersionCommand.js +21 -28
  12. package/dist-es/commands/CreateConfigurationTemplateCommand.js +21 -28
  13. package/dist-es/commands/CreateEnvironmentCommand.js +21 -28
  14. package/dist-es/commands/CreatePlatformVersionCommand.js +21 -28
  15. package/dist-es/commands/CreateStorageLocationCommand.js +22 -29
  16. package/dist-es/commands/DeleteApplicationCommand.js +22 -29
  17. package/dist-es/commands/DeleteApplicationVersionCommand.js +22 -29
  18. package/dist-es/commands/DeleteConfigurationTemplateCommand.js +22 -29
  19. package/dist-es/commands/DeleteEnvironmentConfigurationCommand.js +22 -29
  20. package/dist-es/commands/DeletePlatformVersionCommand.js +21 -28
  21. package/dist-es/commands/DescribeAccountAttributesCommand.js +22 -29
  22. package/dist-es/commands/DescribeApplicationVersionsCommand.js +21 -28
  23. package/dist-es/commands/DescribeApplicationsCommand.js +21 -28
  24. package/dist-es/commands/DescribeConfigurationOptionsCommand.js +21 -28
  25. package/dist-es/commands/DescribeConfigurationSettingsCommand.js +21 -28
  26. package/dist-es/commands/DescribeEnvironmentHealthCommand.js +21 -28
  27. package/dist-es/commands/DescribeEnvironmentManagedActionHistoryCommand.js +21 -28
  28. package/dist-es/commands/DescribeEnvironmentManagedActionsCommand.js +21 -28
  29. package/dist-es/commands/DescribeEnvironmentResourcesCommand.js +21 -28
  30. package/dist-es/commands/DescribeEnvironmentsCommand.js +21 -28
  31. package/dist-es/commands/DescribeEventsCommand.js +21 -28
  32. package/dist-es/commands/DescribeInstancesHealthCommand.js +21 -28
  33. package/dist-es/commands/DescribePlatformVersionCommand.js +21 -28
  34. package/dist-es/commands/DisassociateEnvironmentOperationsRoleCommand.js +22 -29
  35. package/dist-es/commands/ListAvailableSolutionStacksCommand.js +22 -29
  36. package/dist-es/commands/ListPlatformBranchesCommand.js +21 -28
  37. package/dist-es/commands/ListPlatformVersionsCommand.js +21 -28
  38. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  39. package/dist-es/commands/RebuildEnvironmentCommand.js +22 -29
  40. package/dist-es/commands/RequestEnvironmentInfoCommand.js +22 -29
  41. package/dist-es/commands/RestartAppServerCommand.js +22 -29
  42. package/dist-es/commands/RetrieveEnvironmentInfoCommand.js +21 -28
  43. package/dist-es/commands/SwapEnvironmentCNAMEsCommand.js +22 -29
  44. package/dist-es/commands/TerminateEnvironmentCommand.js +21 -28
  45. package/dist-es/commands/UpdateApplicationCommand.js +21 -28
  46. package/dist-es/commands/UpdateApplicationResourceLifecycleCommand.js +21 -28
  47. package/dist-es/commands/UpdateApplicationVersionCommand.js +21 -28
  48. package/dist-es/commands/UpdateConfigurationTemplateCommand.js +21 -28
  49. package/dist-es/commands/UpdateEnvironmentCommand.js +21 -28
  50. package/dist-es/commands/UpdateTagsForResourceCommand.js +22 -29
  51. package/dist-es/commands/ValidateConfigurationSettingsCommand.js +21 -28
  52. package/dist-es/endpoints.js +8 -8
  53. package/dist-es/models/ElasticBeanstalkServiceException.js +5 -10
  54. package/dist-es/models/models_0.js +587 -336
  55. package/dist-es/pagination/DescribeEnvironmentManagedActionHistoryPaginator.js +25 -68
  56. package/dist-es/pagination/DescribeEventsPaginator.js +25 -68
  57. package/dist-es/pagination/ListPlatformBranchesPaginator.js +25 -68
  58. package/dist-es/pagination/ListPlatformVersionsPaginator.js +25 -68
  59. package/dist-es/protocols/Aws_query.js +2951 -3966
  60. package/dist-es/runtimeConfig.browser.js +26 -12
  61. package/dist-es/runtimeConfig.js +30 -12
  62. package/dist-es/runtimeConfig.native.js +8 -5
  63. package/dist-es/runtimeConfig.shared.js +8 -11
  64. package/dist-es/waiters/waitForEnvironmentExists.js +52 -93
  65. package/dist-es/waiters/waitForEnvironmentTerminated.js +52 -93
  66. package/dist-es/waiters/waitForEnvironmentUpdated.js +52 -93
  67. package/package.json +34 -34
@@ -1,191 +1,190 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { ElasticBeanstalkServiceException as __BaseException } from "./ElasticBeanstalkServiceException";
3
- var InsufficientPrivilegesException = (function (_super) {
4
- __extends(InsufficientPrivilegesException, _super);
5
- function InsufficientPrivilegesException(opts) {
6
- var _this = _super.call(this, __assign({ name: "InsufficientPrivilegesException", $fault: "client" }, opts)) || this;
7
- _this.name = "InsufficientPrivilegesException";
8
- _this.$fault = "client";
9
- Object.setPrototypeOf(_this, InsufficientPrivilegesException.prototype);
10
- return _this;
2
+ export class InsufficientPrivilegesException extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "InsufficientPrivilegesException",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "InsufficientPrivilegesException";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, InsufficientPrivilegesException.prototype);
11
12
  }
12
- return InsufficientPrivilegesException;
13
- }(__BaseException));
14
- export { InsufficientPrivilegesException };
15
- var ElasticBeanstalkServiceException = (function (_super) {
16
- __extends(ElasticBeanstalkServiceException, _super);
17
- function ElasticBeanstalkServiceException(opts) {
18
- var _this = _super.call(this, __assign({ name: "ElasticBeanstalkServiceException", $fault: "client" }, opts)) || this;
19
- _this.name = "ElasticBeanstalkServiceException";
20
- _this.$fault = "client";
21
- Object.setPrototypeOf(_this, ElasticBeanstalkServiceException.prototype);
22
- return _this;
13
+ }
14
+ export class ElasticBeanstalkServiceException extends __BaseException {
15
+ constructor(opts) {
16
+ super({
17
+ name: "ElasticBeanstalkServiceException",
18
+ $fault: "client",
19
+ ...opts,
20
+ });
21
+ this.name = "ElasticBeanstalkServiceException";
22
+ this.$fault = "client";
23
+ Object.setPrototypeOf(this, ElasticBeanstalkServiceException.prototype);
23
24
  }
24
- return ElasticBeanstalkServiceException;
25
- }(__BaseException));
26
- export { ElasticBeanstalkServiceException };
27
- var ManagedActionInvalidStateException = (function (_super) {
28
- __extends(ManagedActionInvalidStateException, _super);
29
- function ManagedActionInvalidStateException(opts) {
30
- var _this = _super.call(this, __assign({ name: "ManagedActionInvalidStateException", $fault: "client" }, opts)) || this;
31
- _this.name = "ManagedActionInvalidStateException";
32
- _this.$fault = "client";
33
- Object.setPrototypeOf(_this, ManagedActionInvalidStateException.prototype);
34
- return _this;
25
+ }
26
+ export class ManagedActionInvalidStateException extends __BaseException {
27
+ constructor(opts) {
28
+ super({
29
+ name: "ManagedActionInvalidStateException",
30
+ $fault: "client",
31
+ ...opts,
32
+ });
33
+ this.name = "ManagedActionInvalidStateException";
34
+ this.$fault = "client";
35
+ Object.setPrototypeOf(this, ManagedActionInvalidStateException.prototype);
35
36
  }
36
- return ManagedActionInvalidStateException;
37
- }(__BaseException));
38
- export { ManagedActionInvalidStateException };
39
- var TooManyEnvironmentsException = (function (_super) {
40
- __extends(TooManyEnvironmentsException, _super);
41
- function TooManyEnvironmentsException(opts) {
42
- var _this = _super.call(this, __assign({ name: "TooManyEnvironmentsException", $fault: "client" }, opts)) || this;
43
- _this.name = "TooManyEnvironmentsException";
44
- _this.$fault = "client";
45
- Object.setPrototypeOf(_this, TooManyEnvironmentsException.prototype);
46
- return _this;
37
+ }
38
+ export class TooManyEnvironmentsException extends __BaseException {
39
+ constructor(opts) {
40
+ super({
41
+ name: "TooManyEnvironmentsException",
42
+ $fault: "client",
43
+ ...opts,
44
+ });
45
+ this.name = "TooManyEnvironmentsException";
46
+ this.$fault = "client";
47
+ Object.setPrototypeOf(this, TooManyEnvironmentsException.prototype);
47
48
  }
48
- return TooManyEnvironmentsException;
49
- }(__BaseException));
50
- export { TooManyEnvironmentsException };
51
- var TooManyApplicationsException = (function (_super) {
52
- __extends(TooManyApplicationsException, _super);
53
- function TooManyApplicationsException(opts) {
54
- var _this = _super.call(this, __assign({ name: "TooManyApplicationsException", $fault: "client" }, opts)) || this;
55
- _this.name = "TooManyApplicationsException";
56
- _this.$fault = "client";
57
- Object.setPrototypeOf(_this, TooManyApplicationsException.prototype);
58
- return _this;
49
+ }
50
+ export class TooManyApplicationsException extends __BaseException {
51
+ constructor(opts) {
52
+ super({
53
+ name: "TooManyApplicationsException",
54
+ $fault: "client",
55
+ ...opts,
56
+ });
57
+ this.name = "TooManyApplicationsException";
58
+ this.$fault = "client";
59
+ Object.setPrototypeOf(this, TooManyApplicationsException.prototype);
59
60
  }
60
- return TooManyApplicationsException;
61
- }(__BaseException));
62
- export { TooManyApplicationsException };
63
- var CodeBuildNotInServiceRegionException = (function (_super) {
64
- __extends(CodeBuildNotInServiceRegionException, _super);
65
- function CodeBuildNotInServiceRegionException(opts) {
66
- var _this = _super.call(this, __assign({ name: "CodeBuildNotInServiceRegionException", $fault: "client" }, opts)) || this;
67
- _this.name = "CodeBuildNotInServiceRegionException";
68
- _this.$fault = "client";
69
- Object.setPrototypeOf(_this, CodeBuildNotInServiceRegionException.prototype);
70
- return _this;
61
+ }
62
+ export class CodeBuildNotInServiceRegionException extends __BaseException {
63
+ constructor(opts) {
64
+ super({
65
+ name: "CodeBuildNotInServiceRegionException",
66
+ $fault: "client",
67
+ ...opts,
68
+ });
69
+ this.name = "CodeBuildNotInServiceRegionException";
70
+ this.$fault = "client";
71
+ Object.setPrototypeOf(this, CodeBuildNotInServiceRegionException.prototype);
71
72
  }
72
- return CodeBuildNotInServiceRegionException;
73
- }(__BaseException));
74
- export { CodeBuildNotInServiceRegionException };
73
+ }
75
74
  export var ComputeType;
76
75
  (function (ComputeType) {
77
76
  ComputeType["BUILD_GENERAL1_LARGE"] = "BUILD_GENERAL1_LARGE";
78
77
  ComputeType["BUILD_GENERAL1_MEDIUM"] = "BUILD_GENERAL1_MEDIUM";
79
78
  ComputeType["BUILD_GENERAL1_SMALL"] = "BUILD_GENERAL1_SMALL";
80
79
  })(ComputeType || (ComputeType = {}));
81
- var S3LocationNotInServiceRegionException = (function (_super) {
82
- __extends(S3LocationNotInServiceRegionException, _super);
83
- function S3LocationNotInServiceRegionException(opts) {
84
- var _this = _super.call(this, __assign({ name: "S3LocationNotInServiceRegionException", $fault: "client" }, opts)) || this;
85
- _this.name = "S3LocationNotInServiceRegionException";
86
- _this.$fault = "client";
87
- Object.setPrototypeOf(_this, S3LocationNotInServiceRegionException.prototype);
88
- return _this;
80
+ export class S3LocationNotInServiceRegionException extends __BaseException {
81
+ constructor(opts) {
82
+ super({
83
+ name: "S3LocationNotInServiceRegionException",
84
+ $fault: "client",
85
+ ...opts,
86
+ });
87
+ this.name = "S3LocationNotInServiceRegionException";
88
+ this.$fault = "client";
89
+ Object.setPrototypeOf(this, S3LocationNotInServiceRegionException.prototype);
89
90
  }
90
- return S3LocationNotInServiceRegionException;
91
- }(__BaseException));
92
- export { S3LocationNotInServiceRegionException };
93
- var TooManyApplicationVersionsException = (function (_super) {
94
- __extends(TooManyApplicationVersionsException, _super);
95
- function TooManyApplicationVersionsException(opts) {
96
- var _this = _super.call(this, __assign({ name: "TooManyApplicationVersionsException", $fault: "client" }, opts)) || this;
97
- _this.name = "TooManyApplicationVersionsException";
98
- _this.$fault = "client";
99
- Object.setPrototypeOf(_this, TooManyApplicationVersionsException.prototype);
100
- return _this;
91
+ }
92
+ export class TooManyApplicationVersionsException extends __BaseException {
93
+ constructor(opts) {
94
+ super({
95
+ name: "TooManyApplicationVersionsException",
96
+ $fault: "client",
97
+ ...opts,
98
+ });
99
+ this.name = "TooManyApplicationVersionsException";
100
+ this.$fault = "client";
101
+ Object.setPrototypeOf(this, TooManyApplicationVersionsException.prototype);
101
102
  }
102
- return TooManyApplicationVersionsException;
103
- }(__BaseException));
104
- export { TooManyApplicationVersionsException };
105
- var TooManyBucketsException = (function (_super) {
106
- __extends(TooManyBucketsException, _super);
107
- function TooManyBucketsException(opts) {
108
- var _this = _super.call(this, __assign({ name: "TooManyBucketsException", $fault: "client" }, opts)) || this;
109
- _this.name = "TooManyBucketsException";
110
- _this.$fault = "client";
111
- Object.setPrototypeOf(_this, TooManyBucketsException.prototype);
112
- return _this;
103
+ }
104
+ export class TooManyBucketsException extends __BaseException {
105
+ constructor(opts) {
106
+ super({
107
+ name: "TooManyBucketsException",
108
+ $fault: "client",
109
+ ...opts,
110
+ });
111
+ this.name = "TooManyBucketsException";
112
+ this.$fault = "client";
113
+ Object.setPrototypeOf(this, TooManyBucketsException.prototype);
113
114
  }
114
- return TooManyBucketsException;
115
- }(__BaseException));
116
- export { TooManyBucketsException };
117
- var TooManyConfigurationTemplatesException = (function (_super) {
118
- __extends(TooManyConfigurationTemplatesException, _super);
119
- function TooManyConfigurationTemplatesException(opts) {
120
- var _this = _super.call(this, __assign({ name: "TooManyConfigurationTemplatesException", $fault: "client" }, opts)) || this;
121
- _this.name = "TooManyConfigurationTemplatesException";
122
- _this.$fault = "client";
123
- Object.setPrototypeOf(_this, TooManyConfigurationTemplatesException.prototype);
124
- return _this;
115
+ }
116
+ export class TooManyConfigurationTemplatesException extends __BaseException {
117
+ constructor(opts) {
118
+ super({
119
+ name: "TooManyConfigurationTemplatesException",
120
+ $fault: "client",
121
+ ...opts,
122
+ });
123
+ this.name = "TooManyConfigurationTemplatesException";
124
+ this.$fault = "client";
125
+ Object.setPrototypeOf(this, TooManyConfigurationTemplatesException.prototype);
125
126
  }
126
- return TooManyConfigurationTemplatesException;
127
- }(__BaseException));
128
- export { TooManyConfigurationTemplatesException };
129
- var TooManyPlatformsException = (function (_super) {
130
- __extends(TooManyPlatformsException, _super);
131
- function TooManyPlatformsException(opts) {
132
- var _this = _super.call(this, __assign({ name: "TooManyPlatformsException", $fault: "client" }, opts)) || this;
133
- _this.name = "TooManyPlatformsException";
134
- _this.$fault = "client";
135
- Object.setPrototypeOf(_this, TooManyPlatformsException.prototype);
136
- return _this;
127
+ }
128
+ export class TooManyPlatformsException extends __BaseException {
129
+ constructor(opts) {
130
+ super({
131
+ name: "TooManyPlatformsException",
132
+ $fault: "client",
133
+ ...opts,
134
+ });
135
+ this.name = "TooManyPlatformsException";
136
+ this.$fault = "client";
137
+ Object.setPrototypeOf(this, TooManyPlatformsException.prototype);
137
138
  }
138
- return TooManyPlatformsException;
139
- }(__BaseException));
140
- export { TooManyPlatformsException };
141
- var S3SubscriptionRequiredException = (function (_super) {
142
- __extends(S3SubscriptionRequiredException, _super);
143
- function S3SubscriptionRequiredException(opts) {
144
- var _this = _super.call(this, __assign({ name: "S3SubscriptionRequiredException", $fault: "client" }, opts)) || this;
145
- _this.name = "S3SubscriptionRequiredException";
146
- _this.$fault = "client";
147
- Object.setPrototypeOf(_this, S3SubscriptionRequiredException.prototype);
148
- return _this;
139
+ }
140
+ export class S3SubscriptionRequiredException extends __BaseException {
141
+ constructor(opts) {
142
+ super({
143
+ name: "S3SubscriptionRequiredException",
144
+ $fault: "client",
145
+ ...opts,
146
+ });
147
+ this.name = "S3SubscriptionRequiredException";
148
+ this.$fault = "client";
149
+ Object.setPrototypeOf(this, S3SubscriptionRequiredException.prototype);
149
150
  }
150
- return S3SubscriptionRequiredException;
151
- }(__BaseException));
152
- export { S3SubscriptionRequiredException };
153
- var OperationInProgressException = (function (_super) {
154
- __extends(OperationInProgressException, _super);
155
- function OperationInProgressException(opts) {
156
- var _this = _super.call(this, __assign({ name: "OperationInProgressException", $fault: "client" }, opts)) || this;
157
- _this.name = "OperationInProgressException";
158
- _this.$fault = "client";
159
- Object.setPrototypeOf(_this, OperationInProgressException.prototype);
160
- return _this;
151
+ }
152
+ export class OperationInProgressException extends __BaseException {
153
+ constructor(opts) {
154
+ super({
155
+ name: "OperationInProgressException",
156
+ $fault: "client",
157
+ ...opts,
158
+ });
159
+ this.name = "OperationInProgressException";
160
+ this.$fault = "client";
161
+ Object.setPrototypeOf(this, OperationInProgressException.prototype);
161
162
  }
162
- return OperationInProgressException;
163
- }(__BaseException));
164
- export { OperationInProgressException };
165
- var SourceBundleDeletionException = (function (_super) {
166
- __extends(SourceBundleDeletionException, _super);
167
- function SourceBundleDeletionException(opts) {
168
- var _this = _super.call(this, __assign({ name: "SourceBundleDeletionException", $fault: "client" }, opts)) || this;
169
- _this.name = "SourceBundleDeletionException";
170
- _this.$fault = "client";
171
- Object.setPrototypeOf(_this, SourceBundleDeletionException.prototype);
172
- return _this;
163
+ }
164
+ export class SourceBundleDeletionException extends __BaseException {
165
+ constructor(opts) {
166
+ super({
167
+ name: "SourceBundleDeletionException",
168
+ $fault: "client",
169
+ ...opts,
170
+ });
171
+ this.name = "SourceBundleDeletionException";
172
+ this.$fault = "client";
173
+ Object.setPrototypeOf(this, SourceBundleDeletionException.prototype);
173
174
  }
174
- return SourceBundleDeletionException;
175
- }(__BaseException));
176
- export { SourceBundleDeletionException };
177
- var PlatformVersionStillReferencedException = (function (_super) {
178
- __extends(PlatformVersionStillReferencedException, _super);
179
- function PlatformVersionStillReferencedException(opts) {
180
- var _this = _super.call(this, __assign({ name: "PlatformVersionStillReferencedException", $fault: "client" }, opts)) || this;
181
- _this.name = "PlatformVersionStillReferencedException";
182
- _this.$fault = "client";
183
- Object.setPrototypeOf(_this, PlatformVersionStillReferencedException.prototype);
184
- return _this;
175
+ }
176
+ export class PlatformVersionStillReferencedException extends __BaseException {
177
+ constructor(opts) {
178
+ super({
179
+ name: "PlatformVersionStillReferencedException",
180
+ $fault: "client",
181
+ ...opts,
182
+ });
183
+ this.name = "PlatformVersionStillReferencedException";
184
+ this.$fault = "client";
185
+ Object.setPrototypeOf(this, PlatformVersionStillReferencedException.prototype);
185
186
  }
186
- return PlatformVersionStillReferencedException;
187
- }(__BaseException));
188
- export { PlatformVersionStillReferencedException };
187
+ }
189
188
  export var EnvironmentHealthAttribute;
190
189
  (function (EnvironmentHealthAttribute) {
191
190
  EnvironmentHealthAttribute["All"] = "All";
@@ -197,18 +196,18 @@ export var EnvironmentHealthAttribute;
197
196
  EnvironmentHealthAttribute["RefreshedAt"] = "RefreshedAt";
198
197
  EnvironmentHealthAttribute["Status"] = "Status";
199
198
  })(EnvironmentHealthAttribute || (EnvironmentHealthAttribute = {}));
200
- var InvalidRequestException = (function (_super) {
201
- __extends(InvalidRequestException, _super);
202
- function InvalidRequestException(opts) {
203
- var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
204
- _this.name = "InvalidRequestException";
205
- _this.$fault = "client";
206
- Object.setPrototypeOf(_this, InvalidRequestException.prototype);
207
- return _this;
199
+ export class InvalidRequestException extends __BaseException {
200
+ constructor(opts) {
201
+ super({
202
+ name: "InvalidRequestException",
203
+ $fault: "client",
204
+ ...opts,
205
+ });
206
+ this.name = "InvalidRequestException";
207
+ this.$fault = "client";
208
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
208
209
  }
209
- return InvalidRequestException;
210
- }(__BaseException));
211
- export { InvalidRequestException };
210
+ }
212
211
  export var InstancesHealthAttribute;
213
212
  (function (InstancesHealthAttribute) {
214
213
  InstancesHealthAttribute["All"] = "All";
@@ -223,165 +222,417 @@ export var InstancesHealthAttribute;
223
222
  InstancesHealthAttribute["RefreshedAt"] = "RefreshedAt";
224
223
  InstancesHealthAttribute["System"] = "System";
225
224
  })(InstancesHealthAttribute || (InstancesHealthAttribute = {}));
226
- var ResourceNotFoundException = (function (_super) {
227
- __extends(ResourceNotFoundException, _super);
228
- function ResourceNotFoundException(opts) {
229
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
230
- _this.name = "ResourceNotFoundException";
231
- _this.$fault = "client";
232
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
233
- return _this;
225
+ export class ResourceNotFoundException extends __BaseException {
226
+ constructor(opts) {
227
+ super({
228
+ name: "ResourceNotFoundException",
229
+ $fault: "client",
230
+ ...opts,
231
+ });
232
+ this.name = "ResourceNotFoundException";
233
+ this.$fault = "client";
234
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
234
235
  }
235
- return ResourceNotFoundException;
236
- }(__BaseException));
237
- export { ResourceNotFoundException };
238
- var ResourceTypeNotSupportedException = (function (_super) {
239
- __extends(ResourceTypeNotSupportedException, _super);
240
- function ResourceTypeNotSupportedException(opts) {
241
- var _this = _super.call(this, __assign({ name: "ResourceTypeNotSupportedException", $fault: "client" }, opts)) || this;
242
- _this.name = "ResourceTypeNotSupportedException";
243
- _this.$fault = "client";
244
- Object.setPrototypeOf(_this, ResourceTypeNotSupportedException.prototype);
245
- return _this;
236
+ }
237
+ export class ResourceTypeNotSupportedException extends __BaseException {
238
+ constructor(opts) {
239
+ super({
240
+ name: "ResourceTypeNotSupportedException",
241
+ $fault: "client",
242
+ ...opts,
243
+ });
244
+ this.name = "ResourceTypeNotSupportedException";
245
+ this.$fault = "client";
246
+ Object.setPrototypeOf(this, ResourceTypeNotSupportedException.prototype);
246
247
  }
247
- return ResourceTypeNotSupportedException;
248
- }(__BaseException));
249
- export { ResourceTypeNotSupportedException };
250
- var TooManyTagsException = (function (_super) {
251
- __extends(TooManyTagsException, _super);
252
- function TooManyTagsException(opts) {
253
- var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
254
- _this.name = "TooManyTagsException";
255
- _this.$fault = "client";
256
- Object.setPrototypeOf(_this, TooManyTagsException.prototype);
257
- return _this;
248
+ }
249
+ export class TooManyTagsException extends __BaseException {
250
+ constructor(opts) {
251
+ super({
252
+ name: "TooManyTagsException",
253
+ $fault: "client",
254
+ ...opts,
255
+ });
256
+ this.name = "TooManyTagsException";
257
+ this.$fault = "client";
258
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
258
259
  }
259
- return TooManyTagsException;
260
- }(__BaseException));
261
- export { TooManyTagsException };
262
- export var AbortEnvironmentUpdateMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
263
- export var MaxAgeRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
264
- export var MaxCountRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
265
- export var ApplicationVersionLifecycleConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
266
- export var ApplicationResourceLifecycleConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
267
- export var ApplicationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
268
- export var ApplicationDescriptionMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
269
- export var ApplicationDescriptionsMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
270
- export var LatencyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
271
- export var StatusCodesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
272
- export var ApplicationMetricsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
273
- export var ApplicationResourceLifecycleDescriptionMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
274
- export var SourceBuildInformationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
275
- export var S3LocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
276
- export var ApplicationVersionDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
277
- export var ApplicationVersionDescriptionMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
278
- export var ApplicationVersionDescriptionsMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
279
- export var ApplyEnvironmentManagedActionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
280
- export var ApplyEnvironmentManagedActionResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
281
- export var AssociateEnvironmentOperationsRoleMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
282
- export var AutoScalingGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
283
- export var SolutionStackDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
284
- export var CheckDNSAvailabilityMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
285
- export var CheckDNSAvailabilityResultMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
286
- export var ComposeEnvironmentsMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
287
- export var EnvironmentLinkFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
288
- export var ListenerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
289
- export var LoadBalancerDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
290
- export var EnvironmentResourcesDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
291
- export var EnvironmentTierFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
292
- export var EnvironmentDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
293
- export var EnvironmentDescriptionsMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
294
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
295
- export var CreateApplicationMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
296
- export var BuildConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
297
- export var CreateApplicationVersionMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
298
- export var ConfigurationOptionSettingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
299
- export var ConfigurationSettingsDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
300
- export var SourceConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
301
- export var CreateConfigurationTemplateMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
302
- export var OptionSpecificationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
303
- export var CreateEnvironmentMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
304
- export var CreatePlatformVersionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
305
- export var BuilderFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
306
- export var PlatformSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
307
- export var CreatePlatformVersionResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
308
- export var CreateStorageLocationResultMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
309
- export var DeleteApplicationMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
310
- export var DeleteApplicationVersionMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
311
- export var DeleteConfigurationTemplateMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
312
- export var DeleteEnvironmentConfigurationMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
313
- export var DeletePlatformVersionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
314
- export var DeletePlatformVersionResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
315
- export var ResourceQuotaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
316
- export var ResourceQuotasFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
317
- export var DescribeAccountAttributesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
318
- export var DescribeApplicationsMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
319
- export var DescribeApplicationVersionsMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
320
- export var OptionRestrictionRegexFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
321
- export var ConfigurationOptionDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
322
- export var ConfigurationOptionsDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
323
- export var DescribeConfigurationOptionsMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
324
- export var ConfigurationSettingsDescriptionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
325
- export var DescribeConfigurationSettingsMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
326
- export var DescribeEnvironmentHealthRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
327
- export var InstanceHealthSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
328
- export var DescribeEnvironmentHealthResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
329
- export var DescribeEnvironmentManagedActionHistoryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
330
- export var ManagedActionHistoryItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
331
- export var DescribeEnvironmentManagedActionHistoryResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
332
- export var DescribeEnvironmentManagedActionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
333
- export var ManagedActionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
334
- export var DescribeEnvironmentManagedActionsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
335
- export var DescribeEnvironmentResourcesMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
336
- export var InstanceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
337
- export var LaunchConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
338
- export var LaunchTemplateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
339
- export var LoadBalancerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
340
- export var QueueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
341
- export var TriggerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
342
- export var EnvironmentResourceDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
343
- export var EnvironmentResourceDescriptionsMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
344
- export var DescribeEnvironmentsMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
345
- export var DescribeEventsMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
346
- export var EventDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
347
- export var EventDescriptionsMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
348
- export var DescribeInstancesHealthRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
349
- export var DeploymentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
350
- export var CPUUtilizationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
351
- export var SystemStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
352
- export var SingleInstanceHealthFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
353
- export var DescribeInstancesHealthResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
354
- export var DescribePlatformVersionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
355
- export var CustomAmiFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
356
- export var PlatformFrameworkFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
357
- export var PlatformProgrammingLanguageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
358
- export var PlatformDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
359
- export var DescribePlatformVersionResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
360
- export var DisassociateEnvironmentOperationsRoleMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
361
- export var ListAvailableSolutionStacksResultMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
362
- export var SearchFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
363
- export var ListPlatformBranchesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
364
- export var PlatformBranchSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
365
- export var ListPlatformBranchesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
366
- export var PlatformFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
367
- export var ListPlatformVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
368
- export var ListPlatformVersionsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
369
- export var ListTagsForResourceMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
370
- export var ResourceTagsDescriptionMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
371
- export var RebuildEnvironmentMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
372
- export var RequestEnvironmentInfoMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
373
- export var RestartAppServerMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
374
- export var RetrieveEnvironmentInfoMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
375
- export var EnvironmentInfoDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
376
- export var RetrieveEnvironmentInfoResultMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
377
- export var SwapEnvironmentCNAMEsMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
378
- export var TerminateEnvironmentMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
379
- export var UpdateApplicationMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
380
- export var UpdateApplicationResourceLifecycleMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
381
- export var UpdateApplicationVersionMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
382
- export var UpdateConfigurationTemplateMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
383
- export var UpdateEnvironmentMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
384
- export var UpdateTagsForResourceMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
385
- export var ValidationMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
386
- export var ConfigurationSettingsValidationMessagesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
387
- export var ValidateConfigurationSettingsMessageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
260
+ }
261
+ export const AbortEnvironmentUpdateMessageFilterSensitiveLog = (obj) => ({
262
+ ...obj,
263
+ });
264
+ export const MaxAgeRuleFilterSensitiveLog = (obj) => ({
265
+ ...obj,
266
+ });
267
+ export const MaxCountRuleFilterSensitiveLog = (obj) => ({
268
+ ...obj,
269
+ });
270
+ export const ApplicationVersionLifecycleConfigFilterSensitiveLog = (obj) => ({
271
+ ...obj,
272
+ });
273
+ export const ApplicationResourceLifecycleConfigFilterSensitiveLog = (obj) => ({
274
+ ...obj,
275
+ });
276
+ export const ApplicationDescriptionFilterSensitiveLog = (obj) => ({
277
+ ...obj,
278
+ });
279
+ export const ApplicationDescriptionMessageFilterSensitiveLog = (obj) => ({
280
+ ...obj,
281
+ });
282
+ export const ApplicationDescriptionsMessageFilterSensitiveLog = (obj) => ({
283
+ ...obj,
284
+ });
285
+ export const LatencyFilterSensitiveLog = (obj) => ({
286
+ ...obj,
287
+ });
288
+ export const StatusCodesFilterSensitiveLog = (obj) => ({
289
+ ...obj,
290
+ });
291
+ export const ApplicationMetricsFilterSensitiveLog = (obj) => ({
292
+ ...obj,
293
+ });
294
+ export const ApplicationResourceLifecycleDescriptionMessageFilterSensitiveLog = (obj) => ({
295
+ ...obj,
296
+ });
297
+ export const SourceBuildInformationFilterSensitiveLog = (obj) => ({
298
+ ...obj,
299
+ });
300
+ export const S3LocationFilterSensitiveLog = (obj) => ({
301
+ ...obj,
302
+ });
303
+ export const ApplicationVersionDescriptionFilterSensitiveLog = (obj) => ({
304
+ ...obj,
305
+ });
306
+ export const ApplicationVersionDescriptionMessageFilterSensitiveLog = (obj) => ({
307
+ ...obj,
308
+ });
309
+ export const ApplicationVersionDescriptionsMessageFilterSensitiveLog = (obj) => ({
310
+ ...obj,
311
+ });
312
+ export const ApplyEnvironmentManagedActionRequestFilterSensitiveLog = (obj) => ({
313
+ ...obj,
314
+ });
315
+ export const ApplyEnvironmentManagedActionResultFilterSensitiveLog = (obj) => ({
316
+ ...obj,
317
+ });
318
+ export const AssociateEnvironmentOperationsRoleMessageFilterSensitiveLog = (obj) => ({
319
+ ...obj,
320
+ });
321
+ export const AutoScalingGroupFilterSensitiveLog = (obj) => ({
322
+ ...obj,
323
+ });
324
+ export const SolutionStackDescriptionFilterSensitiveLog = (obj) => ({
325
+ ...obj,
326
+ });
327
+ export const CheckDNSAvailabilityMessageFilterSensitiveLog = (obj) => ({
328
+ ...obj,
329
+ });
330
+ export const CheckDNSAvailabilityResultMessageFilterSensitiveLog = (obj) => ({
331
+ ...obj,
332
+ });
333
+ export const ComposeEnvironmentsMessageFilterSensitiveLog = (obj) => ({
334
+ ...obj,
335
+ });
336
+ export const EnvironmentLinkFilterSensitiveLog = (obj) => ({
337
+ ...obj,
338
+ });
339
+ export const ListenerFilterSensitiveLog = (obj) => ({
340
+ ...obj,
341
+ });
342
+ export const LoadBalancerDescriptionFilterSensitiveLog = (obj) => ({
343
+ ...obj,
344
+ });
345
+ export const EnvironmentResourcesDescriptionFilterSensitiveLog = (obj) => ({
346
+ ...obj,
347
+ });
348
+ export const EnvironmentTierFilterSensitiveLog = (obj) => ({
349
+ ...obj,
350
+ });
351
+ export const EnvironmentDescriptionFilterSensitiveLog = (obj) => ({
352
+ ...obj,
353
+ });
354
+ export const EnvironmentDescriptionsMessageFilterSensitiveLog = (obj) => ({
355
+ ...obj,
356
+ });
357
+ export const TagFilterSensitiveLog = (obj) => ({
358
+ ...obj,
359
+ });
360
+ export const CreateApplicationMessageFilterSensitiveLog = (obj) => ({
361
+ ...obj,
362
+ });
363
+ export const BuildConfigurationFilterSensitiveLog = (obj) => ({
364
+ ...obj,
365
+ });
366
+ export const CreateApplicationVersionMessageFilterSensitiveLog = (obj) => ({
367
+ ...obj,
368
+ });
369
+ export const ConfigurationOptionSettingFilterSensitiveLog = (obj) => ({
370
+ ...obj,
371
+ });
372
+ export const ConfigurationSettingsDescriptionFilterSensitiveLog = (obj) => ({
373
+ ...obj,
374
+ });
375
+ export const SourceConfigurationFilterSensitiveLog = (obj) => ({
376
+ ...obj,
377
+ });
378
+ export const CreateConfigurationTemplateMessageFilterSensitiveLog = (obj) => ({
379
+ ...obj,
380
+ });
381
+ export const OptionSpecificationFilterSensitiveLog = (obj) => ({
382
+ ...obj,
383
+ });
384
+ export const CreateEnvironmentMessageFilterSensitiveLog = (obj) => ({
385
+ ...obj,
386
+ });
387
+ export const CreatePlatformVersionRequestFilterSensitiveLog = (obj) => ({
388
+ ...obj,
389
+ });
390
+ export const BuilderFilterSensitiveLog = (obj) => ({
391
+ ...obj,
392
+ });
393
+ export const PlatformSummaryFilterSensitiveLog = (obj) => ({
394
+ ...obj,
395
+ });
396
+ export const CreatePlatformVersionResultFilterSensitiveLog = (obj) => ({
397
+ ...obj,
398
+ });
399
+ export const CreateStorageLocationResultMessageFilterSensitiveLog = (obj) => ({
400
+ ...obj,
401
+ });
402
+ export const DeleteApplicationMessageFilterSensitiveLog = (obj) => ({
403
+ ...obj,
404
+ });
405
+ export const DeleteApplicationVersionMessageFilterSensitiveLog = (obj) => ({
406
+ ...obj,
407
+ });
408
+ export const DeleteConfigurationTemplateMessageFilterSensitiveLog = (obj) => ({
409
+ ...obj,
410
+ });
411
+ export const DeleteEnvironmentConfigurationMessageFilterSensitiveLog = (obj) => ({
412
+ ...obj,
413
+ });
414
+ export const DeletePlatformVersionRequestFilterSensitiveLog = (obj) => ({
415
+ ...obj,
416
+ });
417
+ export const DeletePlatformVersionResultFilterSensitiveLog = (obj) => ({
418
+ ...obj,
419
+ });
420
+ export const ResourceQuotaFilterSensitiveLog = (obj) => ({
421
+ ...obj,
422
+ });
423
+ export const ResourceQuotasFilterSensitiveLog = (obj) => ({
424
+ ...obj,
425
+ });
426
+ export const DescribeAccountAttributesResultFilterSensitiveLog = (obj) => ({
427
+ ...obj,
428
+ });
429
+ export const DescribeApplicationsMessageFilterSensitiveLog = (obj) => ({
430
+ ...obj,
431
+ });
432
+ export const DescribeApplicationVersionsMessageFilterSensitiveLog = (obj) => ({
433
+ ...obj,
434
+ });
435
+ export const OptionRestrictionRegexFilterSensitiveLog = (obj) => ({
436
+ ...obj,
437
+ });
438
+ export const ConfigurationOptionDescriptionFilterSensitiveLog = (obj) => ({
439
+ ...obj,
440
+ });
441
+ export const ConfigurationOptionsDescriptionFilterSensitiveLog = (obj) => ({
442
+ ...obj,
443
+ });
444
+ export const DescribeConfigurationOptionsMessageFilterSensitiveLog = (obj) => ({
445
+ ...obj,
446
+ });
447
+ export const ConfigurationSettingsDescriptionsFilterSensitiveLog = (obj) => ({
448
+ ...obj,
449
+ });
450
+ export const DescribeConfigurationSettingsMessageFilterSensitiveLog = (obj) => ({
451
+ ...obj,
452
+ });
453
+ export const DescribeEnvironmentHealthRequestFilterSensitiveLog = (obj) => ({
454
+ ...obj,
455
+ });
456
+ export const InstanceHealthSummaryFilterSensitiveLog = (obj) => ({
457
+ ...obj,
458
+ });
459
+ export const DescribeEnvironmentHealthResultFilterSensitiveLog = (obj) => ({
460
+ ...obj,
461
+ });
462
+ export const DescribeEnvironmentManagedActionHistoryRequestFilterSensitiveLog = (obj) => ({
463
+ ...obj,
464
+ });
465
+ export const ManagedActionHistoryItemFilterSensitiveLog = (obj) => ({
466
+ ...obj,
467
+ });
468
+ export const DescribeEnvironmentManagedActionHistoryResultFilterSensitiveLog = (obj) => ({
469
+ ...obj,
470
+ });
471
+ export const DescribeEnvironmentManagedActionsRequestFilterSensitiveLog = (obj) => ({
472
+ ...obj,
473
+ });
474
+ export const ManagedActionFilterSensitiveLog = (obj) => ({
475
+ ...obj,
476
+ });
477
+ export const DescribeEnvironmentManagedActionsResultFilterSensitiveLog = (obj) => ({
478
+ ...obj,
479
+ });
480
+ export const DescribeEnvironmentResourcesMessageFilterSensitiveLog = (obj) => ({
481
+ ...obj,
482
+ });
483
+ export const InstanceFilterSensitiveLog = (obj) => ({
484
+ ...obj,
485
+ });
486
+ export const LaunchConfigurationFilterSensitiveLog = (obj) => ({
487
+ ...obj,
488
+ });
489
+ export const LaunchTemplateFilterSensitiveLog = (obj) => ({
490
+ ...obj,
491
+ });
492
+ export const LoadBalancerFilterSensitiveLog = (obj) => ({
493
+ ...obj,
494
+ });
495
+ export const QueueFilterSensitiveLog = (obj) => ({
496
+ ...obj,
497
+ });
498
+ export const TriggerFilterSensitiveLog = (obj) => ({
499
+ ...obj,
500
+ });
501
+ export const EnvironmentResourceDescriptionFilterSensitiveLog = (obj) => ({
502
+ ...obj,
503
+ });
504
+ export const EnvironmentResourceDescriptionsMessageFilterSensitiveLog = (obj) => ({
505
+ ...obj,
506
+ });
507
+ export const DescribeEnvironmentsMessageFilterSensitiveLog = (obj) => ({
508
+ ...obj,
509
+ });
510
+ export const DescribeEventsMessageFilterSensitiveLog = (obj) => ({
511
+ ...obj,
512
+ });
513
+ export const EventDescriptionFilterSensitiveLog = (obj) => ({
514
+ ...obj,
515
+ });
516
+ export const EventDescriptionsMessageFilterSensitiveLog = (obj) => ({
517
+ ...obj,
518
+ });
519
+ export const DescribeInstancesHealthRequestFilterSensitiveLog = (obj) => ({
520
+ ...obj,
521
+ });
522
+ export const DeploymentFilterSensitiveLog = (obj) => ({
523
+ ...obj,
524
+ });
525
+ export const CPUUtilizationFilterSensitiveLog = (obj) => ({
526
+ ...obj,
527
+ });
528
+ export const SystemStatusFilterSensitiveLog = (obj) => ({
529
+ ...obj,
530
+ });
531
+ export const SingleInstanceHealthFilterSensitiveLog = (obj) => ({
532
+ ...obj,
533
+ });
534
+ export const DescribeInstancesHealthResultFilterSensitiveLog = (obj) => ({
535
+ ...obj,
536
+ });
537
+ export const DescribePlatformVersionRequestFilterSensitiveLog = (obj) => ({
538
+ ...obj,
539
+ });
540
+ export const CustomAmiFilterSensitiveLog = (obj) => ({
541
+ ...obj,
542
+ });
543
+ export const PlatformFrameworkFilterSensitiveLog = (obj) => ({
544
+ ...obj,
545
+ });
546
+ export const PlatformProgrammingLanguageFilterSensitiveLog = (obj) => ({
547
+ ...obj,
548
+ });
549
+ export const PlatformDescriptionFilterSensitiveLog = (obj) => ({
550
+ ...obj,
551
+ });
552
+ export const DescribePlatformVersionResultFilterSensitiveLog = (obj) => ({
553
+ ...obj,
554
+ });
555
+ export const DisassociateEnvironmentOperationsRoleMessageFilterSensitiveLog = (obj) => ({
556
+ ...obj,
557
+ });
558
+ export const ListAvailableSolutionStacksResultMessageFilterSensitiveLog = (obj) => ({
559
+ ...obj,
560
+ });
561
+ export const SearchFilterFilterSensitiveLog = (obj) => ({
562
+ ...obj,
563
+ });
564
+ export const ListPlatformBranchesRequestFilterSensitiveLog = (obj) => ({
565
+ ...obj,
566
+ });
567
+ export const PlatformBranchSummaryFilterSensitiveLog = (obj) => ({
568
+ ...obj,
569
+ });
570
+ export const ListPlatformBranchesResultFilterSensitiveLog = (obj) => ({
571
+ ...obj,
572
+ });
573
+ export const PlatformFilterFilterSensitiveLog = (obj) => ({
574
+ ...obj,
575
+ });
576
+ export const ListPlatformVersionsRequestFilterSensitiveLog = (obj) => ({
577
+ ...obj,
578
+ });
579
+ export const ListPlatformVersionsResultFilterSensitiveLog = (obj) => ({
580
+ ...obj,
581
+ });
582
+ export const ListTagsForResourceMessageFilterSensitiveLog = (obj) => ({
583
+ ...obj,
584
+ });
585
+ export const ResourceTagsDescriptionMessageFilterSensitiveLog = (obj) => ({
586
+ ...obj,
587
+ });
588
+ export const RebuildEnvironmentMessageFilterSensitiveLog = (obj) => ({
589
+ ...obj,
590
+ });
591
+ export const RequestEnvironmentInfoMessageFilterSensitiveLog = (obj) => ({
592
+ ...obj,
593
+ });
594
+ export const RestartAppServerMessageFilterSensitiveLog = (obj) => ({
595
+ ...obj,
596
+ });
597
+ export const RetrieveEnvironmentInfoMessageFilterSensitiveLog = (obj) => ({
598
+ ...obj,
599
+ });
600
+ export const EnvironmentInfoDescriptionFilterSensitiveLog = (obj) => ({
601
+ ...obj,
602
+ });
603
+ export const RetrieveEnvironmentInfoResultMessageFilterSensitiveLog = (obj) => ({
604
+ ...obj,
605
+ });
606
+ export const SwapEnvironmentCNAMEsMessageFilterSensitiveLog = (obj) => ({
607
+ ...obj,
608
+ });
609
+ export const TerminateEnvironmentMessageFilterSensitiveLog = (obj) => ({
610
+ ...obj,
611
+ });
612
+ export const UpdateApplicationMessageFilterSensitiveLog = (obj) => ({
613
+ ...obj,
614
+ });
615
+ export const UpdateApplicationResourceLifecycleMessageFilterSensitiveLog = (obj) => ({
616
+ ...obj,
617
+ });
618
+ export const UpdateApplicationVersionMessageFilterSensitiveLog = (obj) => ({
619
+ ...obj,
620
+ });
621
+ export const UpdateConfigurationTemplateMessageFilterSensitiveLog = (obj) => ({
622
+ ...obj,
623
+ });
624
+ export const UpdateEnvironmentMessageFilterSensitiveLog = (obj) => ({
625
+ ...obj,
626
+ });
627
+ export const UpdateTagsForResourceMessageFilterSensitiveLog = (obj) => ({
628
+ ...obj,
629
+ });
630
+ export const ValidationMessageFilterSensitiveLog = (obj) => ({
631
+ ...obj,
632
+ });
633
+ export const ConfigurationSettingsValidationMessagesFilterSensitiveLog = (obj) => ({
634
+ ...obj,
635
+ });
636
+ export const ValidateConfigurationSettingsMessageFilterSensitiveLog = (obj) => ({
637
+ ...obj,
638
+ });