@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.
- package/CHANGELOG.md +26 -0
- package/dist-cjs/protocols/Aws_query.js +64 -56
- package/dist-es/ElasticBeanstalk.js +190 -197
- package/dist-es/ElasticBeanstalkClient.js +22 -28
- package/dist-es/commands/AbortEnvironmentUpdateCommand.js +22 -29
- package/dist-es/commands/ApplyEnvironmentManagedActionCommand.js +21 -28
- package/dist-es/commands/AssociateEnvironmentOperationsRoleCommand.js +22 -29
- package/dist-es/commands/CheckDNSAvailabilityCommand.js +21 -28
- package/dist-es/commands/ComposeEnvironmentsCommand.js +21 -28
- package/dist-es/commands/CreateApplicationCommand.js +21 -28
- package/dist-es/commands/CreateApplicationVersionCommand.js +21 -28
- package/dist-es/commands/CreateConfigurationTemplateCommand.js +21 -28
- package/dist-es/commands/CreateEnvironmentCommand.js +21 -28
- package/dist-es/commands/CreatePlatformVersionCommand.js +21 -28
- package/dist-es/commands/CreateStorageLocationCommand.js +22 -29
- package/dist-es/commands/DeleteApplicationCommand.js +22 -29
- package/dist-es/commands/DeleteApplicationVersionCommand.js +22 -29
- package/dist-es/commands/DeleteConfigurationTemplateCommand.js +22 -29
- package/dist-es/commands/DeleteEnvironmentConfigurationCommand.js +22 -29
- package/dist-es/commands/DeletePlatformVersionCommand.js +21 -28
- package/dist-es/commands/DescribeAccountAttributesCommand.js +22 -29
- package/dist-es/commands/DescribeApplicationVersionsCommand.js +21 -28
- package/dist-es/commands/DescribeApplicationsCommand.js +21 -28
- package/dist-es/commands/DescribeConfigurationOptionsCommand.js +21 -28
- package/dist-es/commands/DescribeConfigurationSettingsCommand.js +21 -28
- package/dist-es/commands/DescribeEnvironmentHealthCommand.js +21 -28
- package/dist-es/commands/DescribeEnvironmentManagedActionHistoryCommand.js +21 -28
- package/dist-es/commands/DescribeEnvironmentManagedActionsCommand.js +21 -28
- package/dist-es/commands/DescribeEnvironmentResourcesCommand.js +21 -28
- package/dist-es/commands/DescribeEnvironmentsCommand.js +21 -28
- package/dist-es/commands/DescribeEventsCommand.js +21 -28
- package/dist-es/commands/DescribeInstancesHealthCommand.js +21 -28
- package/dist-es/commands/DescribePlatformVersionCommand.js +21 -28
- package/dist-es/commands/DisassociateEnvironmentOperationsRoleCommand.js +22 -29
- package/dist-es/commands/ListAvailableSolutionStacksCommand.js +22 -29
- package/dist-es/commands/ListPlatformBranchesCommand.js +21 -28
- package/dist-es/commands/ListPlatformVersionsCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/RebuildEnvironmentCommand.js +22 -29
- package/dist-es/commands/RequestEnvironmentInfoCommand.js +22 -29
- package/dist-es/commands/RestartAppServerCommand.js +22 -29
- package/dist-es/commands/RetrieveEnvironmentInfoCommand.js +21 -28
- package/dist-es/commands/SwapEnvironmentCNAMEsCommand.js +22 -29
- package/dist-es/commands/TerminateEnvironmentCommand.js +21 -28
- package/dist-es/commands/UpdateApplicationCommand.js +21 -28
- package/dist-es/commands/UpdateApplicationResourceLifecycleCommand.js +21 -28
- package/dist-es/commands/UpdateApplicationVersionCommand.js +21 -28
- package/dist-es/commands/UpdateConfigurationTemplateCommand.js +21 -28
- package/dist-es/commands/UpdateEnvironmentCommand.js +21 -28
- package/dist-es/commands/UpdateTagsForResourceCommand.js +22 -29
- package/dist-es/commands/ValidateConfigurationSettingsCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ElasticBeanstalkServiceException.js +5 -10
- package/dist-es/models/models_0.js +587 -336
- package/dist-es/pagination/DescribeEnvironmentManagedActionHistoryPaginator.js +25 -68
- package/dist-es/pagination/DescribeEventsPaginator.js +25 -68
- package/dist-es/pagination/ListPlatformBranchesPaginator.js +25 -68
- package/dist-es/pagination/ListPlatformVersionsPaginator.js +25 -68
- package/dist-es/protocols/Aws_query.js +2951 -3966
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/dist-es/waiters/waitForEnvironmentExists.js +52 -93
- package/dist-es/waiters/waitForEnvironmentTerminated.js +52 -93
- package/dist-es/waiters/waitForEnvironmentUpdated.js +52 -93
- package/package.json +34 -34
|
@@ -1,191 +1,190 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { ElasticBeanstalkServiceException as __BaseException } from "./ElasticBeanstalkServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
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
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
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
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
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
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
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
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
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
|
-
|
|
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
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
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
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
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
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
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
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
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
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
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
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
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
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
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
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
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
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
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
|
-
|
|
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
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
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
|
-
|
|
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
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
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
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
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
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
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
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
export
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
export
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
export
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
export
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
export
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
export
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
export
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
export
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
export
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
export
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
export
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
export
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
export
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
export
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
export
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
export
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
export
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
export
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
export
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
export
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
export
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
export
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
export
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
export
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
export
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
export
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
export
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
export
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
export
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
export
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
export
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
export
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
export
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
export
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
export
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
export
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
export
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
export
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
export
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
export
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
export
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
export
|
|
387
|
-
|
|
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
|
+
});
|