@aws-sdk/client-imagebuilder 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 +20 -0
- package/dist-cjs/protocols/Aws_restJson1.js +56 -50
- package/dist-es/Imagebuilder.js +202 -209
- package/dist-es/ImagebuilderClient.js +22 -28
- package/dist-es/commands/CancelImageCreationCommand.js +21 -28
- package/dist-es/commands/CreateComponentCommand.js +21 -28
- package/dist-es/commands/CreateContainerRecipeCommand.js +21 -28
- package/dist-es/commands/CreateDistributionConfigurationCommand.js +21 -28
- package/dist-es/commands/CreateImageCommand.js +21 -28
- package/dist-es/commands/CreateImagePipelineCommand.js +21 -28
- package/dist-es/commands/CreateImageRecipeCommand.js +21 -28
- package/dist-es/commands/CreateInfrastructureConfigurationCommand.js +21 -28
- package/dist-es/commands/DeleteComponentCommand.js +21 -28
- package/dist-es/commands/DeleteContainerRecipeCommand.js +21 -28
- package/dist-es/commands/DeleteDistributionConfigurationCommand.js +21 -28
- package/dist-es/commands/DeleteImageCommand.js +21 -28
- package/dist-es/commands/DeleteImagePipelineCommand.js +21 -28
- package/dist-es/commands/DeleteImageRecipeCommand.js +21 -28
- package/dist-es/commands/DeleteInfrastructureConfigurationCommand.js +21 -28
- package/dist-es/commands/GetComponentCommand.js +21 -28
- package/dist-es/commands/GetComponentPolicyCommand.js +21 -28
- package/dist-es/commands/GetContainerRecipeCommand.js +21 -28
- package/dist-es/commands/GetContainerRecipePolicyCommand.js +21 -28
- package/dist-es/commands/GetDistributionConfigurationCommand.js +21 -28
- package/dist-es/commands/GetImageCommand.js +21 -28
- package/dist-es/commands/GetImagePipelineCommand.js +21 -28
- package/dist-es/commands/GetImagePolicyCommand.js +21 -28
- package/dist-es/commands/GetImageRecipeCommand.js +21 -28
- package/dist-es/commands/GetImageRecipePolicyCommand.js +21 -28
- package/dist-es/commands/GetInfrastructureConfigurationCommand.js +21 -28
- package/dist-es/commands/ImportComponentCommand.js +21 -28
- package/dist-es/commands/ImportVmImageCommand.js +21 -28
- package/dist-es/commands/ListComponentBuildVersionsCommand.js +21 -28
- package/dist-es/commands/ListComponentsCommand.js +21 -28
- package/dist-es/commands/ListContainerRecipesCommand.js +21 -28
- package/dist-es/commands/ListDistributionConfigurationsCommand.js +21 -28
- package/dist-es/commands/ListImageBuildVersionsCommand.js +21 -28
- package/dist-es/commands/ListImagePackagesCommand.js +21 -28
- package/dist-es/commands/ListImagePipelineImagesCommand.js +21 -28
- package/dist-es/commands/ListImagePipelinesCommand.js +21 -28
- package/dist-es/commands/ListImageRecipesCommand.js +21 -28
- package/dist-es/commands/ListImagesCommand.js +21 -28
- package/dist-es/commands/ListInfrastructureConfigurationsCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/PutComponentPolicyCommand.js +21 -28
- package/dist-es/commands/PutContainerRecipePolicyCommand.js +21 -28
- package/dist-es/commands/PutImagePolicyCommand.js +21 -28
- package/dist-es/commands/PutImageRecipePolicyCommand.js +21 -28
- package/dist-es/commands/StartImagePipelineExecutionCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateDistributionConfigurationCommand.js +21 -28
- package/dist-es/commands/UpdateImagePipelineCommand.js +21 -28
- package/dist-es/commands/UpdateInfrastructureConfigurationCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ImagebuilderServiceException.js +5 -10
- package/dist-es/models/models_0.js +622 -333
- package/dist-es/pagination/ListComponentBuildVersionsPaginator.js +25 -68
- package/dist-es/pagination/ListComponentsPaginator.js +25 -68
- package/dist-es/pagination/ListContainerRecipesPaginator.js +25 -68
- package/dist-es/pagination/ListDistributionConfigurationsPaginator.js +25 -68
- package/dist-es/pagination/ListImageBuildVersionsPaginator.js +25 -68
- package/dist-es/pagination/ListImagePackagesPaginator.js +25 -68
- package/dist-es/pagination/ListImagePipelineImagesPaginator.js +25 -68
- package/dist-es/pagination/ListImagePipelinesPaginator.js +25 -68
- package/dist-es/pagination/ListImageRecipesPaginator.js +25 -68
- package/dist-es/pagination/ListImagesPaginator.js +25 -68
- package/dist-es/pagination/ListInfrastructureConfigurationsPaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +4518 -5990
- 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/package.json +33 -33
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { ImagebuilderServiceException as __BaseException } from "./ImagebuilderServiceException";
|
|
3
2
|
export var ImageStatus;
|
|
4
3
|
(function (ImageStatus) {
|
|
@@ -20,102 +19,102 @@ export var BuildType;
|
|
|
20
19
|
BuildType["SCHEDULED"] = "SCHEDULED";
|
|
21
20
|
BuildType["USER_INITIATED"] = "USER_INITIATED";
|
|
22
21
|
})(BuildType || (BuildType = {}));
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
22
|
+
export class CallRateLimitExceededException extends __BaseException {
|
|
23
|
+
constructor(opts) {
|
|
24
|
+
super({
|
|
25
|
+
name: "CallRateLimitExceededException",
|
|
26
|
+
$fault: "client",
|
|
27
|
+
...opts,
|
|
28
|
+
});
|
|
29
|
+
this.name = "CallRateLimitExceededException";
|
|
30
|
+
this.$fault = "client";
|
|
31
|
+
Object.setPrototypeOf(this, CallRateLimitExceededException.prototype);
|
|
31
32
|
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
33
|
+
}
|
|
34
|
+
export class ClientException extends __BaseException {
|
|
35
|
+
constructor(opts) {
|
|
36
|
+
super({
|
|
37
|
+
name: "ClientException",
|
|
38
|
+
$fault: "client",
|
|
39
|
+
...opts,
|
|
40
|
+
});
|
|
41
|
+
this.name = "ClientException";
|
|
42
|
+
this.$fault = "client";
|
|
43
|
+
Object.setPrototypeOf(this, ClientException.prototype);
|
|
43
44
|
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
45
|
+
}
|
|
46
|
+
export class ForbiddenException extends __BaseException {
|
|
47
|
+
constructor(opts) {
|
|
48
|
+
super({
|
|
49
|
+
name: "ForbiddenException",
|
|
50
|
+
$fault: "client",
|
|
51
|
+
...opts,
|
|
52
|
+
});
|
|
53
|
+
this.name = "ForbiddenException";
|
|
54
|
+
this.$fault = "client";
|
|
55
|
+
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
55
56
|
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
57
|
+
}
|
|
58
|
+
export class IdempotentParameterMismatchException extends __BaseException {
|
|
59
|
+
constructor(opts) {
|
|
60
|
+
super({
|
|
61
|
+
name: "IdempotentParameterMismatchException",
|
|
62
|
+
$fault: "client",
|
|
63
|
+
...opts,
|
|
64
|
+
});
|
|
65
|
+
this.name = "IdempotentParameterMismatchException";
|
|
66
|
+
this.$fault = "client";
|
|
67
|
+
Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
|
|
67
68
|
}
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
69
|
+
}
|
|
70
|
+
export class InvalidRequestException extends __BaseException {
|
|
71
|
+
constructor(opts) {
|
|
72
|
+
super({
|
|
73
|
+
name: "InvalidRequestException",
|
|
74
|
+
$fault: "client",
|
|
75
|
+
...opts,
|
|
76
|
+
});
|
|
77
|
+
this.name = "InvalidRequestException";
|
|
78
|
+
this.$fault = "client";
|
|
79
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
79
80
|
}
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
81
|
+
}
|
|
82
|
+
export class ResourceInUseException extends __BaseException {
|
|
83
|
+
constructor(opts) {
|
|
84
|
+
super({
|
|
85
|
+
name: "ResourceInUseException",
|
|
86
|
+
$fault: "client",
|
|
87
|
+
...opts,
|
|
88
|
+
});
|
|
89
|
+
this.name = "ResourceInUseException";
|
|
90
|
+
this.$fault = "client";
|
|
91
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
91
92
|
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
93
|
+
}
|
|
94
|
+
export class ServiceException extends __BaseException {
|
|
95
|
+
constructor(opts) {
|
|
96
|
+
super({
|
|
97
|
+
name: "ServiceException",
|
|
98
|
+
$fault: "server",
|
|
99
|
+
...opts,
|
|
100
|
+
});
|
|
101
|
+
this.name = "ServiceException";
|
|
102
|
+
this.$fault = "server";
|
|
103
|
+
Object.setPrototypeOf(this, ServiceException.prototype);
|
|
103
104
|
}
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
105
|
+
}
|
|
106
|
+
export class ServiceUnavailableException extends __BaseException {
|
|
107
|
+
constructor(opts) {
|
|
108
|
+
super({
|
|
109
|
+
name: "ServiceUnavailableException",
|
|
110
|
+
$fault: "server",
|
|
111
|
+
...opts,
|
|
112
|
+
});
|
|
113
|
+
this.name = "ServiceUnavailableException";
|
|
114
|
+
this.$fault = "server";
|
|
115
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
115
116
|
}
|
|
116
|
-
|
|
117
|
-
}(__BaseException));
|
|
118
|
-
export { ServiceUnavailableException };
|
|
117
|
+
}
|
|
119
118
|
export var Platform;
|
|
120
119
|
(function (Platform) {
|
|
121
120
|
Platform["LINUX"] = "Linux";
|
|
@@ -152,54 +151,54 @@ export var EbsVolumeType;
|
|
|
152
151
|
EbsVolumeType["ST1"] = "st1";
|
|
153
152
|
EbsVolumeType["STANDARD"] = "standard";
|
|
154
153
|
})(EbsVolumeType || (EbsVolumeType = {}));
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
154
|
+
export class InvalidParameterCombinationException extends __BaseException {
|
|
155
|
+
constructor(opts) {
|
|
156
|
+
super({
|
|
157
|
+
name: "InvalidParameterCombinationException",
|
|
158
|
+
$fault: "client",
|
|
159
|
+
...opts,
|
|
160
|
+
});
|
|
161
|
+
this.name = "InvalidParameterCombinationException";
|
|
162
|
+
this.$fault = "client";
|
|
163
|
+
Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
|
|
163
164
|
}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
165
|
+
}
|
|
166
|
+
export class InvalidVersionNumberException extends __BaseException {
|
|
167
|
+
constructor(opts) {
|
|
168
|
+
super({
|
|
169
|
+
name: "InvalidVersionNumberException",
|
|
170
|
+
$fault: "client",
|
|
171
|
+
...opts,
|
|
172
|
+
});
|
|
173
|
+
this.name = "InvalidVersionNumberException";
|
|
174
|
+
this.$fault = "client";
|
|
175
|
+
Object.setPrototypeOf(this, InvalidVersionNumberException.prototype);
|
|
175
176
|
}
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
177
|
+
}
|
|
178
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
179
|
+
constructor(opts) {
|
|
180
|
+
super({
|
|
181
|
+
name: "ServiceQuotaExceededException",
|
|
182
|
+
$fault: "client",
|
|
183
|
+
...opts,
|
|
184
|
+
});
|
|
185
|
+
this.name = "ServiceQuotaExceededException";
|
|
186
|
+
this.$fault = "client";
|
|
187
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
187
188
|
}
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
189
|
+
}
|
|
190
|
+
export class ResourceAlreadyExistsException extends __BaseException {
|
|
191
|
+
constructor(opts) {
|
|
192
|
+
super({
|
|
193
|
+
name: "ResourceAlreadyExistsException",
|
|
194
|
+
$fault: "client",
|
|
195
|
+
...opts,
|
|
196
|
+
});
|
|
197
|
+
this.name = "ResourceAlreadyExistsException";
|
|
198
|
+
this.$fault = "client";
|
|
199
|
+
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
199
200
|
}
|
|
200
|
-
|
|
201
|
-
}(__BaseException));
|
|
202
|
-
export { ResourceAlreadyExistsException };
|
|
201
|
+
}
|
|
203
202
|
export var DiskImageFormat;
|
|
204
203
|
(function (DiskImageFormat) {
|
|
205
204
|
DiskImageFormat["RAW"] = "RAW";
|
|
@@ -216,219 +215,509 @@ export var PipelineStatus;
|
|
|
216
215
|
PipelineStatus["DISABLED"] = "DISABLED";
|
|
217
216
|
PipelineStatus["ENABLED"] = "ENABLED";
|
|
218
217
|
})(PipelineStatus || (PipelineStatus = {}));
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
218
|
+
export class ResourceDependencyException extends __BaseException {
|
|
219
|
+
constructor(opts) {
|
|
220
|
+
super({
|
|
221
|
+
name: "ResourceDependencyException",
|
|
222
|
+
$fault: "client",
|
|
223
|
+
...opts,
|
|
224
|
+
});
|
|
225
|
+
this.name = "ResourceDependencyException";
|
|
226
|
+
this.$fault = "client";
|
|
227
|
+
Object.setPrototypeOf(this, ResourceDependencyException.prototype);
|
|
227
228
|
}
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
229
|
+
}
|
|
230
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
231
|
+
constructor(opts) {
|
|
232
|
+
super({
|
|
233
|
+
name: "ResourceNotFoundException",
|
|
234
|
+
$fault: "client",
|
|
235
|
+
...opts,
|
|
236
|
+
});
|
|
237
|
+
this.name = "ResourceNotFoundException";
|
|
238
|
+
this.$fault = "client";
|
|
239
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
239
240
|
}
|
|
240
|
-
|
|
241
|
-
}(__BaseException));
|
|
242
|
-
export { ResourceNotFoundException };
|
|
241
|
+
}
|
|
243
242
|
export var ImageType;
|
|
244
243
|
(function (ImageType) {
|
|
245
244
|
ImageType["AMI"] = "AMI";
|
|
246
245
|
ImageType["DOCKER"] = "DOCKER";
|
|
247
246
|
})(ImageType || (ImageType = {}));
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
247
|
+
export class InvalidPaginationTokenException extends __BaseException {
|
|
248
|
+
constructor(opts) {
|
|
249
|
+
super({
|
|
250
|
+
name: "InvalidPaginationTokenException",
|
|
251
|
+
$fault: "client",
|
|
252
|
+
...opts,
|
|
253
|
+
});
|
|
254
|
+
this.name = "InvalidPaginationTokenException";
|
|
255
|
+
this.$fault = "client";
|
|
256
|
+
Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
|
|
256
257
|
}
|
|
257
|
-
|
|
258
|
-
}(__BaseException));
|
|
259
|
-
export { InvalidPaginationTokenException };
|
|
258
|
+
}
|
|
260
259
|
export var Ownership;
|
|
261
260
|
(function (Ownership) {
|
|
262
261
|
Ownership["AMAZON"] = "Amazon";
|
|
263
262
|
Ownership["SELF"] = "Self";
|
|
264
263
|
Ownership["SHARED"] = "Shared";
|
|
265
264
|
})(Ownership || (Ownership = {}));
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
265
|
+
export class InvalidParameterException extends __BaseException {
|
|
266
|
+
constructor(opts) {
|
|
267
|
+
super({
|
|
268
|
+
name: "InvalidParameterException",
|
|
269
|
+
$fault: "client",
|
|
270
|
+
...opts,
|
|
271
|
+
});
|
|
272
|
+
this.name = "InvalidParameterException";
|
|
273
|
+
this.$fault = "client";
|
|
274
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
274
275
|
}
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
276
|
+
}
|
|
277
|
+
export class InvalidParameterValueException extends __BaseException {
|
|
278
|
+
constructor(opts) {
|
|
279
|
+
super({
|
|
280
|
+
name: "InvalidParameterValueException",
|
|
281
|
+
$fault: "client",
|
|
282
|
+
...opts,
|
|
283
|
+
});
|
|
284
|
+
this.name = "InvalidParameterValueException";
|
|
285
|
+
this.$fault = "client";
|
|
286
|
+
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
286
287
|
}
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
export
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
export
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
export
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
export
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
export
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
export
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
export
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
export
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
export
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
export
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
export
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
export
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
export
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
export
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
export
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
export
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
export
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
export
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
export
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
export
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
export
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
export
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
export
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
export
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
export
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
export
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
export
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
export
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
export
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
export
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
export
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
export
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
export
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
export
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
export
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
export
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
export
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
export
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
export
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
export
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
export
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
export
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
export
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
export
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
export
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
export
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
export
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
export
|
|
433
|
-
|
|
434
|
-
|
|
288
|
+
}
|
|
289
|
+
export const SystemsManagerAgentFilterSensitiveLog = (obj) => ({
|
|
290
|
+
...obj,
|
|
291
|
+
});
|
|
292
|
+
export const AdditionalInstanceConfigurationFilterSensitiveLog = (obj) => ({
|
|
293
|
+
...obj,
|
|
294
|
+
});
|
|
295
|
+
export const ImageStateFilterSensitiveLog = (obj) => ({
|
|
296
|
+
...obj,
|
|
297
|
+
});
|
|
298
|
+
export const AmiFilterSensitiveLog = (obj) => ({
|
|
299
|
+
...obj,
|
|
300
|
+
});
|
|
301
|
+
export const LaunchPermissionConfigurationFilterSensitiveLog = (obj) => ({
|
|
302
|
+
...obj,
|
|
303
|
+
});
|
|
304
|
+
export const AmiDistributionConfigurationFilterSensitiveLog = (obj) => ({
|
|
305
|
+
...obj,
|
|
306
|
+
});
|
|
307
|
+
export const CancelImageCreationRequestFilterSensitiveLog = (obj) => ({
|
|
308
|
+
...obj,
|
|
309
|
+
});
|
|
310
|
+
export const CancelImageCreationResponseFilterSensitiveLog = (obj) => ({
|
|
311
|
+
...obj,
|
|
312
|
+
});
|
|
313
|
+
export const ComponentParameterDetailFilterSensitiveLog = (obj) => ({
|
|
314
|
+
...obj,
|
|
315
|
+
});
|
|
316
|
+
export const ComponentStateFilterSensitiveLog = (obj) => ({
|
|
317
|
+
...obj,
|
|
318
|
+
});
|
|
319
|
+
export const ComponentFilterSensitiveLog = (obj) => ({
|
|
320
|
+
...obj,
|
|
321
|
+
});
|
|
322
|
+
export const ComponentParameterFilterSensitiveLog = (obj) => ({
|
|
323
|
+
...obj,
|
|
324
|
+
});
|
|
325
|
+
export const ComponentConfigurationFilterSensitiveLog = (obj) => ({
|
|
326
|
+
...obj,
|
|
327
|
+
});
|
|
328
|
+
export const ComponentSummaryFilterSensitiveLog = (obj) => ({
|
|
329
|
+
...obj,
|
|
330
|
+
});
|
|
331
|
+
export const ComponentVersionFilterSensitiveLog = (obj) => ({
|
|
332
|
+
...obj,
|
|
333
|
+
});
|
|
334
|
+
export const ContainerFilterSensitiveLog = (obj) => ({
|
|
335
|
+
...obj,
|
|
336
|
+
});
|
|
337
|
+
export const TargetContainerRepositoryFilterSensitiveLog = (obj) => ({
|
|
338
|
+
...obj,
|
|
339
|
+
});
|
|
340
|
+
export const ContainerDistributionConfigurationFilterSensitiveLog = (obj) => ({
|
|
341
|
+
...obj,
|
|
342
|
+
});
|
|
343
|
+
export const EbsInstanceBlockDeviceSpecificationFilterSensitiveLog = (obj) => ({
|
|
344
|
+
...obj,
|
|
345
|
+
});
|
|
346
|
+
export const InstanceBlockDeviceMappingFilterSensitiveLog = (obj) => ({
|
|
347
|
+
...obj,
|
|
348
|
+
});
|
|
349
|
+
export const InstanceConfigurationFilterSensitiveLog = (obj) => ({
|
|
350
|
+
...obj,
|
|
351
|
+
});
|
|
352
|
+
export const ContainerRecipeFilterSensitiveLog = (obj) => ({
|
|
353
|
+
...obj,
|
|
354
|
+
});
|
|
355
|
+
export const ContainerRecipeSummaryFilterSensitiveLog = (obj) => ({
|
|
356
|
+
...obj,
|
|
357
|
+
});
|
|
358
|
+
export const CreateComponentRequestFilterSensitiveLog = (obj) => ({
|
|
359
|
+
...obj,
|
|
360
|
+
});
|
|
361
|
+
export const CreateComponentResponseFilterSensitiveLog = (obj) => ({
|
|
362
|
+
...obj,
|
|
363
|
+
});
|
|
364
|
+
export const CreateContainerRecipeRequestFilterSensitiveLog = (obj) => ({
|
|
365
|
+
...obj,
|
|
366
|
+
});
|
|
367
|
+
export const CreateContainerRecipeResponseFilterSensitiveLog = (obj) => ({
|
|
368
|
+
...obj,
|
|
369
|
+
});
|
|
370
|
+
export const FastLaunchLaunchTemplateSpecificationFilterSensitiveLog = (obj) => ({
|
|
371
|
+
...obj,
|
|
372
|
+
});
|
|
373
|
+
export const FastLaunchSnapshotConfigurationFilterSensitiveLog = (obj) => ({
|
|
374
|
+
...obj,
|
|
375
|
+
});
|
|
376
|
+
export const FastLaunchConfigurationFilterSensitiveLog = (obj) => ({
|
|
377
|
+
...obj,
|
|
378
|
+
});
|
|
379
|
+
export const LaunchTemplateConfigurationFilterSensitiveLog = (obj) => ({
|
|
380
|
+
...obj,
|
|
381
|
+
});
|
|
382
|
+
export const S3ExportConfigurationFilterSensitiveLog = (obj) => ({
|
|
383
|
+
...obj,
|
|
384
|
+
});
|
|
385
|
+
export const DistributionFilterSensitiveLog = (obj) => ({
|
|
386
|
+
...obj,
|
|
387
|
+
});
|
|
388
|
+
export const CreateDistributionConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
389
|
+
...obj,
|
|
390
|
+
});
|
|
391
|
+
export const CreateDistributionConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
392
|
+
...obj,
|
|
393
|
+
});
|
|
394
|
+
export const ImageTestsConfigurationFilterSensitiveLog = (obj) => ({
|
|
395
|
+
...obj,
|
|
396
|
+
});
|
|
397
|
+
export const CreateImageRequestFilterSensitiveLog = (obj) => ({
|
|
398
|
+
...obj,
|
|
399
|
+
});
|
|
400
|
+
export const CreateImageResponseFilterSensitiveLog = (obj) => ({
|
|
401
|
+
...obj,
|
|
402
|
+
});
|
|
403
|
+
export const ScheduleFilterSensitiveLog = (obj) => ({
|
|
404
|
+
...obj,
|
|
405
|
+
});
|
|
406
|
+
export const CreateImagePipelineRequestFilterSensitiveLog = (obj) => ({
|
|
407
|
+
...obj,
|
|
408
|
+
});
|
|
409
|
+
export const CreateImagePipelineResponseFilterSensitiveLog = (obj) => ({
|
|
410
|
+
...obj,
|
|
411
|
+
});
|
|
412
|
+
export const CreateImageRecipeRequestFilterSensitiveLog = (obj) => ({
|
|
413
|
+
...obj,
|
|
414
|
+
});
|
|
415
|
+
export const CreateImageRecipeResponseFilterSensitiveLog = (obj) => ({
|
|
416
|
+
...obj,
|
|
417
|
+
});
|
|
418
|
+
export const InstanceMetadataOptionsFilterSensitiveLog = (obj) => ({
|
|
419
|
+
...obj,
|
|
420
|
+
});
|
|
421
|
+
export const S3LogsFilterSensitiveLog = (obj) => ({
|
|
422
|
+
...obj,
|
|
423
|
+
});
|
|
424
|
+
export const LoggingFilterSensitiveLog = (obj) => ({
|
|
425
|
+
...obj,
|
|
426
|
+
});
|
|
427
|
+
export const CreateInfrastructureConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
428
|
+
...obj,
|
|
429
|
+
});
|
|
430
|
+
export const CreateInfrastructureConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
431
|
+
...obj,
|
|
432
|
+
});
|
|
433
|
+
export const DeleteComponentRequestFilterSensitiveLog = (obj) => ({
|
|
434
|
+
...obj,
|
|
435
|
+
});
|
|
436
|
+
export const DeleteComponentResponseFilterSensitiveLog = (obj) => ({
|
|
437
|
+
...obj,
|
|
438
|
+
});
|
|
439
|
+
export const DeleteContainerRecipeRequestFilterSensitiveLog = (obj) => ({
|
|
440
|
+
...obj,
|
|
441
|
+
});
|
|
442
|
+
export const DeleteContainerRecipeResponseFilterSensitiveLog = (obj) => ({
|
|
443
|
+
...obj,
|
|
444
|
+
});
|
|
445
|
+
export const DeleteDistributionConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
446
|
+
...obj,
|
|
447
|
+
});
|
|
448
|
+
export const DeleteDistributionConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
449
|
+
...obj,
|
|
450
|
+
});
|
|
451
|
+
export const DeleteImageRequestFilterSensitiveLog = (obj) => ({
|
|
452
|
+
...obj,
|
|
453
|
+
});
|
|
454
|
+
export const DeleteImageResponseFilterSensitiveLog = (obj) => ({
|
|
455
|
+
...obj,
|
|
456
|
+
});
|
|
457
|
+
export const DeleteImagePipelineRequestFilterSensitiveLog = (obj) => ({
|
|
458
|
+
...obj,
|
|
459
|
+
});
|
|
460
|
+
export const DeleteImagePipelineResponseFilterSensitiveLog = (obj) => ({
|
|
461
|
+
...obj,
|
|
462
|
+
});
|
|
463
|
+
export const DeleteImageRecipeRequestFilterSensitiveLog = (obj) => ({
|
|
464
|
+
...obj,
|
|
465
|
+
});
|
|
466
|
+
export const DeleteImageRecipeResponseFilterSensitiveLog = (obj) => ({
|
|
467
|
+
...obj,
|
|
468
|
+
});
|
|
469
|
+
export const DeleteInfrastructureConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
470
|
+
...obj,
|
|
471
|
+
});
|
|
472
|
+
export const DeleteInfrastructureConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
473
|
+
...obj,
|
|
474
|
+
});
|
|
475
|
+
export const DistributionConfigurationFilterSensitiveLog = (obj) => ({
|
|
476
|
+
...obj,
|
|
477
|
+
});
|
|
478
|
+
export const DistributionConfigurationSummaryFilterSensitiveLog = (obj) => ({
|
|
479
|
+
...obj,
|
|
480
|
+
});
|
|
481
|
+
export const FilterFilterSensitiveLog = (obj) => ({
|
|
482
|
+
...obj,
|
|
483
|
+
});
|
|
484
|
+
export const GetComponentRequestFilterSensitiveLog = (obj) => ({
|
|
485
|
+
...obj,
|
|
486
|
+
});
|
|
487
|
+
export const GetComponentResponseFilterSensitiveLog = (obj) => ({
|
|
488
|
+
...obj,
|
|
489
|
+
});
|
|
490
|
+
export const GetComponentPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
491
|
+
...obj,
|
|
492
|
+
});
|
|
493
|
+
export const GetComponentPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
494
|
+
...obj,
|
|
495
|
+
});
|
|
496
|
+
export const GetContainerRecipeRequestFilterSensitiveLog = (obj) => ({
|
|
497
|
+
...obj,
|
|
498
|
+
});
|
|
499
|
+
export const GetContainerRecipeResponseFilterSensitiveLog = (obj) => ({
|
|
500
|
+
...obj,
|
|
501
|
+
});
|
|
502
|
+
export const GetContainerRecipePolicyRequestFilterSensitiveLog = (obj) => ({
|
|
503
|
+
...obj,
|
|
504
|
+
});
|
|
505
|
+
export const GetContainerRecipePolicyResponseFilterSensitiveLog = (obj) => ({
|
|
506
|
+
...obj,
|
|
507
|
+
});
|
|
508
|
+
export const GetDistributionConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
509
|
+
...obj,
|
|
510
|
+
});
|
|
511
|
+
export const GetDistributionConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
512
|
+
...obj,
|
|
513
|
+
});
|
|
514
|
+
export const GetImageRequestFilterSensitiveLog = (obj) => ({
|
|
515
|
+
...obj,
|
|
516
|
+
});
|
|
517
|
+
export const ImageRecipeFilterSensitiveLog = (obj) => ({
|
|
518
|
+
...obj,
|
|
519
|
+
});
|
|
520
|
+
export const InfrastructureConfigurationFilterSensitiveLog = (obj) => ({
|
|
521
|
+
...obj,
|
|
522
|
+
});
|
|
523
|
+
export const OutputResourcesFilterSensitiveLog = (obj) => ({
|
|
524
|
+
...obj,
|
|
525
|
+
});
|
|
526
|
+
export const ImageFilterSensitiveLog = (obj) => ({
|
|
527
|
+
...obj,
|
|
528
|
+
});
|
|
529
|
+
export const GetImageResponseFilterSensitiveLog = (obj) => ({
|
|
530
|
+
...obj,
|
|
531
|
+
});
|
|
532
|
+
export const GetImagePipelineRequestFilterSensitiveLog = (obj) => ({
|
|
533
|
+
...obj,
|
|
534
|
+
});
|
|
535
|
+
export const ImagePipelineFilterSensitiveLog = (obj) => ({
|
|
536
|
+
...obj,
|
|
537
|
+
});
|
|
538
|
+
export const GetImagePipelineResponseFilterSensitiveLog = (obj) => ({
|
|
539
|
+
...obj,
|
|
540
|
+
});
|
|
541
|
+
export const GetImagePolicyRequestFilterSensitiveLog = (obj) => ({
|
|
542
|
+
...obj,
|
|
543
|
+
});
|
|
544
|
+
export const GetImagePolicyResponseFilterSensitiveLog = (obj) => ({
|
|
545
|
+
...obj,
|
|
546
|
+
});
|
|
547
|
+
export const GetImageRecipeRequestFilterSensitiveLog = (obj) => ({
|
|
548
|
+
...obj,
|
|
549
|
+
});
|
|
550
|
+
export const GetImageRecipeResponseFilterSensitiveLog = (obj) => ({
|
|
551
|
+
...obj,
|
|
552
|
+
});
|
|
553
|
+
export const GetImageRecipePolicyRequestFilterSensitiveLog = (obj) => ({
|
|
554
|
+
...obj,
|
|
555
|
+
});
|
|
556
|
+
export const GetImageRecipePolicyResponseFilterSensitiveLog = (obj) => ({
|
|
557
|
+
...obj,
|
|
558
|
+
});
|
|
559
|
+
export const GetInfrastructureConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
560
|
+
...obj,
|
|
561
|
+
});
|
|
562
|
+
export const GetInfrastructureConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
563
|
+
...obj,
|
|
564
|
+
});
|
|
565
|
+
export const ImportComponentRequestFilterSensitiveLog = (obj) => ({
|
|
566
|
+
...obj,
|
|
567
|
+
});
|
|
568
|
+
export const ImportComponentResponseFilterSensitiveLog = (obj) => ({
|
|
569
|
+
...obj,
|
|
570
|
+
});
|
|
571
|
+
export const ImportVmImageRequestFilterSensitiveLog = (obj) => ({
|
|
572
|
+
...obj,
|
|
573
|
+
});
|
|
574
|
+
export const ImportVmImageResponseFilterSensitiveLog = (obj) => ({
|
|
575
|
+
...obj,
|
|
576
|
+
});
|
|
577
|
+
export const ListComponentBuildVersionsRequestFilterSensitiveLog = (obj) => ({
|
|
578
|
+
...obj,
|
|
579
|
+
});
|
|
580
|
+
export const ListComponentBuildVersionsResponseFilterSensitiveLog = (obj) => ({
|
|
581
|
+
...obj,
|
|
582
|
+
});
|
|
583
|
+
export const ListComponentsRequestFilterSensitiveLog = (obj) => ({
|
|
584
|
+
...obj,
|
|
585
|
+
});
|
|
586
|
+
export const ListComponentsResponseFilterSensitiveLog = (obj) => ({
|
|
587
|
+
...obj,
|
|
588
|
+
});
|
|
589
|
+
export const ListContainerRecipesRequestFilterSensitiveLog = (obj) => ({
|
|
590
|
+
...obj,
|
|
591
|
+
});
|
|
592
|
+
export const ListContainerRecipesResponseFilterSensitiveLog = (obj) => ({
|
|
593
|
+
...obj,
|
|
594
|
+
});
|
|
595
|
+
export const ListDistributionConfigurationsRequestFilterSensitiveLog = (obj) => ({
|
|
596
|
+
...obj,
|
|
597
|
+
});
|
|
598
|
+
export const ListDistributionConfigurationsResponseFilterSensitiveLog = (obj) => ({
|
|
599
|
+
...obj,
|
|
600
|
+
});
|
|
601
|
+
export const ListImageBuildVersionsRequestFilterSensitiveLog = (obj) => ({
|
|
602
|
+
...obj,
|
|
603
|
+
});
|
|
604
|
+
export const ImageSummaryFilterSensitiveLog = (obj) => ({
|
|
605
|
+
...obj,
|
|
606
|
+
});
|
|
607
|
+
export const ListImageBuildVersionsResponseFilterSensitiveLog = (obj) => ({
|
|
608
|
+
...obj,
|
|
609
|
+
});
|
|
610
|
+
export const ListImagePackagesRequestFilterSensitiveLog = (obj) => ({
|
|
611
|
+
...obj,
|
|
612
|
+
});
|
|
613
|
+
export const ImagePackageFilterSensitiveLog = (obj) => ({
|
|
614
|
+
...obj,
|
|
615
|
+
});
|
|
616
|
+
export const ListImagePackagesResponseFilterSensitiveLog = (obj) => ({
|
|
617
|
+
...obj,
|
|
618
|
+
});
|
|
619
|
+
export const ListImagePipelineImagesRequestFilterSensitiveLog = (obj) => ({
|
|
620
|
+
...obj,
|
|
621
|
+
});
|
|
622
|
+
export const ListImagePipelineImagesResponseFilterSensitiveLog = (obj) => ({
|
|
623
|
+
...obj,
|
|
624
|
+
});
|
|
625
|
+
export const ListImagePipelinesRequestFilterSensitiveLog = (obj) => ({
|
|
626
|
+
...obj,
|
|
627
|
+
});
|
|
628
|
+
export const ListImagePipelinesResponseFilterSensitiveLog = (obj) => ({
|
|
629
|
+
...obj,
|
|
630
|
+
});
|
|
631
|
+
export const ListImageRecipesRequestFilterSensitiveLog = (obj) => ({
|
|
632
|
+
...obj,
|
|
633
|
+
});
|
|
634
|
+
export const ImageRecipeSummaryFilterSensitiveLog = (obj) => ({
|
|
635
|
+
...obj,
|
|
636
|
+
});
|
|
637
|
+
export const ListImageRecipesResponseFilterSensitiveLog = (obj) => ({
|
|
638
|
+
...obj,
|
|
639
|
+
});
|
|
640
|
+
export const ListImagesRequestFilterSensitiveLog = (obj) => ({
|
|
641
|
+
...obj,
|
|
642
|
+
});
|
|
643
|
+
export const ImageVersionFilterSensitiveLog = (obj) => ({
|
|
644
|
+
...obj,
|
|
645
|
+
});
|
|
646
|
+
export const ListImagesResponseFilterSensitiveLog = (obj) => ({
|
|
647
|
+
...obj,
|
|
648
|
+
});
|
|
649
|
+
export const ListInfrastructureConfigurationsRequestFilterSensitiveLog = (obj) => ({
|
|
650
|
+
...obj,
|
|
651
|
+
});
|
|
652
|
+
export const InfrastructureConfigurationSummaryFilterSensitiveLog = (obj) => ({
|
|
653
|
+
...obj,
|
|
654
|
+
});
|
|
655
|
+
export const ListInfrastructureConfigurationsResponseFilterSensitiveLog = (obj) => ({
|
|
656
|
+
...obj,
|
|
657
|
+
});
|
|
658
|
+
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
659
|
+
...obj,
|
|
660
|
+
});
|
|
661
|
+
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
662
|
+
...obj,
|
|
663
|
+
});
|
|
664
|
+
export const PutComponentPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
665
|
+
...obj,
|
|
666
|
+
});
|
|
667
|
+
export const PutComponentPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
668
|
+
...obj,
|
|
669
|
+
});
|
|
670
|
+
export const PutContainerRecipePolicyRequestFilterSensitiveLog = (obj) => ({
|
|
671
|
+
...obj,
|
|
672
|
+
});
|
|
673
|
+
export const PutContainerRecipePolicyResponseFilterSensitiveLog = (obj) => ({
|
|
674
|
+
...obj,
|
|
675
|
+
});
|
|
676
|
+
export const PutImagePolicyRequestFilterSensitiveLog = (obj) => ({
|
|
677
|
+
...obj,
|
|
678
|
+
});
|
|
679
|
+
export const PutImagePolicyResponseFilterSensitiveLog = (obj) => ({
|
|
680
|
+
...obj,
|
|
681
|
+
});
|
|
682
|
+
export const PutImageRecipePolicyRequestFilterSensitiveLog = (obj) => ({
|
|
683
|
+
...obj,
|
|
684
|
+
});
|
|
685
|
+
export const PutImageRecipePolicyResponseFilterSensitiveLog = (obj) => ({
|
|
686
|
+
...obj,
|
|
687
|
+
});
|
|
688
|
+
export const StartImagePipelineExecutionRequestFilterSensitiveLog = (obj) => ({
|
|
689
|
+
...obj,
|
|
690
|
+
});
|
|
691
|
+
export const StartImagePipelineExecutionResponseFilterSensitiveLog = (obj) => ({
|
|
692
|
+
...obj,
|
|
693
|
+
});
|
|
694
|
+
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
695
|
+
...obj,
|
|
696
|
+
});
|
|
697
|
+
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
698
|
+
...obj,
|
|
699
|
+
});
|
|
700
|
+
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
701
|
+
...obj,
|
|
702
|
+
});
|
|
703
|
+
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
704
|
+
...obj,
|
|
705
|
+
});
|
|
706
|
+
export const UpdateDistributionConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
707
|
+
...obj,
|
|
708
|
+
});
|
|
709
|
+
export const UpdateDistributionConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
710
|
+
...obj,
|
|
711
|
+
});
|
|
712
|
+
export const UpdateImagePipelineRequestFilterSensitiveLog = (obj) => ({
|
|
713
|
+
...obj,
|
|
714
|
+
});
|
|
715
|
+
export const UpdateImagePipelineResponseFilterSensitiveLog = (obj) => ({
|
|
716
|
+
...obj,
|
|
717
|
+
});
|
|
718
|
+
export const UpdateInfrastructureConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
719
|
+
...obj,
|
|
720
|
+
});
|
|
721
|
+
export const UpdateInfrastructureConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
722
|
+
...obj,
|
|
723
|
+
});
|