@aws-sdk/client-health 3.132.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/DescribeAffectedAccountsForOrganizationCommand.js +2 -2
- package/dist-cjs/commands/DescribeAffectedEntitiesCommand.js +2 -2
- package/dist-cjs/commands/DescribeAffectedEntitiesForOrganizationCommand.js +2 -2
- package/dist-cjs/commands/DescribeEntityAggregatesCommand.js +2 -2
- package/dist-cjs/commands/DescribeEventAggregatesCommand.js +2 -2
- package/dist-cjs/commands/DescribeEventDetailsCommand.js +2 -2
- package/dist-cjs/commands/DescribeEventDetailsForOrganizationCommand.js +2 -2
- package/dist-cjs/commands/DescribeEventTypesCommand.js +2 -2
- package/dist-cjs/commands/DescribeEventsCommand.js +2 -2
- package/dist-cjs/commands/DescribeEventsForOrganizationCommand.js +2 -2
- package/dist-cjs/commands/DescribeHealthServiceStatusForOrganizationCommand.js +1 -1
- package/dist-cjs/models/models_0.js +157 -235
- package/dist-cjs/protocols/Aws_json1_1.js +69 -168
- package/dist-es/commands/DescribeAffectedAccountsForOrganizationCommand.js +3 -3
- package/dist-es/commands/DescribeAffectedEntitiesCommand.js +3 -3
- package/dist-es/commands/DescribeAffectedEntitiesForOrganizationCommand.js +3 -3
- package/dist-es/commands/DescribeEntityAggregatesCommand.js +3 -3
- package/dist-es/commands/DescribeEventAggregatesCommand.js +3 -3
- package/dist-es/commands/DescribeEventDetailsCommand.js +3 -3
- package/dist-es/commands/DescribeEventDetailsForOrganizationCommand.js +3 -3
- package/dist-es/commands/DescribeEventTypesCommand.js +3 -3
- package/dist-es/commands/DescribeEventsCommand.js +3 -3
- package/dist-es/commands/DescribeEventsForOrganizationCommand.js +3 -3
- package/dist-es/commands/DescribeHealthServiceStatusForOrganizationCommand.js +2 -2
- package/dist-es/models/models_0.js +39 -156
- package/dist-es/protocols/Aws_json1_1.js +105 -169
- package/dist-types/models/models_0.d.ts +156 -234
- package/dist-types/ts3.4/models/models_0.d.ts +78 -156
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,39 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.142.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.141.0...v3.142.0) (2022-08-02)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **codegen:** general data mapping function ([#3830](https://github.com/aws/aws-sdk-js-v3/issues/3830)) ([9417eae](https://github.com/aws/aws-sdk-js-v3/commit/9417eae722806799fb4c15c07921574268c1165c))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.141.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.140.0...v3.141.0) (2022-08-01)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **clients:** update client endpoints as of 2022-08-01 ([aaf49f2](https://github.com/aws/aws-sdk-js-v3/commit/aaf49f21b371412e6ea7e00890b71a7b31991b66))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# [3.137.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.136.1...v3.137.0) (2022-07-26)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* **namespaces:** remove namespaces with only a log filter ([#3823](https://github.com/aws/aws-sdk-js-v3/issues/3823)) ([33e6822](https://github.com/aws/aws-sdk-js-v3/commit/33e68228fb64c53dd8f89e6be76dd5f46edc3cfd))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
6
39
|
# [3.132.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.131.0...v3.132.0) (2022-07-18)
|
|
7
40
|
|
|
8
41
|
|
package/README.md
CHANGED
|
@@ -213,7 +213,7 @@ try {
|
|
|
213
213
|
const data = await client.send(command);
|
|
214
214
|
// process data.
|
|
215
215
|
} catch (error) {
|
|
216
|
-
const { requestId, cfId, extendedRequestId } = error
|
|
216
|
+
const { requestId, cfId, extendedRequestId } = error.$$metadata;
|
|
217
217
|
console.log({ requestId, cfId, extendedRequestId });
|
|
218
218
|
/**
|
|
219
219
|
* The keys within exceptions are also parsed.
|
|
@@ -20,8 +20,8 @@ class DescribeAffectedAccountsForOrganizationCommand extends smithy_client_1.Com
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeAffectedAccountsForOrganizationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeAffectedAccountsForOrganizationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DescribeAffectedEntitiesCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeAffectedEntitiesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeAffectedEntitiesResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DescribeAffectedEntitiesForOrganizationCommand extends smithy_client_1.Com
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeAffectedEntitiesForOrganizationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeAffectedEntitiesForOrganizationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DescribeEntityAggregatesCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeEntityAggregatesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeEntityAggregatesResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DescribeEventAggregatesCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeEventAggregatesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeEventAggregatesResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DescribeEventDetailsCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeEventDetailsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeEventDetailsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DescribeEventDetailsForOrganizationCommand extends smithy_client_1.Command
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeEventDetailsForOrganizationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeEventDetailsForOrganizationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DescribeEventTypesCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeEventTypesRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeEventTypesResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DescribeEventsCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeEventsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeEventsResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DescribeEventsForOrganizationCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeEventsForOrganizationRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeEventsForOrganizationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -21,7 +21,7 @@ class DescribeHealthServiceStatusForOrganizationCommand extends smithy_client_1.
|
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
23
|
inputFilterSensitiveLog: (input) => input,
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeHealthServiceStatusForOrganizationResponseFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.DescribeHealthServiceStatusForOrganizationResponseFilterSensitiveLog = exports.DescribeEventTypesResponseFilterSensitiveLog = exports.EventTypeFilterSensitiveLog = exports.DescribeEventTypesRequestFilterSensitiveLog = exports.EventTypeFilterFilterSensitiveLog = exports.DescribeEventsForOrganizationResponseFilterSensitiveLog = exports.OrganizationEventFilterSensitiveLog = exports.DescribeEventsForOrganizationRequestFilterSensitiveLog = exports.OrganizationEventFilterFilterSensitiveLog = exports.DescribeEventsResponseFilterSensitiveLog = exports.DescribeEventsRequestFilterSensitiveLog = exports.DescribeEventDetailsForOrganizationResponseFilterSensitiveLog = exports.OrganizationEventDetailsFilterSensitiveLog = exports.OrganizationEventDetailsErrorItemFilterSensitiveLog = exports.DescribeEventDetailsForOrganizationRequestFilterSensitiveLog = exports.DescribeEventDetailsResponseFilterSensitiveLog = exports.EventDetailsFilterSensitiveLog = exports.EventDescriptionFilterSensitiveLog = exports.EventFilterSensitiveLog = exports.EventDetailsErrorItemFilterSensitiveLog = exports.DescribeEventDetailsRequestFilterSensitiveLog = exports.DescribeEventAggregatesResponseFilterSensitiveLog = exports.EventAggregateFilterSensitiveLog = exports.DescribeEventAggregatesRequestFilterSensitiveLog = exports.EventFilterFilterSensitiveLog = exports.DescribeEntityAggregatesResponseFilterSensitiveLog = exports.EntityAggregateFilterSensitiveLog = exports.DescribeEntityAggregatesRequestFilterSensitiveLog = exports.DescribeAffectedEntitiesForOrganizationResponseFilterSensitiveLog = exports.OrganizationAffectedEntitiesErrorItemFilterSensitiveLog = exports.DescribeAffectedEntitiesForOrganizationRequestFilterSensitiveLog = exports.EventAccountFilterFilterSensitiveLog = exports.DescribeAffectedEntitiesResponseFilterSensitiveLog = exports.DescribeAffectedEntitiesRequestFilterSensitiveLog = exports.EntityFilterFilterSensitiveLog = exports.DateTimeRangeFilterSensitiveLog = exports.DescribeAffectedAccountsForOrganizationResponseFilterSensitiveLog = exports.DescribeAffectedAccountsForOrganizationRequestFilterSensitiveLog = exports.AffectedEntityFilterSensitiveLog = exports.ConcurrentModificationException = exports.EventTypeCategory = exports.EventStatusCode = exports.EventAggregateField = exports.UnsupportedLocale = exports.InvalidPaginationToken = exports.EventScopeCode = exports.EntityStatusCode = void 0;
|
|
4
4
|
const HealthServiceException_1 = require("./HealthServiceException");
|
|
5
5
|
var EntityStatusCode;
|
|
6
6
|
(function (EntityStatusCode) {
|
|
@@ -8,30 +8,12 @@ var EntityStatusCode;
|
|
|
8
8
|
EntityStatusCode["UNIMPAIRED"] = "UNIMPAIRED";
|
|
9
9
|
EntityStatusCode["UNKNOWN"] = "UNKNOWN";
|
|
10
10
|
})(EntityStatusCode = exports.EntityStatusCode || (exports.EntityStatusCode = {}));
|
|
11
|
-
var AffectedEntity;
|
|
12
|
-
(function (AffectedEntity) {
|
|
13
|
-
AffectedEntity.filterSensitiveLog = (obj) => ({
|
|
14
|
-
...obj,
|
|
15
|
-
});
|
|
16
|
-
})(AffectedEntity = exports.AffectedEntity || (exports.AffectedEntity = {}));
|
|
17
|
-
var DescribeAffectedAccountsForOrganizationRequest;
|
|
18
|
-
(function (DescribeAffectedAccountsForOrganizationRequest) {
|
|
19
|
-
DescribeAffectedAccountsForOrganizationRequest.filterSensitiveLog = (obj) => ({
|
|
20
|
-
...obj,
|
|
21
|
-
});
|
|
22
|
-
})(DescribeAffectedAccountsForOrganizationRequest = exports.DescribeAffectedAccountsForOrganizationRequest || (exports.DescribeAffectedAccountsForOrganizationRequest = {}));
|
|
23
11
|
var EventScopeCode;
|
|
24
12
|
(function (EventScopeCode) {
|
|
25
13
|
EventScopeCode["ACCOUNT_SPECIFIC"] = "ACCOUNT_SPECIFIC";
|
|
26
14
|
EventScopeCode["NONE"] = "NONE";
|
|
27
15
|
EventScopeCode["PUBLIC"] = "PUBLIC";
|
|
28
16
|
})(EventScopeCode = exports.EventScopeCode || (exports.EventScopeCode = {}));
|
|
29
|
-
var DescribeAffectedAccountsForOrganizationResponse;
|
|
30
|
-
(function (DescribeAffectedAccountsForOrganizationResponse) {
|
|
31
|
-
DescribeAffectedAccountsForOrganizationResponse.filterSensitiveLog = (obj) => ({
|
|
32
|
-
...obj,
|
|
33
|
-
});
|
|
34
|
-
})(DescribeAffectedAccountsForOrganizationResponse = exports.DescribeAffectedAccountsForOrganizationResponse || (exports.DescribeAffectedAccountsForOrganizationResponse = {}));
|
|
35
17
|
class InvalidPaginationToken extends HealthServiceException_1.HealthServiceException {
|
|
36
18
|
constructor(opts) {
|
|
37
19
|
super({
|
|
@@ -45,30 +27,6 @@ class InvalidPaginationToken extends HealthServiceException_1.HealthServiceExcep
|
|
|
45
27
|
}
|
|
46
28
|
}
|
|
47
29
|
exports.InvalidPaginationToken = InvalidPaginationToken;
|
|
48
|
-
var DateTimeRange;
|
|
49
|
-
(function (DateTimeRange) {
|
|
50
|
-
DateTimeRange.filterSensitiveLog = (obj) => ({
|
|
51
|
-
...obj,
|
|
52
|
-
});
|
|
53
|
-
})(DateTimeRange = exports.DateTimeRange || (exports.DateTimeRange = {}));
|
|
54
|
-
var EntityFilter;
|
|
55
|
-
(function (EntityFilter) {
|
|
56
|
-
EntityFilter.filterSensitiveLog = (obj) => ({
|
|
57
|
-
...obj,
|
|
58
|
-
});
|
|
59
|
-
})(EntityFilter = exports.EntityFilter || (exports.EntityFilter = {}));
|
|
60
|
-
var DescribeAffectedEntitiesRequest;
|
|
61
|
-
(function (DescribeAffectedEntitiesRequest) {
|
|
62
|
-
DescribeAffectedEntitiesRequest.filterSensitiveLog = (obj) => ({
|
|
63
|
-
...obj,
|
|
64
|
-
});
|
|
65
|
-
})(DescribeAffectedEntitiesRequest = exports.DescribeAffectedEntitiesRequest || (exports.DescribeAffectedEntitiesRequest = {}));
|
|
66
|
-
var DescribeAffectedEntitiesResponse;
|
|
67
|
-
(function (DescribeAffectedEntitiesResponse) {
|
|
68
|
-
DescribeAffectedEntitiesResponse.filterSensitiveLog = (obj) => ({
|
|
69
|
-
...obj,
|
|
70
|
-
});
|
|
71
|
-
})(DescribeAffectedEntitiesResponse = exports.DescribeAffectedEntitiesResponse || (exports.DescribeAffectedEntitiesResponse = {}));
|
|
72
30
|
class UnsupportedLocale extends HealthServiceException_1.HealthServiceException {
|
|
73
31
|
constructor(opts) {
|
|
74
32
|
super({
|
|
@@ -82,48 +40,6 @@ class UnsupportedLocale extends HealthServiceException_1.HealthServiceException
|
|
|
82
40
|
}
|
|
83
41
|
}
|
|
84
42
|
exports.UnsupportedLocale = UnsupportedLocale;
|
|
85
|
-
var EventAccountFilter;
|
|
86
|
-
(function (EventAccountFilter) {
|
|
87
|
-
EventAccountFilter.filterSensitiveLog = (obj) => ({
|
|
88
|
-
...obj,
|
|
89
|
-
});
|
|
90
|
-
})(EventAccountFilter = exports.EventAccountFilter || (exports.EventAccountFilter = {}));
|
|
91
|
-
var DescribeAffectedEntitiesForOrganizationRequest;
|
|
92
|
-
(function (DescribeAffectedEntitiesForOrganizationRequest) {
|
|
93
|
-
DescribeAffectedEntitiesForOrganizationRequest.filterSensitiveLog = (obj) => ({
|
|
94
|
-
...obj,
|
|
95
|
-
});
|
|
96
|
-
})(DescribeAffectedEntitiesForOrganizationRequest = exports.DescribeAffectedEntitiesForOrganizationRequest || (exports.DescribeAffectedEntitiesForOrganizationRequest = {}));
|
|
97
|
-
var OrganizationAffectedEntitiesErrorItem;
|
|
98
|
-
(function (OrganizationAffectedEntitiesErrorItem) {
|
|
99
|
-
OrganizationAffectedEntitiesErrorItem.filterSensitiveLog = (obj) => ({
|
|
100
|
-
...obj,
|
|
101
|
-
});
|
|
102
|
-
})(OrganizationAffectedEntitiesErrorItem = exports.OrganizationAffectedEntitiesErrorItem || (exports.OrganizationAffectedEntitiesErrorItem = {}));
|
|
103
|
-
var DescribeAffectedEntitiesForOrganizationResponse;
|
|
104
|
-
(function (DescribeAffectedEntitiesForOrganizationResponse) {
|
|
105
|
-
DescribeAffectedEntitiesForOrganizationResponse.filterSensitiveLog = (obj) => ({
|
|
106
|
-
...obj,
|
|
107
|
-
});
|
|
108
|
-
})(DescribeAffectedEntitiesForOrganizationResponse = exports.DescribeAffectedEntitiesForOrganizationResponse || (exports.DescribeAffectedEntitiesForOrganizationResponse = {}));
|
|
109
|
-
var DescribeEntityAggregatesRequest;
|
|
110
|
-
(function (DescribeEntityAggregatesRequest) {
|
|
111
|
-
DescribeEntityAggregatesRequest.filterSensitiveLog = (obj) => ({
|
|
112
|
-
...obj,
|
|
113
|
-
});
|
|
114
|
-
})(DescribeEntityAggregatesRequest = exports.DescribeEntityAggregatesRequest || (exports.DescribeEntityAggregatesRequest = {}));
|
|
115
|
-
var EntityAggregate;
|
|
116
|
-
(function (EntityAggregate) {
|
|
117
|
-
EntityAggregate.filterSensitiveLog = (obj) => ({
|
|
118
|
-
...obj,
|
|
119
|
-
});
|
|
120
|
-
})(EntityAggregate = exports.EntityAggregate || (exports.EntityAggregate = {}));
|
|
121
|
-
var DescribeEntityAggregatesResponse;
|
|
122
|
-
(function (DescribeEntityAggregatesResponse) {
|
|
123
|
-
DescribeEntityAggregatesResponse.filterSensitiveLog = (obj) => ({
|
|
124
|
-
...obj,
|
|
125
|
-
});
|
|
126
|
-
})(DescribeEntityAggregatesResponse = exports.DescribeEntityAggregatesResponse || (exports.DescribeEntityAggregatesResponse = {}));
|
|
127
43
|
var EventAggregateField;
|
|
128
44
|
(function (EventAggregateField) {
|
|
129
45
|
EventAggregateField["EventTypeCategory"] = "eventTypeCategory";
|
|
@@ -141,156 +57,6 @@ var EventTypeCategory;
|
|
|
141
57
|
EventTypeCategory["ISSUE"] = "issue";
|
|
142
58
|
EventTypeCategory["SCHEDULED_CHANGE"] = "scheduledChange";
|
|
143
59
|
})(EventTypeCategory = exports.EventTypeCategory || (exports.EventTypeCategory = {}));
|
|
144
|
-
var EventFilter;
|
|
145
|
-
(function (EventFilter) {
|
|
146
|
-
EventFilter.filterSensitiveLog = (obj) => ({
|
|
147
|
-
...obj,
|
|
148
|
-
});
|
|
149
|
-
})(EventFilter = exports.EventFilter || (exports.EventFilter = {}));
|
|
150
|
-
var DescribeEventAggregatesRequest;
|
|
151
|
-
(function (DescribeEventAggregatesRequest) {
|
|
152
|
-
DescribeEventAggregatesRequest.filterSensitiveLog = (obj) => ({
|
|
153
|
-
...obj,
|
|
154
|
-
});
|
|
155
|
-
})(DescribeEventAggregatesRequest = exports.DescribeEventAggregatesRequest || (exports.DescribeEventAggregatesRequest = {}));
|
|
156
|
-
var EventAggregate;
|
|
157
|
-
(function (EventAggregate) {
|
|
158
|
-
EventAggregate.filterSensitiveLog = (obj) => ({
|
|
159
|
-
...obj,
|
|
160
|
-
});
|
|
161
|
-
})(EventAggregate = exports.EventAggregate || (exports.EventAggregate = {}));
|
|
162
|
-
var DescribeEventAggregatesResponse;
|
|
163
|
-
(function (DescribeEventAggregatesResponse) {
|
|
164
|
-
DescribeEventAggregatesResponse.filterSensitiveLog = (obj) => ({
|
|
165
|
-
...obj,
|
|
166
|
-
});
|
|
167
|
-
})(DescribeEventAggregatesResponse = exports.DescribeEventAggregatesResponse || (exports.DescribeEventAggregatesResponse = {}));
|
|
168
|
-
var DescribeEventDetailsRequest;
|
|
169
|
-
(function (DescribeEventDetailsRequest) {
|
|
170
|
-
DescribeEventDetailsRequest.filterSensitiveLog = (obj) => ({
|
|
171
|
-
...obj,
|
|
172
|
-
});
|
|
173
|
-
})(DescribeEventDetailsRequest = exports.DescribeEventDetailsRequest || (exports.DescribeEventDetailsRequest = {}));
|
|
174
|
-
var EventDetailsErrorItem;
|
|
175
|
-
(function (EventDetailsErrorItem) {
|
|
176
|
-
EventDetailsErrorItem.filterSensitiveLog = (obj) => ({
|
|
177
|
-
...obj,
|
|
178
|
-
});
|
|
179
|
-
})(EventDetailsErrorItem = exports.EventDetailsErrorItem || (exports.EventDetailsErrorItem = {}));
|
|
180
|
-
var Event;
|
|
181
|
-
(function (Event) {
|
|
182
|
-
Event.filterSensitiveLog = (obj) => ({
|
|
183
|
-
...obj,
|
|
184
|
-
});
|
|
185
|
-
})(Event = exports.Event || (exports.Event = {}));
|
|
186
|
-
var EventDescription;
|
|
187
|
-
(function (EventDescription) {
|
|
188
|
-
EventDescription.filterSensitiveLog = (obj) => ({
|
|
189
|
-
...obj,
|
|
190
|
-
});
|
|
191
|
-
})(EventDescription = exports.EventDescription || (exports.EventDescription = {}));
|
|
192
|
-
var EventDetails;
|
|
193
|
-
(function (EventDetails) {
|
|
194
|
-
EventDetails.filterSensitiveLog = (obj) => ({
|
|
195
|
-
...obj,
|
|
196
|
-
});
|
|
197
|
-
})(EventDetails = exports.EventDetails || (exports.EventDetails = {}));
|
|
198
|
-
var DescribeEventDetailsResponse;
|
|
199
|
-
(function (DescribeEventDetailsResponse) {
|
|
200
|
-
DescribeEventDetailsResponse.filterSensitiveLog = (obj) => ({
|
|
201
|
-
...obj,
|
|
202
|
-
});
|
|
203
|
-
})(DescribeEventDetailsResponse = exports.DescribeEventDetailsResponse || (exports.DescribeEventDetailsResponse = {}));
|
|
204
|
-
var DescribeEventDetailsForOrganizationRequest;
|
|
205
|
-
(function (DescribeEventDetailsForOrganizationRequest) {
|
|
206
|
-
DescribeEventDetailsForOrganizationRequest.filterSensitiveLog = (obj) => ({
|
|
207
|
-
...obj,
|
|
208
|
-
});
|
|
209
|
-
})(DescribeEventDetailsForOrganizationRequest = exports.DescribeEventDetailsForOrganizationRequest || (exports.DescribeEventDetailsForOrganizationRequest = {}));
|
|
210
|
-
var OrganizationEventDetailsErrorItem;
|
|
211
|
-
(function (OrganizationEventDetailsErrorItem) {
|
|
212
|
-
OrganizationEventDetailsErrorItem.filterSensitiveLog = (obj) => ({
|
|
213
|
-
...obj,
|
|
214
|
-
});
|
|
215
|
-
})(OrganizationEventDetailsErrorItem = exports.OrganizationEventDetailsErrorItem || (exports.OrganizationEventDetailsErrorItem = {}));
|
|
216
|
-
var OrganizationEventDetails;
|
|
217
|
-
(function (OrganizationEventDetails) {
|
|
218
|
-
OrganizationEventDetails.filterSensitiveLog = (obj) => ({
|
|
219
|
-
...obj,
|
|
220
|
-
});
|
|
221
|
-
})(OrganizationEventDetails = exports.OrganizationEventDetails || (exports.OrganizationEventDetails = {}));
|
|
222
|
-
var DescribeEventDetailsForOrganizationResponse;
|
|
223
|
-
(function (DescribeEventDetailsForOrganizationResponse) {
|
|
224
|
-
DescribeEventDetailsForOrganizationResponse.filterSensitiveLog = (obj) => ({
|
|
225
|
-
...obj,
|
|
226
|
-
});
|
|
227
|
-
})(DescribeEventDetailsForOrganizationResponse = exports.DescribeEventDetailsForOrganizationResponse || (exports.DescribeEventDetailsForOrganizationResponse = {}));
|
|
228
|
-
var DescribeEventsRequest;
|
|
229
|
-
(function (DescribeEventsRequest) {
|
|
230
|
-
DescribeEventsRequest.filterSensitiveLog = (obj) => ({
|
|
231
|
-
...obj,
|
|
232
|
-
});
|
|
233
|
-
})(DescribeEventsRequest = exports.DescribeEventsRequest || (exports.DescribeEventsRequest = {}));
|
|
234
|
-
var DescribeEventsResponse;
|
|
235
|
-
(function (DescribeEventsResponse) {
|
|
236
|
-
DescribeEventsResponse.filterSensitiveLog = (obj) => ({
|
|
237
|
-
...obj,
|
|
238
|
-
});
|
|
239
|
-
})(DescribeEventsResponse = exports.DescribeEventsResponse || (exports.DescribeEventsResponse = {}));
|
|
240
|
-
var OrganizationEventFilter;
|
|
241
|
-
(function (OrganizationEventFilter) {
|
|
242
|
-
OrganizationEventFilter.filterSensitiveLog = (obj) => ({
|
|
243
|
-
...obj,
|
|
244
|
-
});
|
|
245
|
-
})(OrganizationEventFilter = exports.OrganizationEventFilter || (exports.OrganizationEventFilter = {}));
|
|
246
|
-
var DescribeEventsForOrganizationRequest;
|
|
247
|
-
(function (DescribeEventsForOrganizationRequest) {
|
|
248
|
-
DescribeEventsForOrganizationRequest.filterSensitiveLog = (obj) => ({
|
|
249
|
-
...obj,
|
|
250
|
-
});
|
|
251
|
-
})(DescribeEventsForOrganizationRequest = exports.DescribeEventsForOrganizationRequest || (exports.DescribeEventsForOrganizationRequest = {}));
|
|
252
|
-
var OrganizationEvent;
|
|
253
|
-
(function (OrganizationEvent) {
|
|
254
|
-
OrganizationEvent.filterSensitiveLog = (obj) => ({
|
|
255
|
-
...obj,
|
|
256
|
-
});
|
|
257
|
-
})(OrganizationEvent = exports.OrganizationEvent || (exports.OrganizationEvent = {}));
|
|
258
|
-
var DescribeEventsForOrganizationResponse;
|
|
259
|
-
(function (DescribeEventsForOrganizationResponse) {
|
|
260
|
-
DescribeEventsForOrganizationResponse.filterSensitiveLog = (obj) => ({
|
|
261
|
-
...obj,
|
|
262
|
-
});
|
|
263
|
-
})(DescribeEventsForOrganizationResponse = exports.DescribeEventsForOrganizationResponse || (exports.DescribeEventsForOrganizationResponse = {}));
|
|
264
|
-
var EventTypeFilter;
|
|
265
|
-
(function (EventTypeFilter) {
|
|
266
|
-
EventTypeFilter.filterSensitiveLog = (obj) => ({
|
|
267
|
-
...obj,
|
|
268
|
-
});
|
|
269
|
-
})(EventTypeFilter = exports.EventTypeFilter || (exports.EventTypeFilter = {}));
|
|
270
|
-
var DescribeEventTypesRequest;
|
|
271
|
-
(function (DescribeEventTypesRequest) {
|
|
272
|
-
DescribeEventTypesRequest.filterSensitiveLog = (obj) => ({
|
|
273
|
-
...obj,
|
|
274
|
-
});
|
|
275
|
-
})(DescribeEventTypesRequest = exports.DescribeEventTypesRequest || (exports.DescribeEventTypesRequest = {}));
|
|
276
|
-
var EventType;
|
|
277
|
-
(function (EventType) {
|
|
278
|
-
EventType.filterSensitiveLog = (obj) => ({
|
|
279
|
-
...obj,
|
|
280
|
-
});
|
|
281
|
-
})(EventType = exports.EventType || (exports.EventType = {}));
|
|
282
|
-
var DescribeEventTypesResponse;
|
|
283
|
-
(function (DescribeEventTypesResponse) {
|
|
284
|
-
DescribeEventTypesResponse.filterSensitiveLog = (obj) => ({
|
|
285
|
-
...obj,
|
|
286
|
-
});
|
|
287
|
-
})(DescribeEventTypesResponse = exports.DescribeEventTypesResponse || (exports.DescribeEventTypesResponse = {}));
|
|
288
|
-
var DescribeHealthServiceStatusForOrganizationResponse;
|
|
289
|
-
(function (DescribeHealthServiceStatusForOrganizationResponse) {
|
|
290
|
-
DescribeHealthServiceStatusForOrganizationResponse.filterSensitiveLog = (obj) => ({
|
|
291
|
-
...obj,
|
|
292
|
-
});
|
|
293
|
-
})(DescribeHealthServiceStatusForOrganizationResponse = exports.DescribeHealthServiceStatusForOrganizationResponse || (exports.DescribeHealthServiceStatusForOrganizationResponse = {}));
|
|
294
60
|
class ConcurrentModificationException extends HealthServiceException_1.HealthServiceException {
|
|
295
61
|
constructor(opts) {
|
|
296
62
|
super({
|
|
@@ -304,3 +70,159 @@ class ConcurrentModificationException extends HealthServiceException_1.HealthSer
|
|
|
304
70
|
}
|
|
305
71
|
}
|
|
306
72
|
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
73
|
+
const AffectedEntityFilterSensitiveLog = (obj) => ({
|
|
74
|
+
...obj,
|
|
75
|
+
});
|
|
76
|
+
exports.AffectedEntityFilterSensitiveLog = AffectedEntityFilterSensitiveLog;
|
|
77
|
+
const DescribeAffectedAccountsForOrganizationRequestFilterSensitiveLog = (obj) => ({
|
|
78
|
+
...obj,
|
|
79
|
+
});
|
|
80
|
+
exports.DescribeAffectedAccountsForOrganizationRequestFilterSensitiveLog = DescribeAffectedAccountsForOrganizationRequestFilterSensitiveLog;
|
|
81
|
+
const DescribeAffectedAccountsForOrganizationResponseFilterSensitiveLog = (obj) => ({
|
|
82
|
+
...obj,
|
|
83
|
+
});
|
|
84
|
+
exports.DescribeAffectedAccountsForOrganizationResponseFilterSensitiveLog = DescribeAffectedAccountsForOrganizationResponseFilterSensitiveLog;
|
|
85
|
+
const DateTimeRangeFilterSensitiveLog = (obj) => ({
|
|
86
|
+
...obj,
|
|
87
|
+
});
|
|
88
|
+
exports.DateTimeRangeFilterSensitiveLog = DateTimeRangeFilterSensitiveLog;
|
|
89
|
+
const EntityFilterFilterSensitiveLog = (obj) => ({
|
|
90
|
+
...obj,
|
|
91
|
+
});
|
|
92
|
+
exports.EntityFilterFilterSensitiveLog = EntityFilterFilterSensitiveLog;
|
|
93
|
+
const DescribeAffectedEntitiesRequestFilterSensitiveLog = (obj) => ({
|
|
94
|
+
...obj,
|
|
95
|
+
});
|
|
96
|
+
exports.DescribeAffectedEntitiesRequestFilterSensitiveLog = DescribeAffectedEntitiesRequestFilterSensitiveLog;
|
|
97
|
+
const DescribeAffectedEntitiesResponseFilterSensitiveLog = (obj) => ({
|
|
98
|
+
...obj,
|
|
99
|
+
});
|
|
100
|
+
exports.DescribeAffectedEntitiesResponseFilterSensitiveLog = DescribeAffectedEntitiesResponseFilterSensitiveLog;
|
|
101
|
+
const EventAccountFilterFilterSensitiveLog = (obj) => ({
|
|
102
|
+
...obj,
|
|
103
|
+
});
|
|
104
|
+
exports.EventAccountFilterFilterSensitiveLog = EventAccountFilterFilterSensitiveLog;
|
|
105
|
+
const DescribeAffectedEntitiesForOrganizationRequestFilterSensitiveLog = (obj) => ({
|
|
106
|
+
...obj,
|
|
107
|
+
});
|
|
108
|
+
exports.DescribeAffectedEntitiesForOrganizationRequestFilterSensitiveLog = DescribeAffectedEntitiesForOrganizationRequestFilterSensitiveLog;
|
|
109
|
+
const OrganizationAffectedEntitiesErrorItemFilterSensitiveLog = (obj) => ({
|
|
110
|
+
...obj,
|
|
111
|
+
});
|
|
112
|
+
exports.OrganizationAffectedEntitiesErrorItemFilterSensitiveLog = OrganizationAffectedEntitiesErrorItemFilterSensitiveLog;
|
|
113
|
+
const DescribeAffectedEntitiesForOrganizationResponseFilterSensitiveLog = (obj) => ({
|
|
114
|
+
...obj,
|
|
115
|
+
});
|
|
116
|
+
exports.DescribeAffectedEntitiesForOrganizationResponseFilterSensitiveLog = DescribeAffectedEntitiesForOrganizationResponseFilterSensitiveLog;
|
|
117
|
+
const DescribeEntityAggregatesRequestFilterSensitiveLog = (obj) => ({
|
|
118
|
+
...obj,
|
|
119
|
+
});
|
|
120
|
+
exports.DescribeEntityAggregatesRequestFilterSensitiveLog = DescribeEntityAggregatesRequestFilterSensitiveLog;
|
|
121
|
+
const EntityAggregateFilterSensitiveLog = (obj) => ({
|
|
122
|
+
...obj,
|
|
123
|
+
});
|
|
124
|
+
exports.EntityAggregateFilterSensitiveLog = EntityAggregateFilterSensitiveLog;
|
|
125
|
+
const DescribeEntityAggregatesResponseFilterSensitiveLog = (obj) => ({
|
|
126
|
+
...obj,
|
|
127
|
+
});
|
|
128
|
+
exports.DescribeEntityAggregatesResponseFilterSensitiveLog = DescribeEntityAggregatesResponseFilterSensitiveLog;
|
|
129
|
+
const EventFilterFilterSensitiveLog = (obj) => ({
|
|
130
|
+
...obj,
|
|
131
|
+
});
|
|
132
|
+
exports.EventFilterFilterSensitiveLog = EventFilterFilterSensitiveLog;
|
|
133
|
+
const DescribeEventAggregatesRequestFilterSensitiveLog = (obj) => ({
|
|
134
|
+
...obj,
|
|
135
|
+
});
|
|
136
|
+
exports.DescribeEventAggregatesRequestFilterSensitiveLog = DescribeEventAggregatesRequestFilterSensitiveLog;
|
|
137
|
+
const EventAggregateFilterSensitiveLog = (obj) => ({
|
|
138
|
+
...obj,
|
|
139
|
+
});
|
|
140
|
+
exports.EventAggregateFilterSensitiveLog = EventAggregateFilterSensitiveLog;
|
|
141
|
+
const DescribeEventAggregatesResponseFilterSensitiveLog = (obj) => ({
|
|
142
|
+
...obj,
|
|
143
|
+
});
|
|
144
|
+
exports.DescribeEventAggregatesResponseFilterSensitiveLog = DescribeEventAggregatesResponseFilterSensitiveLog;
|
|
145
|
+
const DescribeEventDetailsRequestFilterSensitiveLog = (obj) => ({
|
|
146
|
+
...obj,
|
|
147
|
+
});
|
|
148
|
+
exports.DescribeEventDetailsRequestFilterSensitiveLog = DescribeEventDetailsRequestFilterSensitiveLog;
|
|
149
|
+
const EventDetailsErrorItemFilterSensitiveLog = (obj) => ({
|
|
150
|
+
...obj,
|
|
151
|
+
});
|
|
152
|
+
exports.EventDetailsErrorItemFilterSensitiveLog = EventDetailsErrorItemFilterSensitiveLog;
|
|
153
|
+
const EventFilterSensitiveLog = (obj) => ({
|
|
154
|
+
...obj,
|
|
155
|
+
});
|
|
156
|
+
exports.EventFilterSensitiveLog = EventFilterSensitiveLog;
|
|
157
|
+
const EventDescriptionFilterSensitiveLog = (obj) => ({
|
|
158
|
+
...obj,
|
|
159
|
+
});
|
|
160
|
+
exports.EventDescriptionFilterSensitiveLog = EventDescriptionFilterSensitiveLog;
|
|
161
|
+
const EventDetailsFilterSensitiveLog = (obj) => ({
|
|
162
|
+
...obj,
|
|
163
|
+
});
|
|
164
|
+
exports.EventDetailsFilterSensitiveLog = EventDetailsFilterSensitiveLog;
|
|
165
|
+
const DescribeEventDetailsResponseFilterSensitiveLog = (obj) => ({
|
|
166
|
+
...obj,
|
|
167
|
+
});
|
|
168
|
+
exports.DescribeEventDetailsResponseFilterSensitiveLog = DescribeEventDetailsResponseFilterSensitiveLog;
|
|
169
|
+
const DescribeEventDetailsForOrganizationRequestFilterSensitiveLog = (obj) => ({
|
|
170
|
+
...obj,
|
|
171
|
+
});
|
|
172
|
+
exports.DescribeEventDetailsForOrganizationRequestFilterSensitiveLog = DescribeEventDetailsForOrganizationRequestFilterSensitiveLog;
|
|
173
|
+
const OrganizationEventDetailsErrorItemFilterSensitiveLog = (obj) => ({
|
|
174
|
+
...obj,
|
|
175
|
+
});
|
|
176
|
+
exports.OrganizationEventDetailsErrorItemFilterSensitiveLog = OrganizationEventDetailsErrorItemFilterSensitiveLog;
|
|
177
|
+
const OrganizationEventDetailsFilterSensitiveLog = (obj) => ({
|
|
178
|
+
...obj,
|
|
179
|
+
});
|
|
180
|
+
exports.OrganizationEventDetailsFilterSensitiveLog = OrganizationEventDetailsFilterSensitiveLog;
|
|
181
|
+
const DescribeEventDetailsForOrganizationResponseFilterSensitiveLog = (obj) => ({
|
|
182
|
+
...obj,
|
|
183
|
+
});
|
|
184
|
+
exports.DescribeEventDetailsForOrganizationResponseFilterSensitiveLog = DescribeEventDetailsForOrganizationResponseFilterSensitiveLog;
|
|
185
|
+
const DescribeEventsRequestFilterSensitiveLog = (obj) => ({
|
|
186
|
+
...obj,
|
|
187
|
+
});
|
|
188
|
+
exports.DescribeEventsRequestFilterSensitiveLog = DescribeEventsRequestFilterSensitiveLog;
|
|
189
|
+
const DescribeEventsResponseFilterSensitiveLog = (obj) => ({
|
|
190
|
+
...obj,
|
|
191
|
+
});
|
|
192
|
+
exports.DescribeEventsResponseFilterSensitiveLog = DescribeEventsResponseFilterSensitiveLog;
|
|
193
|
+
const OrganizationEventFilterFilterSensitiveLog = (obj) => ({
|
|
194
|
+
...obj,
|
|
195
|
+
});
|
|
196
|
+
exports.OrganizationEventFilterFilterSensitiveLog = OrganizationEventFilterFilterSensitiveLog;
|
|
197
|
+
const DescribeEventsForOrganizationRequestFilterSensitiveLog = (obj) => ({
|
|
198
|
+
...obj,
|
|
199
|
+
});
|
|
200
|
+
exports.DescribeEventsForOrganizationRequestFilterSensitiveLog = DescribeEventsForOrganizationRequestFilterSensitiveLog;
|
|
201
|
+
const OrganizationEventFilterSensitiveLog = (obj) => ({
|
|
202
|
+
...obj,
|
|
203
|
+
});
|
|
204
|
+
exports.OrganizationEventFilterSensitiveLog = OrganizationEventFilterSensitiveLog;
|
|
205
|
+
const DescribeEventsForOrganizationResponseFilterSensitiveLog = (obj) => ({
|
|
206
|
+
...obj,
|
|
207
|
+
});
|
|
208
|
+
exports.DescribeEventsForOrganizationResponseFilterSensitiveLog = DescribeEventsForOrganizationResponseFilterSensitiveLog;
|
|
209
|
+
const EventTypeFilterFilterSensitiveLog = (obj) => ({
|
|
210
|
+
...obj,
|
|
211
|
+
});
|
|
212
|
+
exports.EventTypeFilterFilterSensitiveLog = EventTypeFilterFilterSensitiveLog;
|
|
213
|
+
const DescribeEventTypesRequestFilterSensitiveLog = (obj) => ({
|
|
214
|
+
...obj,
|
|
215
|
+
});
|
|
216
|
+
exports.DescribeEventTypesRequestFilterSensitiveLog = DescribeEventTypesRequestFilterSensitiveLog;
|
|
217
|
+
const EventTypeFilterSensitiveLog = (obj) => ({
|
|
218
|
+
...obj,
|
|
219
|
+
});
|
|
220
|
+
exports.EventTypeFilterSensitiveLog = EventTypeFilterSensitiveLog;
|
|
221
|
+
const DescribeEventTypesResponseFilterSensitiveLog = (obj) => ({
|
|
222
|
+
...obj,
|
|
223
|
+
});
|
|
224
|
+
exports.DescribeEventTypesResponseFilterSensitiveLog = DescribeEventTypesResponseFilterSensitiveLog;
|
|
225
|
+
const DescribeHealthServiceStatusForOrganizationResponseFilterSensitiveLog = (obj) => ({
|
|
226
|
+
...obj,
|
|
227
|
+
});
|
|
228
|
+
exports.DescribeHealthServiceStatusForOrganizationResponseFilterSensitiveLog = DescribeHealthServiceStatusForOrganizationResponseFilterSensitiveLog;
|