@aws-sdk/client-appintegrations 3.183.0 → 3.186.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 +19 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/AppIntegrations.js +69 -62
- package/dist-es/AppIntegrationsClient.js +28 -22
- package/dist-es/commands/CreateDataIntegrationCommand.js +28 -21
- package/dist-es/commands/CreateEventIntegrationCommand.js +28 -21
- package/dist-es/commands/DeleteDataIntegrationCommand.js +28 -21
- package/dist-es/commands/DeleteEventIntegrationCommand.js +28 -21
- package/dist-es/commands/GetDataIntegrationCommand.js +28 -21
- package/dist-es/commands/GetEventIntegrationCommand.js +28 -21
- package/dist-es/commands/ListDataIntegrationAssociationsCommand.js +28 -21
- package/dist-es/commands/ListDataIntegrationsCommand.js +28 -21
- package/dist-es/commands/ListEventIntegrationAssociationsCommand.js +28 -21
- package/dist-es/commands/ListEventIntegrationsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateDataIntegrationCommand.js +28 -21
- package/dist-es/commands/UpdateEventIntegrationCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/AppIntegrationsServiceException.js +10 -5
- package/dist-es/models/models_0.js +121 -192
- package/dist-es/protocols/Aws_restJson1.js +1608 -1138
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +33 -33
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { UpdateEventIntegrationRequestFilterSensitiveLog, UpdateEventIntegrationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1UpdateEventIntegrationCommand, serializeAws_restJson1UpdateEventIntegrationCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var UpdateEventIntegrationCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateEventIntegrationCommand, _super);
|
|
8
|
+
function UpdateEventIntegrationCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
UpdateEventIntegrationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "AppIntegrationsClient";
|
|
18
|
+
var commandName = "UpdateEventIntegrationCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: UpdateEventIntegrationRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: UpdateEventIntegrationResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UpdateEventIntegrationCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1UpdateEventIntegrationCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
UpdateEventIntegrationCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1UpdateEventIntegrationCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return UpdateEventIntegrationCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateEventIntegrationCommand };
|
package/dist-es/endpoints.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { __assign, __awaiter, __generator } from "tslib";
|
|
1
2
|
import { getRegionInfo } from "@aws-sdk/config-resolver";
|
|
2
|
-
|
|
3
|
-
|
|
3
|
+
var regionHash = {};
|
|
4
|
+
var partitionHash = {
|
|
4
5
|
aws: {
|
|
5
6
|
regions: [
|
|
6
7
|
"af-south-1",
|
|
@@ -120,9 +121,8 @@ const partitionHash = {
|
|
|
120
121
|
],
|
|
121
122
|
},
|
|
122
123
|
};
|
|
123
|
-
export
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
});
|
|
124
|
+
export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
|
|
125
|
+
return __generator(this, function (_a) {
|
|
126
|
+
return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "app-integrations", regionHash: regionHash, partitionHash: partitionHash }))];
|
|
127
|
+
});
|
|
128
|
+
}); };
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
var AppIntegrationsServiceException = (function (_super) {
|
|
4
|
+
__extends(AppIntegrationsServiceException, _super);
|
|
5
|
+
function AppIntegrationsServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, AppIntegrationsServiceException.prototype);
|
|
8
|
+
return _this;
|
|
6
9
|
}
|
|
7
|
-
|
|
10
|
+
return AppIntegrationsServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { AppIntegrationsServiceException };
|
|
@@ -1,200 +1,129 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { AppIntegrationsServiceException as __BaseException } from "./AppIntegrationsServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
this.Message = opts.Message;
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
return _this;
|
|
13
12
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
13
|
+
return AccessDeniedException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { AccessDeniedException };
|
|
16
|
+
var DuplicateResourceException = (function (_super) {
|
|
17
|
+
__extends(DuplicateResourceException, _super);
|
|
18
|
+
function DuplicateResourceException(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "DuplicateResourceException", $fault: "client" }, opts)) || this;
|
|
20
|
+
_this.name = "DuplicateResourceException";
|
|
21
|
+
_this.$fault = "client";
|
|
22
|
+
Object.setPrototypeOf(_this, DuplicateResourceException.prototype);
|
|
23
|
+
_this.Message = opts.Message;
|
|
24
|
+
return _this;
|
|
26
25
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
26
|
+
return DuplicateResourceException;
|
|
27
|
+
}(__BaseException));
|
|
28
|
+
export { DuplicateResourceException };
|
|
29
|
+
var InternalServiceError = (function (_super) {
|
|
30
|
+
__extends(InternalServiceError, _super);
|
|
31
|
+
function InternalServiceError(opts) {
|
|
32
|
+
var _this = _super.call(this, __assign({ name: "InternalServiceError", $fault: "server" }, opts)) || this;
|
|
33
|
+
_this.name = "InternalServiceError";
|
|
34
|
+
_this.$fault = "server";
|
|
35
|
+
Object.setPrototypeOf(_this, InternalServiceError.prototype);
|
|
36
|
+
_this.Message = opts.Message;
|
|
37
|
+
return _this;
|
|
39
38
|
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
39
|
+
return InternalServiceError;
|
|
40
|
+
}(__BaseException));
|
|
41
|
+
export { InternalServiceError };
|
|
42
|
+
var InvalidRequestException = (function (_super) {
|
|
43
|
+
__extends(InvalidRequestException, _super);
|
|
44
|
+
function InvalidRequestException(opts) {
|
|
45
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
|
|
46
|
+
_this.name = "InvalidRequestException";
|
|
47
|
+
_this.$fault = "client";
|
|
48
|
+
Object.setPrototypeOf(_this, InvalidRequestException.prototype);
|
|
49
|
+
_this.Message = opts.Message;
|
|
50
|
+
return _this;
|
|
52
51
|
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
52
|
+
return InvalidRequestException;
|
|
53
|
+
}(__BaseException));
|
|
54
|
+
export { InvalidRequestException };
|
|
55
|
+
var ResourceQuotaExceededException = (function (_super) {
|
|
56
|
+
__extends(ResourceQuotaExceededException, _super);
|
|
57
|
+
function ResourceQuotaExceededException(opts) {
|
|
58
|
+
var _this = _super.call(this, __assign({ name: "ResourceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
59
|
+
_this.name = "ResourceQuotaExceededException";
|
|
60
|
+
_this.$fault = "client";
|
|
61
|
+
Object.setPrototypeOf(_this, ResourceQuotaExceededException.prototype);
|
|
62
|
+
_this.Message = opts.Message;
|
|
63
|
+
return _this;
|
|
65
64
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
65
|
+
return ResourceQuotaExceededException;
|
|
66
|
+
}(__BaseException));
|
|
67
|
+
export { ResourceQuotaExceededException };
|
|
68
|
+
var ThrottlingException = (function (_super) {
|
|
69
|
+
__extends(ThrottlingException, _super);
|
|
70
|
+
function ThrottlingException(opts) {
|
|
71
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
72
|
+
_this.name = "ThrottlingException";
|
|
73
|
+
_this.$fault = "client";
|
|
74
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
75
|
+
_this.Message = opts.Message;
|
|
76
|
+
return _this;
|
|
78
77
|
}
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
78
|
+
return ThrottlingException;
|
|
79
|
+
}(__BaseException));
|
|
80
|
+
export { ThrottlingException };
|
|
81
|
+
var ResourceNotFoundException = (function (_super) {
|
|
82
|
+
__extends(ResourceNotFoundException, _super);
|
|
83
|
+
function ResourceNotFoundException(opts) {
|
|
84
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
85
|
+
_this.name = "ResourceNotFoundException";
|
|
86
|
+
_this.$fault = "client";
|
|
87
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
88
|
+
_this.Message = opts.Message;
|
|
89
|
+
return _this;
|
|
91
90
|
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
});
|
|
96
|
-
export
|
|
97
|
-
|
|
98
|
-
});
|
|
99
|
-
export
|
|
100
|
-
|
|
101
|
-
});
|
|
102
|
-
export
|
|
103
|
-
|
|
104
|
-
});
|
|
105
|
-
export
|
|
106
|
-
|
|
107
|
-
});
|
|
108
|
-
export
|
|
109
|
-
|
|
110
|
-
});
|
|
111
|
-
export
|
|
112
|
-
|
|
113
|
-
});
|
|
114
|
-
export
|
|
115
|
-
|
|
116
|
-
});
|
|
117
|
-
export
|
|
118
|
-
|
|
119
|
-
});
|
|
120
|
-
export
|
|
121
|
-
|
|
122
|
-
});
|
|
123
|
-
export
|
|
124
|
-
|
|
125
|
-
});
|
|
126
|
-
export
|
|
127
|
-
|
|
128
|
-
});
|
|
129
|
-
export
|
|
130
|
-
|
|
131
|
-
});
|
|
132
|
-
export const GetEventIntegrationResponseFilterSensitiveLog = (obj) => ({
|
|
133
|
-
...obj,
|
|
134
|
-
});
|
|
135
|
-
export const ListDataIntegrationAssociationsRequestFilterSensitiveLog = (obj) => ({
|
|
136
|
-
...obj,
|
|
137
|
-
});
|
|
138
|
-
export const DataIntegrationAssociationSummaryFilterSensitiveLog = (obj) => ({
|
|
139
|
-
...obj,
|
|
140
|
-
});
|
|
141
|
-
export const ListDataIntegrationAssociationsResponseFilterSensitiveLog = (obj) => ({
|
|
142
|
-
...obj,
|
|
143
|
-
});
|
|
144
|
-
export const ListDataIntegrationsRequestFilterSensitiveLog = (obj) => ({
|
|
145
|
-
...obj,
|
|
146
|
-
});
|
|
147
|
-
export const DataIntegrationSummaryFilterSensitiveLog = (obj) => ({
|
|
148
|
-
...obj,
|
|
149
|
-
});
|
|
150
|
-
export const ListDataIntegrationsResponseFilterSensitiveLog = (obj) => ({
|
|
151
|
-
...obj,
|
|
152
|
-
});
|
|
153
|
-
export const ListEventIntegrationAssociationsRequestFilterSensitiveLog = (obj) => ({
|
|
154
|
-
...obj,
|
|
155
|
-
});
|
|
156
|
-
export const EventIntegrationAssociationFilterSensitiveLog = (obj) => ({
|
|
157
|
-
...obj,
|
|
158
|
-
});
|
|
159
|
-
export const ListEventIntegrationAssociationsResponseFilterSensitiveLog = (obj) => ({
|
|
160
|
-
...obj,
|
|
161
|
-
});
|
|
162
|
-
export const ListEventIntegrationsRequestFilterSensitiveLog = (obj) => ({
|
|
163
|
-
...obj,
|
|
164
|
-
});
|
|
165
|
-
export const EventIntegrationFilterSensitiveLog = (obj) => ({
|
|
166
|
-
...obj,
|
|
167
|
-
});
|
|
168
|
-
export const ListEventIntegrationsResponseFilterSensitiveLog = (obj) => ({
|
|
169
|
-
...obj,
|
|
170
|
-
});
|
|
171
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
172
|
-
...obj,
|
|
173
|
-
});
|
|
174
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
175
|
-
...obj,
|
|
176
|
-
});
|
|
177
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
178
|
-
...obj,
|
|
179
|
-
});
|
|
180
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
181
|
-
...obj,
|
|
182
|
-
});
|
|
183
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
184
|
-
...obj,
|
|
185
|
-
});
|
|
186
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
187
|
-
...obj,
|
|
188
|
-
});
|
|
189
|
-
export const UpdateDataIntegrationRequestFilterSensitiveLog = (obj) => ({
|
|
190
|
-
...obj,
|
|
191
|
-
});
|
|
192
|
-
export const UpdateDataIntegrationResponseFilterSensitiveLog = (obj) => ({
|
|
193
|
-
...obj,
|
|
194
|
-
});
|
|
195
|
-
export const UpdateEventIntegrationRequestFilterSensitiveLog = (obj) => ({
|
|
196
|
-
...obj,
|
|
197
|
-
});
|
|
198
|
-
export const UpdateEventIntegrationResponseFilterSensitiveLog = (obj) => ({
|
|
199
|
-
...obj,
|
|
200
|
-
});
|
|
91
|
+
return ResourceNotFoundException;
|
|
92
|
+
}(__BaseException));
|
|
93
|
+
export { ResourceNotFoundException };
|
|
94
|
+
export var ScheduleConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
95
|
+
export var CreateDataIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
96
|
+
export var CreateDataIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
97
|
+
export var EventFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
98
|
+
export var CreateEventIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
99
|
+
export var CreateEventIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
100
|
+
export var DeleteDataIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
101
|
+
export var DeleteDataIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
102
|
+
export var DeleteEventIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
103
|
+
export var DeleteEventIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
104
|
+
export var GetDataIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
105
|
+
export var GetDataIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
106
|
+
export var GetEventIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
107
|
+
export var GetEventIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
108
|
+
export var ListDataIntegrationAssociationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
109
|
+
export var DataIntegrationAssociationSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
110
|
+
export var ListDataIntegrationAssociationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
111
|
+
export var ListDataIntegrationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
112
|
+
export var DataIntegrationSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
113
|
+
export var ListDataIntegrationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
114
|
+
export var ListEventIntegrationAssociationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
115
|
+
export var EventIntegrationAssociationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
116
|
+
export var ListEventIntegrationAssociationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
117
|
+
export var ListEventIntegrationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
118
|
+
export var EventIntegrationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
119
|
+
export var ListEventIntegrationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
120
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
121
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
122
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
123
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
124
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
125
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
126
|
+
export var UpdateDataIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
127
|
+
export var UpdateDataIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
128
|
+
export var UpdateEventIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
129
|
+
export var UpdateEventIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|