@aws-sdk/client-health 3.121.0 → 3.127.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 +8 -0
- package/dist-cjs/protocols/Aws_json1_1.js +96 -167
- package/dist-es/protocols/Aws_json1_1.js +60 -131
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.127.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.126.0...v3.127.0) (2022-07-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-health
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.121.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.120.0...v3.121.0) (2022-06-30)
|
|
7
15
|
|
|
8
16
|
|
|
@@ -665,8 +665,8 @@ const serializeAws_json1_1awsAccountIdsList = (input, context) => {
|
|
|
665
665
|
};
|
|
666
666
|
const serializeAws_json1_1DateTimeRange = (input, context) => {
|
|
667
667
|
return {
|
|
668
|
-
...(input.from
|
|
669
|
-
...(input.to
|
|
668
|
+
...(input.from != null && { from: Math.round(input.from.getTime() / 1000) }),
|
|
669
|
+
...(input.to != null && { to: Math.round(input.to.getTime() / 1000) }),
|
|
670
670
|
};
|
|
671
671
|
};
|
|
672
672
|
const serializeAws_json1_1dateTimeRangeList = (input, context) => {
|
|
@@ -681,88 +681,78 @@ const serializeAws_json1_1dateTimeRangeList = (input, context) => {
|
|
|
681
681
|
};
|
|
682
682
|
const serializeAws_json1_1DescribeAffectedAccountsForOrganizationRequest = (input, context) => {
|
|
683
683
|
return {
|
|
684
|
-
...(input.eventArn
|
|
685
|
-
...(input.maxResults
|
|
686
|
-
...(input.nextToken
|
|
684
|
+
...(input.eventArn != null && { eventArn: input.eventArn }),
|
|
685
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
686
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
687
687
|
};
|
|
688
688
|
};
|
|
689
689
|
const serializeAws_json1_1DescribeAffectedEntitiesForOrganizationRequest = (input, context) => {
|
|
690
690
|
return {
|
|
691
|
-
...(input.locale
|
|
692
|
-
...(input.maxResults
|
|
693
|
-
...(input.nextToken
|
|
694
|
-
...(input.organizationEntityFilters
|
|
695
|
-
input.organizationEntityFilters !== null && {
|
|
691
|
+
...(input.locale != null && { locale: input.locale }),
|
|
692
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
693
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
694
|
+
...(input.organizationEntityFilters != null && {
|
|
696
695
|
organizationEntityFilters: serializeAws_json1_1OrganizationEntityFiltersList(input.organizationEntityFilters, context),
|
|
697
696
|
}),
|
|
698
697
|
};
|
|
699
698
|
};
|
|
700
699
|
const serializeAws_json1_1DescribeAffectedEntitiesRequest = (input, context) => {
|
|
701
700
|
return {
|
|
702
|
-
...(input.filter
|
|
703
|
-
|
|
704
|
-
...(input.
|
|
705
|
-
...(input.
|
|
706
|
-
...(input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }),
|
|
701
|
+
...(input.filter != null && { filter: serializeAws_json1_1EntityFilter(input.filter, context) }),
|
|
702
|
+
...(input.locale != null && { locale: input.locale }),
|
|
703
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
704
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
707
705
|
};
|
|
708
706
|
};
|
|
709
707
|
const serializeAws_json1_1DescribeEntityAggregatesRequest = (input, context) => {
|
|
710
708
|
return {
|
|
711
|
-
...(input.eventArns
|
|
712
|
-
input.eventArns !== null && { eventArns: serializeAws_json1_1EventArnsList(input.eventArns, context) }),
|
|
709
|
+
...(input.eventArns != null && { eventArns: serializeAws_json1_1EventArnsList(input.eventArns, context) }),
|
|
713
710
|
};
|
|
714
711
|
};
|
|
715
712
|
const serializeAws_json1_1DescribeEventAggregatesRequest = (input, context) => {
|
|
716
713
|
return {
|
|
717
|
-
...(input.aggregateField
|
|
718
|
-
|
|
719
|
-
...(input.
|
|
720
|
-
|
|
721
|
-
...(input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults }),
|
|
722
|
-
...(input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }),
|
|
714
|
+
...(input.aggregateField != null && { aggregateField: input.aggregateField }),
|
|
715
|
+
...(input.filter != null && { filter: serializeAws_json1_1EventFilter(input.filter, context) }),
|
|
716
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
717
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
723
718
|
};
|
|
724
719
|
};
|
|
725
720
|
const serializeAws_json1_1DescribeEventDetailsForOrganizationRequest = (input, context) => {
|
|
726
721
|
return {
|
|
727
|
-
...(input.locale
|
|
728
|
-
...(input.organizationEventDetailFilters
|
|
729
|
-
input.organizationEventDetailFilters !== null && {
|
|
722
|
+
...(input.locale != null && { locale: input.locale }),
|
|
723
|
+
...(input.organizationEventDetailFilters != null && {
|
|
730
724
|
organizationEventDetailFilters: serializeAws_json1_1OrganizationEventDetailFiltersList(input.organizationEventDetailFilters, context),
|
|
731
725
|
}),
|
|
732
726
|
};
|
|
733
727
|
};
|
|
734
728
|
const serializeAws_json1_1DescribeEventDetailsRequest = (input, context) => {
|
|
735
729
|
return {
|
|
736
|
-
...(input.eventArns
|
|
737
|
-
|
|
738
|
-
...(input.locale !== undefined && input.locale !== null && { locale: input.locale }),
|
|
730
|
+
...(input.eventArns != null && { eventArns: serializeAws_json1_1eventArnList(input.eventArns, context) }),
|
|
731
|
+
...(input.locale != null && { locale: input.locale }),
|
|
739
732
|
};
|
|
740
733
|
};
|
|
741
734
|
const serializeAws_json1_1DescribeEventsForOrganizationRequest = (input, context) => {
|
|
742
735
|
return {
|
|
743
|
-
...(input.filter
|
|
744
|
-
|
|
745
|
-
...(input.
|
|
746
|
-
...(input.
|
|
747
|
-
...(input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }),
|
|
736
|
+
...(input.filter != null && { filter: serializeAws_json1_1OrganizationEventFilter(input.filter, context) }),
|
|
737
|
+
...(input.locale != null && { locale: input.locale }),
|
|
738
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
739
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
748
740
|
};
|
|
749
741
|
};
|
|
750
742
|
const serializeAws_json1_1DescribeEventsRequest = (input, context) => {
|
|
751
743
|
return {
|
|
752
|
-
...(input.filter
|
|
753
|
-
|
|
754
|
-
...(input.
|
|
755
|
-
...(input.
|
|
756
|
-
...(input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }),
|
|
744
|
+
...(input.filter != null && { filter: serializeAws_json1_1EventFilter(input.filter, context) }),
|
|
745
|
+
...(input.locale != null && { locale: input.locale }),
|
|
746
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
747
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
757
748
|
};
|
|
758
749
|
};
|
|
759
750
|
const serializeAws_json1_1DescribeEventTypesRequest = (input, context) => {
|
|
760
751
|
return {
|
|
761
|
-
...(input.filter
|
|
762
|
-
|
|
763
|
-
...(input.
|
|
764
|
-
...(input.
|
|
765
|
-
...(input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }),
|
|
752
|
+
...(input.filter != null && { filter: serializeAws_json1_1EventTypeFilter(input.filter, context) }),
|
|
753
|
+
...(input.locale != null && { locale: input.locale }),
|
|
754
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
755
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
766
756
|
};
|
|
767
757
|
};
|
|
768
758
|
const serializeAws_json1_1entityArnList = (input, context) => {
|
|
@@ -777,24 +767,18 @@ const serializeAws_json1_1entityArnList = (input, context) => {
|
|
|
777
767
|
};
|
|
778
768
|
const serializeAws_json1_1EntityFilter = (input, context) => {
|
|
779
769
|
return {
|
|
780
|
-
...(input.entityArns
|
|
781
|
-
|
|
782
|
-
...(input.entityValues !== undefined &&
|
|
783
|
-
input.entityValues !== null && {
|
|
770
|
+
...(input.entityArns != null && { entityArns: serializeAws_json1_1entityArnList(input.entityArns, context) }),
|
|
771
|
+
...(input.entityValues != null && {
|
|
784
772
|
entityValues: serializeAws_json1_1entityValueList(input.entityValues, context),
|
|
785
773
|
}),
|
|
786
|
-
...(input.eventArns
|
|
787
|
-
|
|
788
|
-
...(input.lastUpdatedTimes !== undefined &&
|
|
789
|
-
input.lastUpdatedTimes !== null && {
|
|
774
|
+
...(input.eventArns != null && { eventArns: serializeAws_json1_1eventArnList(input.eventArns, context) }),
|
|
775
|
+
...(input.lastUpdatedTimes != null && {
|
|
790
776
|
lastUpdatedTimes: serializeAws_json1_1dateTimeRangeList(input.lastUpdatedTimes, context),
|
|
791
777
|
}),
|
|
792
|
-
...(input.statusCodes
|
|
793
|
-
input.statusCodes !== null && {
|
|
778
|
+
...(input.statusCodes != null && {
|
|
794
779
|
statusCodes: serializeAws_json1_1entityStatusCodeList(input.statusCodes, context),
|
|
795
780
|
}),
|
|
796
|
-
...(input.tags
|
|
797
|
-
input.tags !== null && { tags: serializeAws_json1_1tagFilter(input.tags, context) }),
|
|
781
|
+
...(input.tags != null && { tags: serializeAws_json1_1tagFilter(input.tags, context) }),
|
|
798
782
|
};
|
|
799
783
|
};
|
|
800
784
|
const serializeAws_json1_1entityStatusCodeList = (input, context) => {
|
|
@@ -819,8 +803,8 @@ const serializeAws_json1_1entityValueList = (input, context) => {
|
|
|
819
803
|
};
|
|
820
804
|
const serializeAws_json1_1EventAccountFilter = (input, context) => {
|
|
821
805
|
return {
|
|
822
|
-
...(input.awsAccountId
|
|
823
|
-
...(input.eventArn
|
|
806
|
+
...(input.awsAccountId != null && { awsAccountId: input.awsAccountId }),
|
|
807
|
+
...(input.eventArn != null && { eventArn: input.eventArn }),
|
|
824
808
|
};
|
|
825
809
|
};
|
|
826
810
|
const serializeAws_json1_1eventArnList = (input, context) => {
|
|
@@ -845,44 +829,31 @@ const serializeAws_json1_1EventArnsList = (input, context) => {
|
|
|
845
829
|
};
|
|
846
830
|
const serializeAws_json1_1EventFilter = (input, context) => {
|
|
847
831
|
return {
|
|
848
|
-
...(input.availabilityZones
|
|
849
|
-
input.availabilityZones !== null && {
|
|
832
|
+
...(input.availabilityZones != null && {
|
|
850
833
|
availabilityZones: serializeAws_json1_1availabilityZones(input.availabilityZones, context),
|
|
851
834
|
}),
|
|
852
|
-
...(input.endTimes
|
|
853
|
-
|
|
854
|
-
...(input.
|
|
855
|
-
input.entityArns !== null && { entityArns: serializeAws_json1_1entityArnList(input.entityArns, context) }),
|
|
856
|
-
...(input.entityValues !== undefined &&
|
|
857
|
-
input.entityValues !== null && {
|
|
835
|
+
...(input.endTimes != null && { endTimes: serializeAws_json1_1dateTimeRangeList(input.endTimes, context) }),
|
|
836
|
+
...(input.entityArns != null && { entityArns: serializeAws_json1_1entityArnList(input.entityArns, context) }),
|
|
837
|
+
...(input.entityValues != null && {
|
|
858
838
|
entityValues: serializeAws_json1_1entityValueList(input.entityValues, context),
|
|
859
839
|
}),
|
|
860
|
-
...(input.eventArns
|
|
861
|
-
|
|
862
|
-
...(input.eventStatusCodes !== undefined &&
|
|
863
|
-
input.eventStatusCodes !== null && {
|
|
840
|
+
...(input.eventArns != null && { eventArns: serializeAws_json1_1eventArnList(input.eventArns, context) }),
|
|
841
|
+
...(input.eventStatusCodes != null && {
|
|
864
842
|
eventStatusCodes: serializeAws_json1_1eventStatusCodeList(input.eventStatusCodes, context),
|
|
865
843
|
}),
|
|
866
|
-
...(input.eventTypeCategories
|
|
867
|
-
input.eventTypeCategories !== null && {
|
|
844
|
+
...(input.eventTypeCategories != null && {
|
|
868
845
|
eventTypeCategories: serializeAws_json1_1eventTypeCategoryList2(input.eventTypeCategories, context),
|
|
869
846
|
}),
|
|
870
|
-
...(input.eventTypeCodes
|
|
871
|
-
input.eventTypeCodes !== null && {
|
|
847
|
+
...(input.eventTypeCodes != null && {
|
|
872
848
|
eventTypeCodes: serializeAws_json1_1eventTypeList2(input.eventTypeCodes, context),
|
|
873
849
|
}),
|
|
874
|
-
...(input.lastUpdatedTimes
|
|
875
|
-
input.lastUpdatedTimes !== null && {
|
|
850
|
+
...(input.lastUpdatedTimes != null && {
|
|
876
851
|
lastUpdatedTimes: serializeAws_json1_1dateTimeRangeList(input.lastUpdatedTimes, context),
|
|
877
852
|
}),
|
|
878
|
-
...(input.regions
|
|
879
|
-
|
|
880
|
-
...(input.
|
|
881
|
-
|
|
882
|
-
...(input.startTimes !== undefined &&
|
|
883
|
-
input.startTimes !== null && { startTimes: serializeAws_json1_1dateTimeRangeList(input.startTimes, context) }),
|
|
884
|
-
...(input.tags !== undefined &&
|
|
885
|
-
input.tags !== null && { tags: serializeAws_json1_1tagFilter(input.tags, context) }),
|
|
853
|
+
...(input.regions != null && { regions: serializeAws_json1_1regionList(input.regions, context) }),
|
|
854
|
+
...(input.services != null && { services: serializeAws_json1_1serviceList(input.services, context) }),
|
|
855
|
+
...(input.startTimes != null && { startTimes: serializeAws_json1_1dateTimeRangeList(input.startTimes, context) }),
|
|
856
|
+
...(input.tags != null && { tags: serializeAws_json1_1tagFilter(input.tags, context) }),
|
|
886
857
|
};
|
|
887
858
|
};
|
|
888
859
|
const serializeAws_json1_1eventStatusCodeList = (input, context) => {
|
|
@@ -927,16 +898,13 @@ const serializeAws_json1_1EventTypeCodeList = (input, context) => {
|
|
|
927
898
|
};
|
|
928
899
|
const serializeAws_json1_1EventTypeFilter = (input, context) => {
|
|
929
900
|
return {
|
|
930
|
-
...(input.eventTypeCategories
|
|
931
|
-
input.eventTypeCategories !== null && {
|
|
901
|
+
...(input.eventTypeCategories != null && {
|
|
932
902
|
eventTypeCategories: serializeAws_json1_1EventTypeCategoryList(input.eventTypeCategories, context),
|
|
933
903
|
}),
|
|
934
|
-
...(input.eventTypeCodes
|
|
935
|
-
input.eventTypeCodes !== null && {
|
|
904
|
+
...(input.eventTypeCodes != null && {
|
|
936
905
|
eventTypeCodes: serializeAws_json1_1EventTypeCodeList(input.eventTypeCodes, context),
|
|
937
906
|
}),
|
|
938
|
-
...(input.services
|
|
939
|
-
input.services !== null && { services: serializeAws_json1_1serviceList(input.services, context) }),
|
|
907
|
+
...(input.services != null && { services: serializeAws_json1_1serviceList(input.services, context) }),
|
|
940
908
|
};
|
|
941
909
|
};
|
|
942
910
|
const serializeAws_json1_1eventTypeList2 = (input, context) => {
|
|
@@ -971,40 +939,29 @@ const serializeAws_json1_1OrganizationEventDetailFiltersList = (input, context)
|
|
|
971
939
|
};
|
|
972
940
|
const serializeAws_json1_1OrganizationEventFilter = (input, context) => {
|
|
973
941
|
return {
|
|
974
|
-
...(input.awsAccountIds
|
|
975
|
-
input.awsAccountIds !== null && {
|
|
942
|
+
...(input.awsAccountIds != null && {
|
|
976
943
|
awsAccountIds: serializeAws_json1_1awsAccountIdsList(input.awsAccountIds, context),
|
|
977
944
|
}),
|
|
978
|
-
...(input.endTime
|
|
979
|
-
|
|
980
|
-
...(input.
|
|
981
|
-
input.entityArns !== null && { entityArns: serializeAws_json1_1entityArnList(input.entityArns, context) }),
|
|
982
|
-
...(input.entityValues !== undefined &&
|
|
983
|
-
input.entityValues !== null && {
|
|
945
|
+
...(input.endTime != null && { endTime: serializeAws_json1_1DateTimeRange(input.endTime, context) }),
|
|
946
|
+
...(input.entityArns != null && { entityArns: serializeAws_json1_1entityArnList(input.entityArns, context) }),
|
|
947
|
+
...(input.entityValues != null && {
|
|
984
948
|
entityValues: serializeAws_json1_1entityValueList(input.entityValues, context),
|
|
985
949
|
}),
|
|
986
|
-
...(input.eventStatusCodes
|
|
987
|
-
input.eventStatusCodes !== null && {
|
|
950
|
+
...(input.eventStatusCodes != null && {
|
|
988
951
|
eventStatusCodes: serializeAws_json1_1eventStatusCodeList(input.eventStatusCodes, context),
|
|
989
952
|
}),
|
|
990
|
-
...(input.eventTypeCategories
|
|
991
|
-
input.eventTypeCategories !== null && {
|
|
953
|
+
...(input.eventTypeCategories != null && {
|
|
992
954
|
eventTypeCategories: serializeAws_json1_1eventTypeCategoryList2(input.eventTypeCategories, context),
|
|
993
955
|
}),
|
|
994
|
-
...(input.eventTypeCodes
|
|
995
|
-
input.eventTypeCodes !== null && {
|
|
956
|
+
...(input.eventTypeCodes != null && {
|
|
996
957
|
eventTypeCodes: serializeAws_json1_1eventTypeList2(input.eventTypeCodes, context),
|
|
997
958
|
}),
|
|
998
|
-
...(input.lastUpdatedTime
|
|
999
|
-
input.lastUpdatedTime !== null && {
|
|
959
|
+
...(input.lastUpdatedTime != null && {
|
|
1000
960
|
lastUpdatedTime: serializeAws_json1_1DateTimeRange(input.lastUpdatedTime, context),
|
|
1001
961
|
}),
|
|
1002
|
-
...(input.regions
|
|
1003
|
-
|
|
1004
|
-
...(input.
|
|
1005
|
-
input.services !== null && { services: serializeAws_json1_1serviceList(input.services, context) }),
|
|
1006
|
-
...(input.startTime !== undefined &&
|
|
1007
|
-
input.startTime !== null && { startTime: serializeAws_json1_1DateTimeRange(input.startTime, context) }),
|
|
962
|
+
...(input.regions != null && { regions: serializeAws_json1_1regionList(input.regions, context) }),
|
|
963
|
+
...(input.services != null && { services: serializeAws_json1_1serviceList(input.services, context) }),
|
|
964
|
+
...(input.startTime != null && { startTime: serializeAws_json1_1DateTimeRange(input.startTime, context) }),
|
|
1008
965
|
};
|
|
1009
966
|
};
|
|
1010
967
|
const serializeAws_json1_1regionList = (input, context) => {
|
|
@@ -1066,13 +1023,11 @@ const deserializeAws_json1_1AffectedEntity = (output, context) => {
|
|
|
1066
1023
|
entityUrl: (0, smithy_client_1.expectString)(output.entityUrl),
|
|
1067
1024
|
entityValue: (0, smithy_client_1.expectString)(output.entityValue),
|
|
1068
1025
|
eventArn: (0, smithy_client_1.expectString)(output.eventArn),
|
|
1069
|
-
lastUpdatedTime: output.lastUpdatedTime
|
|
1026
|
+
lastUpdatedTime: output.lastUpdatedTime != null
|
|
1070
1027
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.lastUpdatedTime)))
|
|
1071
1028
|
: undefined,
|
|
1072
1029
|
statusCode: (0, smithy_client_1.expectString)(output.statusCode),
|
|
1073
|
-
tags: output.tags
|
|
1074
|
-
? deserializeAws_json1_1tagSet(output.tags, context)
|
|
1075
|
-
: undefined,
|
|
1030
|
+
tags: output.tags != null ? deserializeAws_json1_1tagSet(output.tags, context) : undefined,
|
|
1076
1031
|
};
|
|
1077
1032
|
};
|
|
1078
1033
|
const deserializeAws_json1_1ConcurrentModificationException = (output, context) => {
|
|
@@ -1082,7 +1037,7 @@ const deserializeAws_json1_1ConcurrentModificationException = (output, context)
|
|
|
1082
1037
|
};
|
|
1083
1038
|
const deserializeAws_json1_1DescribeAffectedAccountsForOrganizationResponse = (output, context) => {
|
|
1084
1039
|
return {
|
|
1085
|
-
affectedAccounts: output.affectedAccounts
|
|
1040
|
+
affectedAccounts: output.affectedAccounts != null
|
|
1086
1041
|
? deserializeAws_json1_1affectedAccountsList(output.affectedAccounts, context)
|
|
1087
1042
|
: undefined,
|
|
1088
1043
|
eventScopeCode: (0, smithy_client_1.expectString)(output.eventScopeCode),
|
|
@@ -1102,10 +1057,8 @@ const deserializeAws_json1_1DescribeAffectedEntitiesForOrganizationFailedSet = (
|
|
|
1102
1057
|
};
|
|
1103
1058
|
const deserializeAws_json1_1DescribeAffectedEntitiesForOrganizationResponse = (output, context) => {
|
|
1104
1059
|
return {
|
|
1105
|
-
entities: output.entities
|
|
1106
|
-
|
|
1107
|
-
: undefined,
|
|
1108
|
-
failedSet: output.failedSet !== undefined && output.failedSet !== null
|
|
1060
|
+
entities: output.entities != null ? deserializeAws_json1_1EntityList(output.entities, context) : undefined,
|
|
1061
|
+
failedSet: output.failedSet != null
|
|
1109
1062
|
? deserializeAws_json1_1DescribeAffectedEntitiesForOrganizationFailedSet(output.failedSet, context)
|
|
1110
1063
|
: undefined,
|
|
1111
1064
|
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
@@ -1113,22 +1066,20 @@ const deserializeAws_json1_1DescribeAffectedEntitiesForOrganizationResponse = (o
|
|
|
1113
1066
|
};
|
|
1114
1067
|
const deserializeAws_json1_1DescribeAffectedEntitiesResponse = (output, context) => {
|
|
1115
1068
|
return {
|
|
1116
|
-
entities: output.entities
|
|
1117
|
-
? deserializeAws_json1_1EntityList(output.entities, context)
|
|
1118
|
-
: undefined,
|
|
1069
|
+
entities: output.entities != null ? deserializeAws_json1_1EntityList(output.entities, context) : undefined,
|
|
1119
1070
|
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
1120
1071
|
};
|
|
1121
1072
|
};
|
|
1122
1073
|
const deserializeAws_json1_1DescribeEntityAggregatesResponse = (output, context) => {
|
|
1123
1074
|
return {
|
|
1124
|
-
entityAggregates: output.entityAggregates
|
|
1075
|
+
entityAggregates: output.entityAggregates != null
|
|
1125
1076
|
? deserializeAws_json1_1EntityAggregateList(output.entityAggregates, context)
|
|
1126
1077
|
: undefined,
|
|
1127
1078
|
};
|
|
1128
1079
|
};
|
|
1129
1080
|
const deserializeAws_json1_1DescribeEventAggregatesResponse = (output, context) => {
|
|
1130
1081
|
return {
|
|
1131
|
-
eventAggregates: output.eventAggregates
|
|
1082
|
+
eventAggregates: output.eventAggregates != null
|
|
1132
1083
|
? deserializeAws_json1_1EventAggregateList(output.eventAggregates, context)
|
|
1133
1084
|
: undefined,
|
|
1134
1085
|
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
@@ -1158,10 +1109,10 @@ const deserializeAws_json1_1DescribeEventDetailsForOrganizationFailedSet = (outp
|
|
|
1158
1109
|
};
|
|
1159
1110
|
const deserializeAws_json1_1DescribeEventDetailsForOrganizationResponse = (output, context) => {
|
|
1160
1111
|
return {
|
|
1161
|
-
failedSet: output.failedSet
|
|
1112
|
+
failedSet: output.failedSet != null
|
|
1162
1113
|
? deserializeAws_json1_1DescribeEventDetailsForOrganizationFailedSet(output.failedSet, context)
|
|
1163
1114
|
: undefined,
|
|
1164
|
-
successfulSet: output.successfulSet
|
|
1115
|
+
successfulSet: output.successfulSet != null
|
|
1165
1116
|
? deserializeAws_json1_1DescribeEventDetailsForOrganizationSuccessfulSet(output.successfulSet, context)
|
|
1166
1117
|
: undefined,
|
|
1167
1118
|
};
|
|
@@ -1179,10 +1130,10 @@ const deserializeAws_json1_1DescribeEventDetailsForOrganizationSuccessfulSet = (
|
|
|
1179
1130
|
};
|
|
1180
1131
|
const deserializeAws_json1_1DescribeEventDetailsResponse = (output, context) => {
|
|
1181
1132
|
return {
|
|
1182
|
-
failedSet: output.failedSet
|
|
1133
|
+
failedSet: output.failedSet != null
|
|
1183
1134
|
? deserializeAws_json1_1DescribeEventDetailsFailedSet(output.failedSet, context)
|
|
1184
1135
|
: undefined,
|
|
1185
|
-
successfulSet: output.successfulSet
|
|
1136
|
+
successfulSet: output.successfulSet != null
|
|
1186
1137
|
? deserializeAws_json1_1DescribeEventDetailsSuccessfulSet(output.successfulSet, context)
|
|
1187
1138
|
: undefined,
|
|
1188
1139
|
};
|
|
@@ -1200,25 +1151,19 @@ const deserializeAws_json1_1DescribeEventDetailsSuccessfulSet = (output, context
|
|
|
1200
1151
|
};
|
|
1201
1152
|
const deserializeAws_json1_1DescribeEventsForOrganizationResponse = (output, context) => {
|
|
1202
1153
|
return {
|
|
1203
|
-
events: output.events
|
|
1204
|
-
? deserializeAws_json1_1OrganizationEventList(output.events, context)
|
|
1205
|
-
: undefined,
|
|
1154
|
+
events: output.events != null ? deserializeAws_json1_1OrganizationEventList(output.events, context) : undefined,
|
|
1206
1155
|
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
1207
1156
|
};
|
|
1208
1157
|
};
|
|
1209
1158
|
const deserializeAws_json1_1DescribeEventsResponse = (output, context) => {
|
|
1210
1159
|
return {
|
|
1211
|
-
events: output.events
|
|
1212
|
-
? deserializeAws_json1_1EventList(output.events, context)
|
|
1213
|
-
: undefined,
|
|
1160
|
+
events: output.events != null ? deserializeAws_json1_1EventList(output.events, context) : undefined,
|
|
1214
1161
|
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
1215
1162
|
};
|
|
1216
1163
|
};
|
|
1217
1164
|
const deserializeAws_json1_1DescribeEventTypesResponse = (output, context) => {
|
|
1218
1165
|
return {
|
|
1219
|
-
eventTypes: output.eventTypes
|
|
1220
|
-
? deserializeAws_json1_1EventTypeList(output.eventTypes, context)
|
|
1221
|
-
: undefined,
|
|
1166
|
+
eventTypes: output.eventTypes != null ? deserializeAws_json1_1EventTypeList(output.eventTypes, context) : undefined,
|
|
1222
1167
|
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
1223
1168
|
};
|
|
1224
1169
|
};
|
|
@@ -1259,20 +1204,16 @@ const deserializeAws_json1_1Event = (output, context) => {
|
|
|
1259
1204
|
return {
|
|
1260
1205
|
arn: (0, smithy_client_1.expectString)(output.arn),
|
|
1261
1206
|
availabilityZone: (0, smithy_client_1.expectString)(output.availabilityZone),
|
|
1262
|
-
endTime: output.endTime
|
|
1263
|
-
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.endTime)))
|
|
1264
|
-
: undefined,
|
|
1207
|
+
endTime: output.endTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.endTime))) : undefined,
|
|
1265
1208
|
eventScopeCode: (0, smithy_client_1.expectString)(output.eventScopeCode),
|
|
1266
1209
|
eventTypeCategory: (0, smithy_client_1.expectString)(output.eventTypeCategory),
|
|
1267
1210
|
eventTypeCode: (0, smithy_client_1.expectString)(output.eventTypeCode),
|
|
1268
|
-
lastUpdatedTime: output.lastUpdatedTime
|
|
1211
|
+
lastUpdatedTime: output.lastUpdatedTime != null
|
|
1269
1212
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.lastUpdatedTime)))
|
|
1270
1213
|
: undefined,
|
|
1271
1214
|
region: (0, smithy_client_1.expectString)(output.region),
|
|
1272
1215
|
service: (0, smithy_client_1.expectString)(output.service),
|
|
1273
|
-
startTime: output.startTime
|
|
1274
|
-
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startTime)))
|
|
1275
|
-
: undefined,
|
|
1216
|
+
startTime: output.startTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startTime))) : undefined,
|
|
1276
1217
|
statusCode: (0, smithy_client_1.expectString)(output.statusCode),
|
|
1277
1218
|
};
|
|
1278
1219
|
};
|
|
@@ -1300,15 +1241,11 @@ const deserializeAws_json1_1EventDescription = (output, context) => {
|
|
|
1300
1241
|
};
|
|
1301
1242
|
const deserializeAws_json1_1EventDetails = (output, context) => {
|
|
1302
1243
|
return {
|
|
1303
|
-
event: output.event
|
|
1304
|
-
|
|
1305
|
-
: undefined,
|
|
1306
|
-
eventDescription: output.eventDescription !== undefined && output.eventDescription !== null
|
|
1244
|
+
event: output.event != null ? deserializeAws_json1_1Event(output.event, context) : undefined,
|
|
1245
|
+
eventDescription: output.eventDescription != null
|
|
1307
1246
|
? deserializeAws_json1_1EventDescription(output.eventDescription, context)
|
|
1308
1247
|
: undefined,
|
|
1309
|
-
eventMetadata: output.eventMetadata
|
|
1310
|
-
? deserializeAws_json1_1eventMetadata(output.eventMetadata, context)
|
|
1311
|
-
: undefined,
|
|
1248
|
+
eventMetadata: output.eventMetadata != null ? deserializeAws_json1_1eventMetadata(output.eventMetadata, context) : undefined,
|
|
1312
1249
|
};
|
|
1313
1250
|
};
|
|
1314
1251
|
const deserializeAws_json1_1EventDetailsErrorItem = (output, context) => {
|
|
@@ -1374,35 +1311,27 @@ const deserializeAws_json1_1OrganizationAffectedEntitiesErrorItem = (output, con
|
|
|
1374
1311
|
const deserializeAws_json1_1OrganizationEvent = (output, context) => {
|
|
1375
1312
|
return {
|
|
1376
1313
|
arn: (0, smithy_client_1.expectString)(output.arn),
|
|
1377
|
-
endTime: output.endTime
|
|
1378
|
-
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.endTime)))
|
|
1379
|
-
: undefined,
|
|
1314
|
+
endTime: output.endTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.endTime))) : undefined,
|
|
1380
1315
|
eventScopeCode: (0, smithy_client_1.expectString)(output.eventScopeCode),
|
|
1381
1316
|
eventTypeCategory: (0, smithy_client_1.expectString)(output.eventTypeCategory),
|
|
1382
1317
|
eventTypeCode: (0, smithy_client_1.expectString)(output.eventTypeCode),
|
|
1383
|
-
lastUpdatedTime: output.lastUpdatedTime
|
|
1318
|
+
lastUpdatedTime: output.lastUpdatedTime != null
|
|
1384
1319
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.lastUpdatedTime)))
|
|
1385
1320
|
: undefined,
|
|
1386
1321
|
region: (0, smithy_client_1.expectString)(output.region),
|
|
1387
1322
|
service: (0, smithy_client_1.expectString)(output.service),
|
|
1388
|
-
startTime: output.startTime
|
|
1389
|
-
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startTime)))
|
|
1390
|
-
: undefined,
|
|
1323
|
+
startTime: output.startTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startTime))) : undefined,
|
|
1391
1324
|
statusCode: (0, smithy_client_1.expectString)(output.statusCode),
|
|
1392
1325
|
};
|
|
1393
1326
|
};
|
|
1394
1327
|
const deserializeAws_json1_1OrganizationEventDetails = (output, context) => {
|
|
1395
1328
|
return {
|
|
1396
1329
|
awsAccountId: (0, smithy_client_1.expectString)(output.awsAccountId),
|
|
1397
|
-
event: output.event
|
|
1398
|
-
|
|
1399
|
-
: undefined,
|
|
1400
|
-
eventDescription: output.eventDescription !== undefined && output.eventDescription !== null
|
|
1330
|
+
event: output.event != null ? deserializeAws_json1_1Event(output.event, context) : undefined,
|
|
1331
|
+
eventDescription: output.eventDescription != null
|
|
1401
1332
|
? deserializeAws_json1_1EventDescription(output.eventDescription, context)
|
|
1402
1333
|
: undefined,
|
|
1403
|
-
eventMetadata: output.eventMetadata
|
|
1404
|
-
? deserializeAws_json1_1eventMetadata(output.eventMetadata, context)
|
|
1405
|
-
: undefined,
|
|
1334
|
+
eventMetadata: output.eventMetadata != null ? deserializeAws_json1_1eventMetadata(output.eventMetadata, context) : undefined,
|
|
1406
1335
|
};
|
|
1407
1336
|
};
|
|
1408
1337
|
const deserializeAws_json1_1OrganizationEventDetailsErrorItem = (output, context) => {
|
|
@@ -867,7 +867,7 @@ var serializeAws_json1_1awsAccountIdsList = function (input, context) {
|
|
|
867
867
|
});
|
|
868
868
|
};
|
|
869
869
|
var serializeAws_json1_1DateTimeRange = function (input, context) {
|
|
870
|
-
return __assign(__assign({}, (input.from
|
|
870
|
+
return __assign(__assign({}, (input.from != null && { from: Math.round(input.from.getTime() / 1000) })), (input.to != null && { to: Math.round(input.to.getTime() / 1000) }));
|
|
871
871
|
};
|
|
872
872
|
var serializeAws_json1_1dateTimeRangeList = function (input, context) {
|
|
873
873
|
return input
|
|
@@ -880,48 +880,38 @@ var serializeAws_json1_1dateTimeRangeList = function (input, context) {
|
|
|
880
880
|
});
|
|
881
881
|
};
|
|
882
882
|
var serializeAws_json1_1DescribeAffectedAccountsForOrganizationRequest = function (input, context) {
|
|
883
|
-
return __assign(__assign(__assign({}, (input.eventArn
|
|
883
|
+
return __assign(__assign(__assign({}, (input.eventArn != null && { eventArn: input.eventArn })), (input.maxResults != null && { maxResults: input.maxResults })), (input.nextToken != null && { nextToken: input.nextToken }));
|
|
884
884
|
};
|
|
885
885
|
var serializeAws_json1_1DescribeAffectedEntitiesForOrganizationRequest = function (input, context) {
|
|
886
|
-
return __assign(__assign(__assign(__assign({}, (input.locale
|
|
887
|
-
input.organizationEntityFilters !== null && {
|
|
886
|
+
return __assign(__assign(__assign(__assign({}, (input.locale != null && { locale: input.locale })), (input.maxResults != null && { maxResults: input.maxResults })), (input.nextToken != null && { nextToken: input.nextToken })), (input.organizationEntityFilters != null && {
|
|
888
887
|
organizationEntityFilters: serializeAws_json1_1OrganizationEntityFiltersList(input.organizationEntityFilters, context),
|
|
889
888
|
}));
|
|
890
889
|
};
|
|
891
890
|
var serializeAws_json1_1DescribeAffectedEntitiesRequest = function (input, context) {
|
|
892
|
-
return __assign(__assign(__assign(__assign({}, (input.filter
|
|
893
|
-
input.filter !== null && { filter: serializeAws_json1_1EntityFilter(input.filter, context) })), (input.locale !== undefined && input.locale !== null && { locale: input.locale })), (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));
|
|
891
|
+
return __assign(__assign(__assign(__assign({}, (input.filter != null && { filter: serializeAws_json1_1EntityFilter(input.filter, context) })), (input.locale != null && { locale: input.locale })), (input.maxResults != null && { maxResults: input.maxResults })), (input.nextToken != null && { nextToken: input.nextToken }));
|
|
894
892
|
};
|
|
895
893
|
var serializeAws_json1_1DescribeEntityAggregatesRequest = function (input, context) {
|
|
896
|
-
return __assign({}, (input.eventArns
|
|
897
|
-
input.eventArns !== null && { eventArns: serializeAws_json1_1EventArnsList(input.eventArns, context) }));
|
|
894
|
+
return __assign({}, (input.eventArns != null && { eventArns: serializeAws_json1_1EventArnsList(input.eventArns, context) }));
|
|
898
895
|
};
|
|
899
896
|
var serializeAws_json1_1DescribeEventAggregatesRequest = function (input, context) {
|
|
900
|
-
return __assign(__assign(__assign(__assign({}, (input.aggregateField
|
|
901
|
-
input.aggregateField !== null && { aggregateField: input.aggregateField })), (input.filter !== undefined &&
|
|
902
|
-
input.filter !== null && { filter: serializeAws_json1_1EventFilter(input.filter, context) })), (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));
|
|
897
|
+
return __assign(__assign(__assign(__assign({}, (input.aggregateField != null && { aggregateField: input.aggregateField })), (input.filter != null && { filter: serializeAws_json1_1EventFilter(input.filter, context) })), (input.maxResults != null && { maxResults: input.maxResults })), (input.nextToken != null && { nextToken: input.nextToken }));
|
|
903
898
|
};
|
|
904
899
|
var serializeAws_json1_1DescribeEventDetailsForOrganizationRequest = function (input, context) {
|
|
905
|
-
return __assign(__assign({}, (input.locale
|
|
906
|
-
input.organizationEventDetailFilters !== null && {
|
|
900
|
+
return __assign(__assign({}, (input.locale != null && { locale: input.locale })), (input.organizationEventDetailFilters != null && {
|
|
907
901
|
organizationEventDetailFilters: serializeAws_json1_1OrganizationEventDetailFiltersList(input.organizationEventDetailFilters, context),
|
|
908
902
|
}));
|
|
909
903
|
};
|
|
910
904
|
var serializeAws_json1_1DescribeEventDetailsRequest = function (input, context) {
|
|
911
|
-
return __assign(__assign({}, (input.eventArns
|
|
912
|
-
input.eventArns !== null && { eventArns: serializeAws_json1_1eventArnList(input.eventArns, context) })), (input.locale !== undefined && input.locale !== null && { locale: input.locale }));
|
|
905
|
+
return __assign(__assign({}, (input.eventArns != null && { eventArns: serializeAws_json1_1eventArnList(input.eventArns, context) })), (input.locale != null && { locale: input.locale }));
|
|
913
906
|
};
|
|
914
907
|
var serializeAws_json1_1DescribeEventsForOrganizationRequest = function (input, context) {
|
|
915
|
-
return __assign(__assign(__assign(__assign({}, (input.filter
|
|
916
|
-
input.filter !== null && { filter: serializeAws_json1_1OrganizationEventFilter(input.filter, context) })), (input.locale !== undefined && input.locale !== null && { locale: input.locale })), (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));
|
|
908
|
+
return __assign(__assign(__assign(__assign({}, (input.filter != null && { filter: serializeAws_json1_1OrganizationEventFilter(input.filter, context) })), (input.locale != null && { locale: input.locale })), (input.maxResults != null && { maxResults: input.maxResults })), (input.nextToken != null && { nextToken: input.nextToken }));
|
|
917
909
|
};
|
|
918
910
|
var serializeAws_json1_1DescribeEventsRequest = function (input, context) {
|
|
919
|
-
return __assign(__assign(__assign(__assign({}, (input.filter
|
|
920
|
-
input.filter !== null && { filter: serializeAws_json1_1EventFilter(input.filter, context) })), (input.locale !== undefined && input.locale !== null && { locale: input.locale })), (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));
|
|
911
|
+
return __assign(__assign(__assign(__assign({}, (input.filter != null && { filter: serializeAws_json1_1EventFilter(input.filter, context) })), (input.locale != null && { locale: input.locale })), (input.maxResults != null && { maxResults: input.maxResults })), (input.nextToken != null && { nextToken: input.nextToken }));
|
|
921
912
|
};
|
|
922
913
|
var serializeAws_json1_1DescribeEventTypesRequest = function (input, context) {
|
|
923
|
-
return __assign(__assign(__assign(__assign({}, (input.filter
|
|
924
|
-
input.filter !== null && { filter: serializeAws_json1_1EventTypeFilter(input.filter, context) })), (input.locale !== undefined && input.locale !== null && { locale: input.locale })), (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));
|
|
914
|
+
return __assign(__assign(__assign(__assign({}, (input.filter != null && { filter: serializeAws_json1_1EventTypeFilter(input.filter, context) })), (input.locale != null && { locale: input.locale })), (input.maxResults != null && { maxResults: input.maxResults })), (input.nextToken != null && { nextToken: input.nextToken }));
|
|
925
915
|
};
|
|
926
916
|
var serializeAws_json1_1entityArnList = function (input, context) {
|
|
927
917
|
return input
|
|
@@ -934,19 +924,13 @@ var serializeAws_json1_1entityArnList = function (input, context) {
|
|
|
934
924
|
});
|
|
935
925
|
};
|
|
936
926
|
var serializeAws_json1_1EntityFilter = function (input, context) {
|
|
937
|
-
return __assign(__assign(__assign(__assign(__assign(__assign({}, (input.entityArns
|
|
938
|
-
input.entityArns !== null && { entityArns: serializeAws_json1_1entityArnList(input.entityArns, context) })), (input.entityValues !== undefined &&
|
|
939
|
-
input.entityValues !== null && {
|
|
927
|
+
return __assign(__assign(__assign(__assign(__assign(__assign({}, (input.entityArns != null && { entityArns: serializeAws_json1_1entityArnList(input.entityArns, context) })), (input.entityValues != null && {
|
|
940
928
|
entityValues: serializeAws_json1_1entityValueList(input.entityValues, context),
|
|
941
|
-
})), (input.eventArns
|
|
942
|
-
input.eventArns !== null && { eventArns: serializeAws_json1_1eventArnList(input.eventArns, context) })), (input.lastUpdatedTimes !== undefined &&
|
|
943
|
-
input.lastUpdatedTimes !== null && {
|
|
929
|
+
})), (input.eventArns != null && { eventArns: serializeAws_json1_1eventArnList(input.eventArns, context) })), (input.lastUpdatedTimes != null && {
|
|
944
930
|
lastUpdatedTimes: serializeAws_json1_1dateTimeRangeList(input.lastUpdatedTimes, context),
|
|
945
|
-
})), (input.statusCodes
|
|
946
|
-
input.statusCodes !== null && {
|
|
931
|
+
})), (input.statusCodes != null && {
|
|
947
932
|
statusCodes: serializeAws_json1_1entityStatusCodeList(input.statusCodes, context),
|
|
948
|
-
})), (input.tags
|
|
949
|
-
input.tags !== null && { tags: serializeAws_json1_1tagFilter(input.tags, context) }));
|
|
933
|
+
})), (input.tags != null && { tags: serializeAws_json1_1tagFilter(input.tags, context) }));
|
|
950
934
|
};
|
|
951
935
|
var serializeAws_json1_1entityStatusCodeList = function (input, context) {
|
|
952
936
|
return input
|
|
@@ -969,7 +953,7 @@ var serializeAws_json1_1entityValueList = function (input, context) {
|
|
|
969
953
|
});
|
|
970
954
|
};
|
|
971
955
|
var serializeAws_json1_1EventAccountFilter = function (input, context) {
|
|
972
|
-
return __assign(__assign({}, (input.awsAccountId
|
|
956
|
+
return __assign(__assign({}, (input.awsAccountId != null && { awsAccountId: input.awsAccountId })), (input.eventArn != null && { eventArn: input.eventArn }));
|
|
973
957
|
};
|
|
974
958
|
var serializeAws_json1_1eventArnList = function (input, context) {
|
|
975
959
|
return input
|
|
@@ -992,32 +976,19 @@ var serializeAws_json1_1EventArnsList = function (input, context) {
|
|
|
992
976
|
});
|
|
993
977
|
};
|
|
994
978
|
var serializeAws_json1_1EventFilter = function (input, context) {
|
|
995
|
-
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.availabilityZones
|
|
996
|
-
input.availabilityZones !== null && {
|
|
979
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.availabilityZones != null && {
|
|
997
980
|
availabilityZones: serializeAws_json1_1availabilityZones(input.availabilityZones, context),
|
|
998
|
-
})), (input.endTimes
|
|
999
|
-
input.endTimes !== null && { endTimes: serializeAws_json1_1dateTimeRangeList(input.endTimes, context) })), (input.entityArns !== undefined &&
|
|
1000
|
-
input.entityArns !== null && { entityArns: serializeAws_json1_1entityArnList(input.entityArns, context) })), (input.entityValues !== undefined &&
|
|
1001
|
-
input.entityValues !== null && {
|
|
981
|
+
})), (input.endTimes != null && { endTimes: serializeAws_json1_1dateTimeRangeList(input.endTimes, context) })), (input.entityArns != null && { entityArns: serializeAws_json1_1entityArnList(input.entityArns, context) })), (input.entityValues != null && {
|
|
1002
982
|
entityValues: serializeAws_json1_1entityValueList(input.entityValues, context),
|
|
1003
|
-
})), (input.eventArns
|
|
1004
|
-
input.eventArns !== null && { eventArns: serializeAws_json1_1eventArnList(input.eventArns, context) })), (input.eventStatusCodes !== undefined &&
|
|
1005
|
-
input.eventStatusCodes !== null && {
|
|
983
|
+
})), (input.eventArns != null && { eventArns: serializeAws_json1_1eventArnList(input.eventArns, context) })), (input.eventStatusCodes != null && {
|
|
1006
984
|
eventStatusCodes: serializeAws_json1_1eventStatusCodeList(input.eventStatusCodes, context),
|
|
1007
|
-
})), (input.eventTypeCategories
|
|
1008
|
-
input.eventTypeCategories !== null && {
|
|
985
|
+
})), (input.eventTypeCategories != null && {
|
|
1009
986
|
eventTypeCategories: serializeAws_json1_1eventTypeCategoryList2(input.eventTypeCategories, context),
|
|
1010
|
-
})), (input.eventTypeCodes
|
|
1011
|
-
input.eventTypeCodes !== null && {
|
|
987
|
+
})), (input.eventTypeCodes != null && {
|
|
1012
988
|
eventTypeCodes: serializeAws_json1_1eventTypeList2(input.eventTypeCodes, context),
|
|
1013
|
-
})), (input.lastUpdatedTimes
|
|
1014
|
-
input.lastUpdatedTimes !== null && {
|
|
989
|
+
})), (input.lastUpdatedTimes != null && {
|
|
1015
990
|
lastUpdatedTimes: serializeAws_json1_1dateTimeRangeList(input.lastUpdatedTimes, context),
|
|
1016
|
-
})), (input.regions
|
|
1017
|
-
input.regions !== null && { regions: serializeAws_json1_1regionList(input.regions, context) })), (input.services !== undefined &&
|
|
1018
|
-
input.services !== null && { services: serializeAws_json1_1serviceList(input.services, context) })), (input.startTimes !== undefined &&
|
|
1019
|
-
input.startTimes !== null && { startTimes: serializeAws_json1_1dateTimeRangeList(input.startTimes, context) })), (input.tags !== undefined &&
|
|
1020
|
-
input.tags !== null && { tags: serializeAws_json1_1tagFilter(input.tags, context) }));
|
|
991
|
+
})), (input.regions != null && { regions: serializeAws_json1_1regionList(input.regions, context) })), (input.services != null && { services: serializeAws_json1_1serviceList(input.services, context) })), (input.startTimes != null && { startTimes: serializeAws_json1_1dateTimeRangeList(input.startTimes, context) })), (input.tags != null && { tags: serializeAws_json1_1tagFilter(input.tags, context) }));
|
|
1021
992
|
};
|
|
1022
993
|
var serializeAws_json1_1eventStatusCodeList = function (input, context) {
|
|
1023
994
|
return input
|
|
@@ -1060,14 +1031,11 @@ var serializeAws_json1_1EventTypeCodeList = function (input, context) {
|
|
|
1060
1031
|
});
|
|
1061
1032
|
};
|
|
1062
1033
|
var serializeAws_json1_1EventTypeFilter = function (input, context) {
|
|
1063
|
-
return __assign(__assign(__assign({}, (input.eventTypeCategories
|
|
1064
|
-
input.eventTypeCategories !== null && {
|
|
1034
|
+
return __assign(__assign(__assign({}, (input.eventTypeCategories != null && {
|
|
1065
1035
|
eventTypeCategories: serializeAws_json1_1EventTypeCategoryList(input.eventTypeCategories, context),
|
|
1066
|
-
})), (input.eventTypeCodes
|
|
1067
|
-
input.eventTypeCodes !== null && {
|
|
1036
|
+
})), (input.eventTypeCodes != null && {
|
|
1068
1037
|
eventTypeCodes: serializeAws_json1_1EventTypeCodeList(input.eventTypeCodes, context),
|
|
1069
|
-
})), (input.services
|
|
1070
|
-
input.services !== null && { services: serializeAws_json1_1serviceList(input.services, context) }));
|
|
1038
|
+
})), (input.services != null && { services: serializeAws_json1_1serviceList(input.services, context) }));
|
|
1071
1039
|
};
|
|
1072
1040
|
var serializeAws_json1_1eventTypeList2 = function (input, context) {
|
|
1073
1041
|
return input
|
|
@@ -1100,30 +1068,19 @@ var serializeAws_json1_1OrganizationEventDetailFiltersList = function (input, co
|
|
|
1100
1068
|
});
|
|
1101
1069
|
};
|
|
1102
1070
|
var serializeAws_json1_1OrganizationEventFilter = function (input, context) {
|
|
1103
|
-
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.awsAccountIds
|
|
1104
|
-
input.awsAccountIds !== null && {
|
|
1071
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.awsAccountIds != null && {
|
|
1105
1072
|
awsAccountIds: serializeAws_json1_1awsAccountIdsList(input.awsAccountIds, context),
|
|
1106
|
-
})), (input.endTime
|
|
1107
|
-
input.endTime !== null && { endTime: serializeAws_json1_1DateTimeRange(input.endTime, context) })), (input.entityArns !== undefined &&
|
|
1108
|
-
input.entityArns !== null && { entityArns: serializeAws_json1_1entityArnList(input.entityArns, context) })), (input.entityValues !== undefined &&
|
|
1109
|
-
input.entityValues !== null && {
|
|
1073
|
+
})), (input.endTime != null && { endTime: serializeAws_json1_1DateTimeRange(input.endTime, context) })), (input.entityArns != null && { entityArns: serializeAws_json1_1entityArnList(input.entityArns, context) })), (input.entityValues != null && {
|
|
1110
1074
|
entityValues: serializeAws_json1_1entityValueList(input.entityValues, context),
|
|
1111
|
-
})), (input.eventStatusCodes
|
|
1112
|
-
input.eventStatusCodes !== null && {
|
|
1075
|
+
})), (input.eventStatusCodes != null && {
|
|
1113
1076
|
eventStatusCodes: serializeAws_json1_1eventStatusCodeList(input.eventStatusCodes, context),
|
|
1114
|
-
})), (input.eventTypeCategories
|
|
1115
|
-
input.eventTypeCategories !== null && {
|
|
1077
|
+
})), (input.eventTypeCategories != null && {
|
|
1116
1078
|
eventTypeCategories: serializeAws_json1_1eventTypeCategoryList2(input.eventTypeCategories, context),
|
|
1117
|
-
})), (input.eventTypeCodes
|
|
1118
|
-
input.eventTypeCodes !== null && {
|
|
1079
|
+
})), (input.eventTypeCodes != null && {
|
|
1119
1080
|
eventTypeCodes: serializeAws_json1_1eventTypeList2(input.eventTypeCodes, context),
|
|
1120
|
-
})), (input.lastUpdatedTime
|
|
1121
|
-
input.lastUpdatedTime !== null && {
|
|
1081
|
+
})), (input.lastUpdatedTime != null && {
|
|
1122
1082
|
lastUpdatedTime: serializeAws_json1_1DateTimeRange(input.lastUpdatedTime, context),
|
|
1123
|
-
})), (input.regions
|
|
1124
|
-
input.regions !== null && { regions: serializeAws_json1_1regionList(input.regions, context) })), (input.services !== undefined &&
|
|
1125
|
-
input.services !== null && { services: serializeAws_json1_1serviceList(input.services, context) })), (input.startTime !== undefined &&
|
|
1126
|
-
input.startTime !== null && { startTime: serializeAws_json1_1DateTimeRange(input.startTime, context) }));
|
|
1083
|
+
})), (input.regions != null && { regions: serializeAws_json1_1regionList(input.regions, context) })), (input.services != null && { services: serializeAws_json1_1serviceList(input.services, context) })), (input.startTime != null && { startTime: serializeAws_json1_1DateTimeRange(input.startTime, context) }));
|
|
1127
1084
|
};
|
|
1128
1085
|
var serializeAws_json1_1regionList = function (input, context) {
|
|
1129
1086
|
return input
|
|
@@ -1183,13 +1140,11 @@ var deserializeAws_json1_1AffectedEntity = function (output, context) {
|
|
|
1183
1140
|
entityUrl: __expectString(output.entityUrl),
|
|
1184
1141
|
entityValue: __expectString(output.entityValue),
|
|
1185
1142
|
eventArn: __expectString(output.eventArn),
|
|
1186
|
-
lastUpdatedTime: output.lastUpdatedTime
|
|
1143
|
+
lastUpdatedTime: output.lastUpdatedTime != null
|
|
1187
1144
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.lastUpdatedTime)))
|
|
1188
1145
|
: undefined,
|
|
1189
1146
|
statusCode: __expectString(output.statusCode),
|
|
1190
|
-
tags: output.tags
|
|
1191
|
-
? deserializeAws_json1_1tagSet(output.tags, context)
|
|
1192
|
-
: undefined,
|
|
1147
|
+
tags: output.tags != null ? deserializeAws_json1_1tagSet(output.tags, context) : undefined,
|
|
1193
1148
|
};
|
|
1194
1149
|
};
|
|
1195
1150
|
var deserializeAws_json1_1ConcurrentModificationException = function (output, context) {
|
|
@@ -1199,7 +1154,7 @@ var deserializeAws_json1_1ConcurrentModificationException = function (output, co
|
|
|
1199
1154
|
};
|
|
1200
1155
|
var deserializeAws_json1_1DescribeAffectedAccountsForOrganizationResponse = function (output, context) {
|
|
1201
1156
|
return {
|
|
1202
|
-
affectedAccounts: output.affectedAccounts
|
|
1157
|
+
affectedAccounts: output.affectedAccounts != null
|
|
1203
1158
|
? deserializeAws_json1_1affectedAccountsList(output.affectedAccounts, context)
|
|
1204
1159
|
: undefined,
|
|
1205
1160
|
eventScopeCode: __expectString(output.eventScopeCode),
|
|
@@ -1219,10 +1174,8 @@ var deserializeAws_json1_1DescribeAffectedEntitiesForOrganizationFailedSet = fun
|
|
|
1219
1174
|
};
|
|
1220
1175
|
var deserializeAws_json1_1DescribeAffectedEntitiesForOrganizationResponse = function (output, context) {
|
|
1221
1176
|
return {
|
|
1222
|
-
entities: output.entities
|
|
1223
|
-
|
|
1224
|
-
: undefined,
|
|
1225
|
-
failedSet: output.failedSet !== undefined && output.failedSet !== null
|
|
1177
|
+
entities: output.entities != null ? deserializeAws_json1_1EntityList(output.entities, context) : undefined,
|
|
1178
|
+
failedSet: output.failedSet != null
|
|
1226
1179
|
? deserializeAws_json1_1DescribeAffectedEntitiesForOrganizationFailedSet(output.failedSet, context)
|
|
1227
1180
|
: undefined,
|
|
1228
1181
|
nextToken: __expectString(output.nextToken),
|
|
@@ -1230,22 +1183,20 @@ var deserializeAws_json1_1DescribeAffectedEntitiesForOrganizationResponse = func
|
|
|
1230
1183
|
};
|
|
1231
1184
|
var deserializeAws_json1_1DescribeAffectedEntitiesResponse = function (output, context) {
|
|
1232
1185
|
return {
|
|
1233
|
-
entities: output.entities
|
|
1234
|
-
? deserializeAws_json1_1EntityList(output.entities, context)
|
|
1235
|
-
: undefined,
|
|
1186
|
+
entities: output.entities != null ? deserializeAws_json1_1EntityList(output.entities, context) : undefined,
|
|
1236
1187
|
nextToken: __expectString(output.nextToken),
|
|
1237
1188
|
};
|
|
1238
1189
|
};
|
|
1239
1190
|
var deserializeAws_json1_1DescribeEntityAggregatesResponse = function (output, context) {
|
|
1240
1191
|
return {
|
|
1241
|
-
entityAggregates: output.entityAggregates
|
|
1192
|
+
entityAggregates: output.entityAggregates != null
|
|
1242
1193
|
? deserializeAws_json1_1EntityAggregateList(output.entityAggregates, context)
|
|
1243
1194
|
: undefined,
|
|
1244
1195
|
};
|
|
1245
1196
|
};
|
|
1246
1197
|
var deserializeAws_json1_1DescribeEventAggregatesResponse = function (output, context) {
|
|
1247
1198
|
return {
|
|
1248
|
-
eventAggregates: output.eventAggregates
|
|
1199
|
+
eventAggregates: output.eventAggregates != null
|
|
1249
1200
|
? deserializeAws_json1_1EventAggregateList(output.eventAggregates, context)
|
|
1250
1201
|
: undefined,
|
|
1251
1202
|
nextToken: __expectString(output.nextToken),
|
|
@@ -1275,10 +1226,10 @@ var deserializeAws_json1_1DescribeEventDetailsForOrganizationFailedSet = functio
|
|
|
1275
1226
|
};
|
|
1276
1227
|
var deserializeAws_json1_1DescribeEventDetailsForOrganizationResponse = function (output, context) {
|
|
1277
1228
|
return {
|
|
1278
|
-
failedSet: output.failedSet
|
|
1229
|
+
failedSet: output.failedSet != null
|
|
1279
1230
|
? deserializeAws_json1_1DescribeEventDetailsForOrganizationFailedSet(output.failedSet, context)
|
|
1280
1231
|
: undefined,
|
|
1281
|
-
successfulSet: output.successfulSet
|
|
1232
|
+
successfulSet: output.successfulSet != null
|
|
1282
1233
|
? deserializeAws_json1_1DescribeEventDetailsForOrganizationSuccessfulSet(output.successfulSet, context)
|
|
1283
1234
|
: undefined,
|
|
1284
1235
|
};
|
|
@@ -1296,10 +1247,10 @@ var deserializeAws_json1_1DescribeEventDetailsForOrganizationSuccessfulSet = fun
|
|
|
1296
1247
|
};
|
|
1297
1248
|
var deserializeAws_json1_1DescribeEventDetailsResponse = function (output, context) {
|
|
1298
1249
|
return {
|
|
1299
|
-
failedSet: output.failedSet
|
|
1250
|
+
failedSet: output.failedSet != null
|
|
1300
1251
|
? deserializeAws_json1_1DescribeEventDetailsFailedSet(output.failedSet, context)
|
|
1301
1252
|
: undefined,
|
|
1302
|
-
successfulSet: output.successfulSet
|
|
1253
|
+
successfulSet: output.successfulSet != null
|
|
1303
1254
|
? deserializeAws_json1_1DescribeEventDetailsSuccessfulSet(output.successfulSet, context)
|
|
1304
1255
|
: undefined,
|
|
1305
1256
|
};
|
|
@@ -1317,25 +1268,19 @@ var deserializeAws_json1_1DescribeEventDetailsSuccessfulSet = function (output,
|
|
|
1317
1268
|
};
|
|
1318
1269
|
var deserializeAws_json1_1DescribeEventsForOrganizationResponse = function (output, context) {
|
|
1319
1270
|
return {
|
|
1320
|
-
events: output.events
|
|
1321
|
-
? deserializeAws_json1_1OrganizationEventList(output.events, context)
|
|
1322
|
-
: undefined,
|
|
1271
|
+
events: output.events != null ? deserializeAws_json1_1OrganizationEventList(output.events, context) : undefined,
|
|
1323
1272
|
nextToken: __expectString(output.nextToken),
|
|
1324
1273
|
};
|
|
1325
1274
|
};
|
|
1326
1275
|
var deserializeAws_json1_1DescribeEventsResponse = function (output, context) {
|
|
1327
1276
|
return {
|
|
1328
|
-
events: output.events
|
|
1329
|
-
? deserializeAws_json1_1EventList(output.events, context)
|
|
1330
|
-
: undefined,
|
|
1277
|
+
events: output.events != null ? deserializeAws_json1_1EventList(output.events, context) : undefined,
|
|
1331
1278
|
nextToken: __expectString(output.nextToken),
|
|
1332
1279
|
};
|
|
1333
1280
|
};
|
|
1334
1281
|
var deserializeAws_json1_1DescribeEventTypesResponse = function (output, context) {
|
|
1335
1282
|
return {
|
|
1336
|
-
eventTypes: output.eventTypes
|
|
1337
|
-
? deserializeAws_json1_1EventTypeList(output.eventTypes, context)
|
|
1338
|
-
: undefined,
|
|
1283
|
+
eventTypes: output.eventTypes != null ? deserializeAws_json1_1EventTypeList(output.eventTypes, context) : undefined,
|
|
1339
1284
|
nextToken: __expectString(output.nextToken),
|
|
1340
1285
|
};
|
|
1341
1286
|
};
|
|
@@ -1376,20 +1321,16 @@ var deserializeAws_json1_1Event = function (output, context) {
|
|
|
1376
1321
|
return {
|
|
1377
1322
|
arn: __expectString(output.arn),
|
|
1378
1323
|
availabilityZone: __expectString(output.availabilityZone),
|
|
1379
|
-
endTime: output.endTime
|
|
1380
|
-
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.endTime)))
|
|
1381
|
-
: undefined,
|
|
1324
|
+
endTime: output.endTime != null ? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.endTime))) : undefined,
|
|
1382
1325
|
eventScopeCode: __expectString(output.eventScopeCode),
|
|
1383
1326
|
eventTypeCategory: __expectString(output.eventTypeCategory),
|
|
1384
1327
|
eventTypeCode: __expectString(output.eventTypeCode),
|
|
1385
|
-
lastUpdatedTime: output.lastUpdatedTime
|
|
1328
|
+
lastUpdatedTime: output.lastUpdatedTime != null
|
|
1386
1329
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.lastUpdatedTime)))
|
|
1387
1330
|
: undefined,
|
|
1388
1331
|
region: __expectString(output.region),
|
|
1389
1332
|
service: __expectString(output.service),
|
|
1390
|
-
startTime: output.startTime
|
|
1391
|
-
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.startTime)))
|
|
1392
|
-
: undefined,
|
|
1333
|
+
startTime: output.startTime != null ? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.startTime))) : undefined,
|
|
1393
1334
|
statusCode: __expectString(output.statusCode),
|
|
1394
1335
|
};
|
|
1395
1336
|
};
|
|
@@ -1417,15 +1358,11 @@ var deserializeAws_json1_1EventDescription = function (output, context) {
|
|
|
1417
1358
|
};
|
|
1418
1359
|
var deserializeAws_json1_1EventDetails = function (output, context) {
|
|
1419
1360
|
return {
|
|
1420
|
-
event: output.event
|
|
1421
|
-
|
|
1422
|
-
: undefined,
|
|
1423
|
-
eventDescription: output.eventDescription !== undefined && output.eventDescription !== null
|
|
1361
|
+
event: output.event != null ? deserializeAws_json1_1Event(output.event, context) : undefined,
|
|
1362
|
+
eventDescription: output.eventDescription != null
|
|
1424
1363
|
? deserializeAws_json1_1EventDescription(output.eventDescription, context)
|
|
1425
1364
|
: undefined,
|
|
1426
|
-
eventMetadata: output.eventMetadata
|
|
1427
|
-
? deserializeAws_json1_1eventMetadata(output.eventMetadata, context)
|
|
1428
|
-
: undefined,
|
|
1365
|
+
eventMetadata: output.eventMetadata != null ? deserializeAws_json1_1eventMetadata(output.eventMetadata, context) : undefined,
|
|
1429
1366
|
};
|
|
1430
1367
|
};
|
|
1431
1368
|
var deserializeAws_json1_1EventDetailsErrorItem = function (output, context) {
|
|
@@ -1490,35 +1427,27 @@ var deserializeAws_json1_1OrganizationAffectedEntitiesErrorItem = function (outp
|
|
|
1490
1427
|
var deserializeAws_json1_1OrganizationEvent = function (output, context) {
|
|
1491
1428
|
return {
|
|
1492
1429
|
arn: __expectString(output.arn),
|
|
1493
|
-
endTime: output.endTime
|
|
1494
|
-
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.endTime)))
|
|
1495
|
-
: undefined,
|
|
1430
|
+
endTime: output.endTime != null ? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.endTime))) : undefined,
|
|
1496
1431
|
eventScopeCode: __expectString(output.eventScopeCode),
|
|
1497
1432
|
eventTypeCategory: __expectString(output.eventTypeCategory),
|
|
1498
1433
|
eventTypeCode: __expectString(output.eventTypeCode),
|
|
1499
|
-
lastUpdatedTime: output.lastUpdatedTime
|
|
1434
|
+
lastUpdatedTime: output.lastUpdatedTime != null
|
|
1500
1435
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.lastUpdatedTime)))
|
|
1501
1436
|
: undefined,
|
|
1502
1437
|
region: __expectString(output.region),
|
|
1503
1438
|
service: __expectString(output.service),
|
|
1504
|
-
startTime: output.startTime
|
|
1505
|
-
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.startTime)))
|
|
1506
|
-
: undefined,
|
|
1439
|
+
startTime: output.startTime != null ? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.startTime))) : undefined,
|
|
1507
1440
|
statusCode: __expectString(output.statusCode),
|
|
1508
1441
|
};
|
|
1509
1442
|
};
|
|
1510
1443
|
var deserializeAws_json1_1OrganizationEventDetails = function (output, context) {
|
|
1511
1444
|
return {
|
|
1512
1445
|
awsAccountId: __expectString(output.awsAccountId),
|
|
1513
|
-
event: output.event
|
|
1514
|
-
|
|
1515
|
-
: undefined,
|
|
1516
|
-
eventDescription: output.eventDescription !== undefined && output.eventDescription !== null
|
|
1446
|
+
event: output.event != null ? deserializeAws_json1_1Event(output.event, context) : undefined,
|
|
1447
|
+
eventDescription: output.eventDescription != null
|
|
1517
1448
|
? deserializeAws_json1_1EventDescription(output.eventDescription, context)
|
|
1518
1449
|
: undefined,
|
|
1519
|
-
eventMetadata: output.eventMetadata
|
|
1520
|
-
? deserializeAws_json1_1eventMetadata(output.eventMetadata, context)
|
|
1521
|
-
: undefined,
|
|
1450
|
+
eventMetadata: output.eventMetadata != null ? deserializeAws_json1_1eventMetadata(output.eventMetadata, context) : undefined,
|
|
1522
1451
|
};
|
|
1523
1452
|
};
|
|
1524
1453
|
var deserializeAws_json1_1OrganizationEventDetailsErrorItem = function (output, context) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-health",
|
|
3
3
|
"description": "AWS SDK for JavaScript Health Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.127.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,35 +18,35 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.127.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.127.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.127.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.127.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.127.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.127.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.127.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.127.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.127.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.127.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.127.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.127.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.127.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.127.0",
|
|
40
|
+
"@aws-sdk/types": "3.127.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.127.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.127.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1"
|