@aws-sdk/client-inspector2 3.496.0 → 3.499.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.
Files changed (137) hide show
  1. package/README.md +104 -0
  2. package/dist-cjs/commands/CreateCisScanConfigurationCommand.js +1 -0
  3. package/dist-cjs/commands/DeleteCisScanConfigurationCommand.js +1 -0
  4. package/dist-cjs/commands/GetCisScanReportCommand.js +1 -0
  5. package/dist-cjs/commands/GetCisScanResultDetailsCommand.js +1 -0
  6. package/dist-cjs/commands/ListCisScanConfigurationsCommand.js +1 -0
  7. package/dist-cjs/commands/ListCisScanResultsAggregatedByChecksCommand.js +1 -0
  8. package/dist-cjs/commands/ListCisScanResultsAggregatedByTargetResourceCommand.js +1 -0
  9. package/dist-cjs/commands/ListCisScansCommand.js +1 -0
  10. package/dist-cjs/commands/SendCisSessionHealthCommand.js +1 -0
  11. package/dist-cjs/commands/SendCisSessionTelemetryCommand.js +1 -0
  12. package/dist-cjs/commands/StartCisSessionCommand.js +1 -0
  13. package/dist-cjs/commands/StopCisSessionCommand.js +1 -0
  14. package/dist-cjs/commands/UpdateCisScanConfigurationCommand.js +1 -0
  15. package/dist-cjs/index.js +1721 -398
  16. package/dist-cjs/models/models_1.js +1 -0
  17. package/dist-cjs/pagination/GetCisScanResultDetailsPaginator.js +1 -0
  18. package/dist-cjs/pagination/ListCisScanConfigurationsPaginator.js +1 -0
  19. package/dist-cjs/pagination/ListCisScanResultsAggregatedByChecksPaginator.js +1 -0
  20. package/dist-cjs/pagination/ListCisScanResultsAggregatedByTargetResourcePaginator.js +1 -0
  21. package/dist-cjs/pagination/ListCisScansPaginator.js +1 -0
  22. package/dist-es/Inspector2.js +26 -0
  23. package/dist-es/commands/CreateCisScanConfigurationCommand.js +24 -0
  24. package/dist-es/commands/DeleteCisScanConfigurationCommand.js +24 -0
  25. package/dist-es/commands/GetCisScanReportCommand.js +24 -0
  26. package/dist-es/commands/GetCisScanResultDetailsCommand.js +24 -0
  27. package/dist-es/commands/ListCisScanConfigurationsCommand.js +24 -0
  28. package/dist-es/commands/ListCisScanResultsAggregatedByChecksCommand.js +24 -0
  29. package/dist-es/commands/ListCisScanResultsAggregatedByTargetResourceCommand.js +24 -0
  30. package/dist-es/commands/ListCisScansCommand.js +24 -0
  31. package/dist-es/commands/SendCisSessionHealthCommand.js +24 -0
  32. package/dist-es/commands/SendCisSessionTelemetryCommand.js +24 -0
  33. package/dist-es/commands/StartCisSessionCommand.js +24 -0
  34. package/dist-es/commands/StopCisSessionCommand.js +24 -0
  35. package/dist-es/commands/UpdateCisScanConfigurationCommand.js +24 -0
  36. package/dist-es/commands/index.js +13 -0
  37. package/dist-es/models/index.js +1 -0
  38. package/dist-es/models/models_0.js +126 -28
  39. package/dist-es/models/models_1.js +35 -0
  40. package/dist-es/pagination/GetCisScanResultDetailsPaginator.js +4 -0
  41. package/dist-es/pagination/ListCisScanConfigurationsPaginator.js +4 -0
  42. package/dist-es/pagination/ListCisScanResultsAggregatedByChecksPaginator.js +4 -0
  43. package/dist-es/pagination/ListCisScanResultsAggregatedByTargetResourcePaginator.js +4 -0
  44. package/dist-es/pagination/ListCisScansPaginator.js +4 -0
  45. package/dist-es/pagination/index.js +5 -0
  46. package/dist-es/protocols/Aws_restJson1.js +847 -20
  47. package/dist-types/Inspector2.d.ts +91 -0
  48. package/dist-types/Inspector2Client.d.ts +15 -2
  49. package/dist-types/commands/CreateCisScanConfigurationCommand.d.ts +110 -0
  50. package/dist-types/commands/DeleteCisScanConfigurationCommand.d.ts +74 -0
  51. package/dist-types/commands/GetCisScanReportCommand.d.ts +75 -0
  52. package/dist-types/commands/GetCisScanResultDetailsCommand.d.ts +125 -0
  53. package/dist-types/commands/ListCisScanConfigurationsCommand.d.ts +141 -0
  54. package/dist-types/commands/ListCisScanResultsAggregatedByChecksCommand.d.ts +129 -0
  55. package/dist-types/commands/ListCisScanResultsAggregatedByTargetResourceCommand.d.ts +152 -0
  56. package/dist-types/commands/ListCisScansCommand.d.ts +158 -0
  57. package/dist-types/commands/ListCoverageCommand.d.ts +2 -1
  58. package/dist-types/commands/ListCoverageStatisticsCommand.d.ts +1 -1
  59. package/dist-types/commands/ListDelegatedAdminAccountsCommand.d.ts +1 -1
  60. package/dist-types/commands/ListFiltersCommand.d.ts +1 -1
  61. package/dist-types/commands/ListFindingAggregationsCommand.d.ts +1 -1
  62. package/dist-types/commands/ListFindingsCommand.d.ts +1 -1
  63. package/dist-types/commands/ListMembersCommand.d.ts +1 -1
  64. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  65. package/dist-types/commands/ListUsageTotalsCommand.d.ts +1 -1
  66. package/dist-types/commands/ResetEncryptionKeyCommand.d.ts +1 -1
  67. package/dist-types/commands/SearchVulnerabilitiesCommand.d.ts +1 -1
  68. package/dist-types/commands/SendCisSessionHealthCommand.d.ts +77 -0
  69. package/dist-types/commands/SendCisSessionTelemetryCommand.d.ts +84 -0
  70. package/dist-types/commands/StartCisSessionCommand.d.ts +79 -0
  71. package/dist-types/commands/StopCisSessionCommand.d.ts +98 -0
  72. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  73. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  74. package/dist-types/commands/UpdateCisScanConfigurationCommand.d.ts +111 -0
  75. package/dist-types/commands/UpdateConfigurationCommand.d.ts +1 -1
  76. package/dist-types/commands/UpdateEc2DeepInspectionConfigurationCommand.d.ts +1 -1
  77. package/dist-types/commands/UpdateEncryptionKeyCommand.d.ts +1 -1
  78. package/dist-types/commands/UpdateFilterCommand.d.ts +1 -1
  79. package/dist-types/commands/UpdateOrgEc2DeepInspectionConfigurationCommand.d.ts +1 -1
  80. package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +1 -1
  81. package/dist-types/commands/index.d.ts +13 -0
  82. package/dist-types/models/index.d.ts +1 -0
  83. package/dist-types/models/models_0.d.ts +2223 -1516
  84. package/dist-types/models/models_1.d.ts +1053 -0
  85. package/dist-types/pagination/GetCisScanResultDetailsPaginator.d.ts +7 -0
  86. package/dist-types/pagination/ListCisScanConfigurationsPaginator.d.ts +7 -0
  87. package/dist-types/pagination/ListCisScanResultsAggregatedByChecksPaginator.d.ts +7 -0
  88. package/dist-types/pagination/ListCisScanResultsAggregatedByTargetResourcePaginator.d.ts +7 -0
  89. package/dist-types/pagination/ListCisScansPaginator.d.ts +7 -0
  90. package/dist-types/pagination/index.d.ts +5 -0
  91. package/dist-types/protocols/Aws_restJson1.d.ts +117 -0
  92. package/dist-types/ts3.4/Inspector2.d.ts +233 -0
  93. package/dist-types/ts3.4/Inspector2Client.d.ts +78 -0
  94. package/dist-types/ts3.4/commands/CreateCisScanConfigurationCommand.d.ts +30 -0
  95. package/dist-types/ts3.4/commands/DeleteCisScanConfigurationCommand.d.ts +30 -0
  96. package/dist-types/ts3.4/commands/GetCisScanReportCommand.d.ts +29 -0
  97. package/dist-types/ts3.4/commands/GetCisScanResultDetailsCommand.d.ts +30 -0
  98. package/dist-types/ts3.4/commands/ListCisScanConfigurationsCommand.d.ts +30 -0
  99. package/dist-types/ts3.4/commands/ListCisScanResultsAggregatedByChecksCommand.d.ts +30 -0
  100. package/dist-types/ts3.4/commands/ListCisScanResultsAggregatedByTargetResourceCommand.d.ts +30 -0
  101. package/dist-types/ts3.4/commands/ListCisScansCommand.d.ts +26 -0
  102. package/dist-types/ts3.4/commands/ListCoverageCommand.d.ts +2 -1
  103. package/dist-types/ts3.4/commands/ListCoverageStatisticsCommand.d.ts +1 -1
  104. package/dist-types/ts3.4/commands/ListDelegatedAdminAccountsCommand.d.ts +1 -1
  105. package/dist-types/ts3.4/commands/ListFiltersCommand.d.ts +1 -1
  106. package/dist-types/ts3.4/commands/ListFindingAggregationsCommand.d.ts +1 -1
  107. package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +1 -1
  108. package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +1 -1
  109. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  110. package/dist-types/ts3.4/commands/ListUsageTotalsCommand.d.ts +1 -1
  111. package/dist-types/ts3.4/commands/ResetEncryptionKeyCommand.d.ts +1 -1
  112. package/dist-types/ts3.4/commands/SearchVulnerabilitiesCommand.d.ts +1 -1
  113. package/dist-types/ts3.4/commands/SendCisSessionHealthCommand.d.ts +30 -0
  114. package/dist-types/ts3.4/commands/SendCisSessionTelemetryCommand.d.ts +30 -0
  115. package/dist-types/ts3.4/commands/StartCisSessionCommand.d.ts +29 -0
  116. package/dist-types/ts3.4/commands/StopCisSessionCommand.d.ts +29 -0
  117. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  118. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  119. package/dist-types/ts3.4/commands/UpdateCisScanConfigurationCommand.d.ts +30 -0
  120. package/dist-types/ts3.4/commands/UpdateConfigurationCommand.d.ts +1 -1
  121. package/dist-types/ts3.4/commands/UpdateEc2DeepInspectionConfigurationCommand.d.ts +1 -1
  122. package/dist-types/ts3.4/commands/UpdateEncryptionKeyCommand.d.ts +1 -1
  123. package/dist-types/ts3.4/commands/UpdateFilterCommand.d.ts +1 -1
  124. package/dist-types/ts3.4/commands/UpdateOrgEc2DeepInspectionConfigurationCommand.d.ts +1 -1
  125. package/dist-types/ts3.4/commands/UpdateOrganizationConfigurationCommand.d.ts +1 -1
  126. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  127. package/dist-types/ts3.4/models/index.d.ts +1 -0
  128. package/dist-types/ts3.4/models/models_0.d.ts +449 -192
  129. package/dist-types/ts3.4/models/models_1.d.ts +309 -0
  130. package/dist-types/ts3.4/pagination/GetCisScanResultDetailsPaginator.d.ts +11 -0
  131. package/dist-types/ts3.4/pagination/ListCisScanConfigurationsPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/ListCisScanResultsAggregatedByChecksPaginator.d.ts +11 -0
  133. package/dist-types/ts3.4/pagination/ListCisScanResultsAggregatedByTargetResourcePaginator.d.ts +11 -0
  134. package/dist-types/ts3.4/pagination/ListCisScansPaginator.d.ts +11 -0
  135. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  136. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +156 -0
  137. package/package.json +3 -3
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { GetCisScanResultDetailsCommandInput, GetCisScanResultDetailsCommandOutput } from "../commands/GetCisScanResultDetailsCommand";
3
+ import { Inspector2PaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateGetCisScanResultDetails: (config: Inspector2PaginationConfiguration, input: GetCisScanResultDetailsCommandInput, ...rest: any[]) => Paginator<GetCisScanResultDetailsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListCisScanConfigurationsCommandInput, ListCisScanConfigurationsCommandOutput } from "../commands/ListCisScanConfigurationsCommand";
3
+ import { Inspector2PaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCisScanConfigurations: (config: Inspector2PaginationConfiguration, input: ListCisScanConfigurationsCommandInput, ...rest: any[]) => Paginator<ListCisScanConfigurationsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListCisScanResultsAggregatedByChecksCommandInput, ListCisScanResultsAggregatedByChecksCommandOutput } from "../commands/ListCisScanResultsAggregatedByChecksCommand";
3
+ import { Inspector2PaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCisScanResultsAggregatedByChecks: (config: Inspector2PaginationConfiguration, input: ListCisScanResultsAggregatedByChecksCommandInput, ...rest: any[]) => Paginator<ListCisScanResultsAggregatedByChecksCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListCisScanResultsAggregatedByTargetResourceCommandInput, ListCisScanResultsAggregatedByTargetResourceCommandOutput } from "../commands/ListCisScanResultsAggregatedByTargetResourceCommand";
3
+ import { Inspector2PaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCisScanResultsAggregatedByTargetResource: (config: Inspector2PaginationConfiguration, input: ListCisScanResultsAggregatedByTargetResourceCommandInput, ...rest: any[]) => Paginator<ListCisScanResultsAggregatedByTargetResourceCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListCisScansCommandInput, ListCisScansCommandOutput } from "../commands/ListCisScansCommand";
3
+ import { Inspector2PaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCisScans: (config: Inspector2PaginationConfiguration, input: ListCisScansCommandInput, ...rest: any[]) => Paginator<ListCisScansCommandOutput>;
@@ -1,5 +1,10 @@
1
+ export * from "./GetCisScanResultDetailsPaginator";
1
2
  export * from "./Interfaces";
2
3
  export * from "./ListAccountPermissionsPaginator";
4
+ export * from "./ListCisScanConfigurationsPaginator";
5
+ export * from "./ListCisScanResultsAggregatedByChecksPaginator";
6
+ export * from "./ListCisScanResultsAggregatedByTargetResourcePaginator";
7
+ export * from "./ListCisScansPaginator";
3
8
  export * from "./ListCoveragePaginator";
4
9
  export * from "./ListCoverageStatisticsPaginator";
5
10
  export * from "./ListDelegatedAdminAccountsPaginator";
@@ -9,9 +9,11 @@ import { BatchGetMemberEc2DeepInspectionStatusCommandInput, BatchGetMemberEc2Dee
9
9
  import { BatchUpdateMemberEc2DeepInspectionStatusCommandInput, BatchUpdateMemberEc2DeepInspectionStatusCommandOutput } from "../commands/BatchUpdateMemberEc2DeepInspectionStatusCommand";
10
10
  import { CancelFindingsReportCommandInput, CancelFindingsReportCommandOutput } from "../commands/CancelFindingsReportCommand";
11
11
  import { CancelSbomExportCommandInput, CancelSbomExportCommandOutput } from "../commands/CancelSbomExportCommand";
12
+ import { CreateCisScanConfigurationCommandInput, CreateCisScanConfigurationCommandOutput } from "../commands/CreateCisScanConfigurationCommand";
12
13
  import { CreateFilterCommandInput, CreateFilterCommandOutput } from "../commands/CreateFilterCommand";
13
14
  import { CreateFindingsReportCommandInput, CreateFindingsReportCommandOutput } from "../commands/CreateFindingsReportCommand";
14
15
  import { CreateSbomExportCommandInput, CreateSbomExportCommandOutput } from "../commands/CreateSbomExportCommand";
16
+ import { DeleteCisScanConfigurationCommandInput, DeleteCisScanConfigurationCommandOutput } from "../commands/DeleteCisScanConfigurationCommand";
15
17
  import { DeleteFilterCommandInput, DeleteFilterCommandOutput } from "../commands/DeleteFilterCommand";
16
18
  import { DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput } from "../commands/DescribeOrganizationConfigurationCommand";
17
19
  import { DisableCommandInput, DisableCommandOutput } from "../commands/DisableCommand";
@@ -19,6 +21,8 @@ import { DisableDelegatedAdminAccountCommandInput, DisableDelegatedAdminAccountC
19
21
  import { DisassociateMemberCommandInput, DisassociateMemberCommandOutput } from "../commands/DisassociateMemberCommand";
20
22
  import { EnableCommandInput, EnableCommandOutput } from "../commands/EnableCommand";
21
23
  import { EnableDelegatedAdminAccountCommandInput, EnableDelegatedAdminAccountCommandOutput } from "../commands/EnableDelegatedAdminAccountCommand";
24
+ import { GetCisScanReportCommandInput, GetCisScanReportCommandOutput } from "../commands/GetCisScanReportCommand";
25
+ import { GetCisScanResultDetailsCommandInput, GetCisScanResultDetailsCommandOutput } from "../commands/GetCisScanResultDetailsCommand";
22
26
  import { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "../commands/GetConfigurationCommand";
23
27
  import { GetDelegatedAdminAccountCommandInput, GetDelegatedAdminAccountCommandOutput } from "../commands/GetDelegatedAdminAccountCommand";
24
28
  import { GetEc2DeepInspectionConfigurationCommandInput, GetEc2DeepInspectionConfigurationCommandOutput } from "../commands/GetEc2DeepInspectionConfigurationCommand";
@@ -27,6 +31,10 @@ import { GetFindingsReportStatusCommandInput, GetFindingsReportStatusCommandOutp
27
31
  import { GetMemberCommandInput, GetMemberCommandOutput } from "../commands/GetMemberCommand";
28
32
  import { GetSbomExportCommandInput, GetSbomExportCommandOutput } from "../commands/GetSbomExportCommand";
29
33
  import { ListAccountPermissionsCommandInput, ListAccountPermissionsCommandOutput } from "../commands/ListAccountPermissionsCommand";
34
+ import { ListCisScanConfigurationsCommandInput, ListCisScanConfigurationsCommandOutput } from "../commands/ListCisScanConfigurationsCommand";
35
+ import { ListCisScanResultsAggregatedByChecksCommandInput, ListCisScanResultsAggregatedByChecksCommandOutput } from "../commands/ListCisScanResultsAggregatedByChecksCommand";
36
+ import { ListCisScanResultsAggregatedByTargetResourceCommandInput, ListCisScanResultsAggregatedByTargetResourceCommandOutput } from "../commands/ListCisScanResultsAggregatedByTargetResourceCommand";
37
+ import { ListCisScansCommandInput, ListCisScansCommandOutput } from "../commands/ListCisScansCommand";
30
38
  import { ListCoverageCommandInput, ListCoverageCommandOutput } from "../commands/ListCoverageCommand";
31
39
  import { ListCoverageStatisticsCommandInput, ListCoverageStatisticsCommandOutput } from "../commands/ListCoverageStatisticsCommand";
32
40
  import { ListDelegatedAdminAccountsCommandInput, ListDelegatedAdminAccountsCommandOutput } from "../commands/ListDelegatedAdminAccountsCommand";
@@ -38,8 +46,13 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
38
46
  import { ListUsageTotalsCommandInput, ListUsageTotalsCommandOutput } from "../commands/ListUsageTotalsCommand";
39
47
  import { ResetEncryptionKeyCommandInput, ResetEncryptionKeyCommandOutput } from "../commands/ResetEncryptionKeyCommand";
40
48
  import { SearchVulnerabilitiesCommandInput, SearchVulnerabilitiesCommandOutput } from "../commands/SearchVulnerabilitiesCommand";
49
+ import { SendCisSessionHealthCommandInput, SendCisSessionHealthCommandOutput } from "../commands/SendCisSessionHealthCommand";
50
+ import { SendCisSessionTelemetryCommandInput, SendCisSessionTelemetryCommandOutput } from "../commands/SendCisSessionTelemetryCommand";
51
+ import { StartCisSessionCommandInput, StartCisSessionCommandOutput } from "../commands/StartCisSessionCommand";
52
+ import { StopCisSessionCommandInput, StopCisSessionCommandOutput } from "../commands/StopCisSessionCommand";
41
53
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
42
54
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
55
+ import { UpdateCisScanConfigurationCommandInput, UpdateCisScanConfigurationCommandOutput } from "../commands/UpdateCisScanConfigurationCommand";
43
56
  import { UpdateConfigurationCommandInput, UpdateConfigurationCommandOutput } from "../commands/UpdateConfigurationCommand";
44
57
  import { UpdateEc2DeepInspectionConfigurationCommandInput, UpdateEc2DeepInspectionConfigurationCommandOutput } from "../commands/UpdateEc2DeepInspectionConfigurationCommand";
45
58
  import { UpdateEncryptionKeyCommandInput, UpdateEncryptionKeyCommandOutput } from "../commands/UpdateEncryptionKeyCommand";
@@ -82,6 +95,10 @@ export declare const se_CancelFindingsReportCommand: (input: CancelFindingsRepor
82
95
  * serializeAws_restJson1CancelSbomExportCommand
83
96
  */
84
97
  export declare const se_CancelSbomExportCommand: (input: CancelSbomExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
+ /**
99
+ * serializeAws_restJson1CreateCisScanConfigurationCommand
100
+ */
101
+ export declare const se_CreateCisScanConfigurationCommand: (input: CreateCisScanConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
102
  /**
86
103
  * serializeAws_restJson1CreateFilterCommand
87
104
  */
@@ -94,6 +111,10 @@ export declare const se_CreateFindingsReportCommand: (input: CreateFindingsRepor
94
111
  * serializeAws_restJson1CreateSbomExportCommand
95
112
  */
96
113
  export declare const se_CreateSbomExportCommand: (input: CreateSbomExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
114
+ /**
115
+ * serializeAws_restJson1DeleteCisScanConfigurationCommand
116
+ */
117
+ export declare const se_DeleteCisScanConfigurationCommand: (input: DeleteCisScanConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
118
  /**
98
119
  * serializeAws_restJson1DeleteFilterCommand
99
120
  */
@@ -122,6 +143,14 @@ export declare const se_EnableCommand: (input: EnableCommandInput, context: __Se
122
143
  * serializeAws_restJson1EnableDelegatedAdminAccountCommand
123
144
  */
124
145
  export declare const se_EnableDelegatedAdminAccountCommand: (input: EnableDelegatedAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
146
+ /**
147
+ * serializeAws_restJson1GetCisScanReportCommand
148
+ */
149
+ export declare const se_GetCisScanReportCommand: (input: GetCisScanReportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
150
+ /**
151
+ * serializeAws_restJson1GetCisScanResultDetailsCommand
152
+ */
153
+ export declare const se_GetCisScanResultDetailsCommand: (input: GetCisScanResultDetailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
125
154
  /**
126
155
  * serializeAws_restJson1GetConfigurationCommand
127
156
  */
@@ -154,6 +183,22 @@ export declare const se_GetSbomExportCommand: (input: GetSbomExportCommandInput,
154
183
  * serializeAws_restJson1ListAccountPermissionsCommand
155
184
  */
156
185
  export declare const se_ListAccountPermissionsCommand: (input: ListAccountPermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
186
+ /**
187
+ * serializeAws_restJson1ListCisScanConfigurationsCommand
188
+ */
189
+ export declare const se_ListCisScanConfigurationsCommand: (input: ListCisScanConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
190
+ /**
191
+ * serializeAws_restJson1ListCisScanResultsAggregatedByChecksCommand
192
+ */
193
+ export declare const se_ListCisScanResultsAggregatedByChecksCommand: (input: ListCisScanResultsAggregatedByChecksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
194
+ /**
195
+ * serializeAws_restJson1ListCisScanResultsAggregatedByTargetResourceCommand
196
+ */
197
+ export declare const se_ListCisScanResultsAggregatedByTargetResourceCommand: (input: ListCisScanResultsAggregatedByTargetResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
198
+ /**
199
+ * serializeAws_restJson1ListCisScansCommand
200
+ */
201
+ export declare const se_ListCisScansCommand: (input: ListCisScansCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
157
202
  /**
158
203
  * serializeAws_restJson1ListCoverageCommand
159
204
  */
@@ -198,6 +243,22 @@ export declare const se_ResetEncryptionKeyCommand: (input: ResetEncryptionKeyCom
198
243
  * serializeAws_restJson1SearchVulnerabilitiesCommand
199
244
  */
200
245
  export declare const se_SearchVulnerabilitiesCommand: (input: SearchVulnerabilitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
246
+ /**
247
+ * serializeAws_restJson1SendCisSessionHealthCommand
248
+ */
249
+ export declare const se_SendCisSessionHealthCommand: (input: SendCisSessionHealthCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
250
+ /**
251
+ * serializeAws_restJson1SendCisSessionTelemetryCommand
252
+ */
253
+ export declare const se_SendCisSessionTelemetryCommand: (input: SendCisSessionTelemetryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
254
+ /**
255
+ * serializeAws_restJson1StartCisSessionCommand
256
+ */
257
+ export declare const se_StartCisSessionCommand: (input: StartCisSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
258
+ /**
259
+ * serializeAws_restJson1StopCisSessionCommand
260
+ */
261
+ export declare const se_StopCisSessionCommand: (input: StopCisSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
201
262
  /**
202
263
  * serializeAws_restJson1TagResourceCommand
203
264
  */
@@ -206,6 +267,10 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
206
267
  * serializeAws_restJson1UntagResourceCommand
207
268
  */
208
269
  export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
270
+ /**
271
+ * serializeAws_restJson1UpdateCisScanConfigurationCommand
272
+ */
273
+ export declare const se_UpdateCisScanConfigurationCommand: (input: UpdateCisScanConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
209
274
  /**
210
275
  * serializeAws_restJson1UpdateConfigurationCommand
211
276
  */
@@ -266,6 +331,10 @@ export declare const de_CancelFindingsReportCommand: (output: __HttpResponse, co
266
331
  * deserializeAws_restJson1CancelSbomExportCommand
267
332
  */
268
333
  export declare const de_CancelSbomExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelSbomExportCommandOutput>;
334
+ /**
335
+ * deserializeAws_restJson1CreateCisScanConfigurationCommand
336
+ */
337
+ export declare const de_CreateCisScanConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCisScanConfigurationCommandOutput>;
269
338
  /**
270
339
  * deserializeAws_restJson1CreateFilterCommand
271
340
  */
@@ -278,6 +347,10 @@ export declare const de_CreateFindingsReportCommand: (output: __HttpResponse, co
278
347
  * deserializeAws_restJson1CreateSbomExportCommand
279
348
  */
280
349
  export declare const de_CreateSbomExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSbomExportCommandOutput>;
350
+ /**
351
+ * deserializeAws_restJson1DeleteCisScanConfigurationCommand
352
+ */
353
+ export declare const de_DeleteCisScanConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCisScanConfigurationCommandOutput>;
281
354
  /**
282
355
  * deserializeAws_restJson1DeleteFilterCommand
283
356
  */
@@ -306,6 +379,14 @@ export declare const de_EnableCommand: (output: __HttpResponse, context: __Serde
306
379
  * deserializeAws_restJson1EnableDelegatedAdminAccountCommand
307
380
  */
308
381
  export declare const de_EnableDelegatedAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableDelegatedAdminAccountCommandOutput>;
382
+ /**
383
+ * deserializeAws_restJson1GetCisScanReportCommand
384
+ */
385
+ export declare const de_GetCisScanReportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCisScanReportCommandOutput>;
386
+ /**
387
+ * deserializeAws_restJson1GetCisScanResultDetailsCommand
388
+ */
389
+ export declare const de_GetCisScanResultDetailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCisScanResultDetailsCommandOutput>;
309
390
  /**
310
391
  * deserializeAws_restJson1GetConfigurationCommand
311
392
  */
@@ -338,6 +419,22 @@ export declare const de_GetSbomExportCommand: (output: __HttpResponse, context:
338
419
  * deserializeAws_restJson1ListAccountPermissionsCommand
339
420
  */
340
421
  export declare const de_ListAccountPermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAccountPermissionsCommandOutput>;
422
+ /**
423
+ * deserializeAws_restJson1ListCisScanConfigurationsCommand
424
+ */
425
+ export declare const de_ListCisScanConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCisScanConfigurationsCommandOutput>;
426
+ /**
427
+ * deserializeAws_restJson1ListCisScanResultsAggregatedByChecksCommand
428
+ */
429
+ export declare const de_ListCisScanResultsAggregatedByChecksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCisScanResultsAggregatedByChecksCommandOutput>;
430
+ /**
431
+ * deserializeAws_restJson1ListCisScanResultsAggregatedByTargetResourceCommand
432
+ */
433
+ export declare const de_ListCisScanResultsAggregatedByTargetResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCisScanResultsAggregatedByTargetResourceCommandOutput>;
434
+ /**
435
+ * deserializeAws_restJson1ListCisScansCommand
436
+ */
437
+ export declare const de_ListCisScansCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCisScansCommandOutput>;
341
438
  /**
342
439
  * deserializeAws_restJson1ListCoverageCommand
343
440
  */
@@ -382,6 +479,22 @@ export declare const de_ResetEncryptionKeyCommand: (output: __HttpResponse, cont
382
479
  * deserializeAws_restJson1SearchVulnerabilitiesCommand
383
480
  */
384
481
  export declare const de_SearchVulnerabilitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchVulnerabilitiesCommandOutput>;
482
+ /**
483
+ * deserializeAws_restJson1SendCisSessionHealthCommand
484
+ */
485
+ export declare const de_SendCisSessionHealthCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendCisSessionHealthCommandOutput>;
486
+ /**
487
+ * deserializeAws_restJson1SendCisSessionTelemetryCommand
488
+ */
489
+ export declare const de_SendCisSessionTelemetryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendCisSessionTelemetryCommandOutput>;
490
+ /**
491
+ * deserializeAws_restJson1StartCisSessionCommand
492
+ */
493
+ export declare const de_StartCisSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCisSessionCommandOutput>;
494
+ /**
495
+ * deserializeAws_restJson1StopCisSessionCommand
496
+ */
497
+ export declare const de_StopCisSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopCisSessionCommandOutput>;
385
498
  /**
386
499
  * deserializeAws_restJson1TagResourceCommand
387
500
  */
@@ -390,6 +503,10 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
390
503
  * deserializeAws_restJson1UntagResourceCommand
391
504
  */
392
505
  export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
506
+ /**
507
+ * deserializeAws_restJson1UpdateCisScanConfigurationCommand
508
+ */
509
+ export declare const de_UpdateCisScanConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCisScanConfigurationCommandOutput>;
393
510
  /**
394
511
  * deserializeAws_restJson1UpdateConfigurationCommand
395
512
  */
@@ -35,6 +35,10 @@ import {
35
35
  CancelSbomExportCommandInput,
36
36
  CancelSbomExportCommandOutput,
37
37
  } from "./commands/CancelSbomExportCommand";
38
+ import {
39
+ CreateCisScanConfigurationCommandInput,
40
+ CreateCisScanConfigurationCommandOutput,
41
+ } from "./commands/CreateCisScanConfigurationCommand";
38
42
  import {
39
43
  CreateFilterCommandInput,
40
44
  CreateFilterCommandOutput,
@@ -47,6 +51,10 @@ import {
47
51
  CreateSbomExportCommandInput,
48
52
  CreateSbomExportCommandOutput,
49
53
  } from "./commands/CreateSbomExportCommand";
54
+ import {
55
+ DeleteCisScanConfigurationCommandInput,
56
+ DeleteCisScanConfigurationCommandOutput,
57
+ } from "./commands/DeleteCisScanConfigurationCommand";
50
58
  import {
51
59
  DeleteFilterCommandInput,
52
60
  DeleteFilterCommandOutput,
@@ -75,6 +83,14 @@ import {
75
83
  EnableDelegatedAdminAccountCommandInput,
76
84
  EnableDelegatedAdminAccountCommandOutput,
77
85
  } from "./commands/EnableDelegatedAdminAccountCommand";
86
+ import {
87
+ GetCisScanReportCommandInput,
88
+ GetCisScanReportCommandOutput,
89
+ } from "./commands/GetCisScanReportCommand";
90
+ import {
91
+ GetCisScanResultDetailsCommandInput,
92
+ GetCisScanResultDetailsCommandOutput,
93
+ } from "./commands/GetCisScanResultDetailsCommand";
78
94
  import {
79
95
  GetConfigurationCommandInput,
80
96
  GetConfigurationCommandOutput,
@@ -107,6 +123,22 @@ import {
107
123
  ListAccountPermissionsCommandInput,
108
124
  ListAccountPermissionsCommandOutput,
109
125
  } from "./commands/ListAccountPermissionsCommand";
126
+ import {
127
+ ListCisScanConfigurationsCommandInput,
128
+ ListCisScanConfigurationsCommandOutput,
129
+ } from "./commands/ListCisScanConfigurationsCommand";
130
+ import {
131
+ ListCisScanResultsAggregatedByChecksCommandInput,
132
+ ListCisScanResultsAggregatedByChecksCommandOutput,
133
+ } from "./commands/ListCisScanResultsAggregatedByChecksCommand";
134
+ import {
135
+ ListCisScanResultsAggregatedByTargetResourceCommandInput,
136
+ ListCisScanResultsAggregatedByTargetResourceCommandOutput,
137
+ } from "./commands/ListCisScanResultsAggregatedByTargetResourceCommand";
138
+ import {
139
+ ListCisScansCommandInput,
140
+ ListCisScansCommandOutput,
141
+ } from "./commands/ListCisScansCommand";
110
142
  import {
111
143
  ListCoverageCommandInput,
112
144
  ListCoverageCommandOutput,
@@ -151,6 +183,22 @@ import {
151
183
  SearchVulnerabilitiesCommandInput,
152
184
  SearchVulnerabilitiesCommandOutput,
153
185
  } from "./commands/SearchVulnerabilitiesCommand";
186
+ import {
187
+ SendCisSessionHealthCommandInput,
188
+ SendCisSessionHealthCommandOutput,
189
+ } from "./commands/SendCisSessionHealthCommand";
190
+ import {
191
+ SendCisSessionTelemetryCommandInput,
192
+ SendCisSessionTelemetryCommandOutput,
193
+ } from "./commands/SendCisSessionTelemetryCommand";
194
+ import {
195
+ StartCisSessionCommandInput,
196
+ StartCisSessionCommandOutput,
197
+ } from "./commands/StartCisSessionCommand";
198
+ import {
199
+ StopCisSessionCommandInput,
200
+ StopCisSessionCommandOutput,
201
+ } from "./commands/StopCisSessionCommand";
154
202
  import {
155
203
  TagResourceCommandInput,
156
204
  TagResourceCommandOutput,
@@ -159,6 +207,10 @@ import {
159
207
  UntagResourceCommandInput,
160
208
  UntagResourceCommandOutput,
161
209
  } from "./commands/UntagResourceCommand";
210
+ import {
211
+ UpdateCisScanConfigurationCommandInput,
212
+ UpdateCisScanConfigurationCommandOutput,
213
+ } from "./commands/UpdateCisScanConfigurationCommand";
162
214
  import {
163
215
  UpdateConfigurationCommandInput,
164
216
  UpdateConfigurationCommandOutput,
@@ -314,6 +366,19 @@ export interface Inspector2 {
314
366
  options: __HttpHandlerOptions,
315
367
  cb: (err: any, data?: CancelSbomExportCommandOutput) => void
316
368
  ): void;
369
+ createCisScanConfiguration(
370
+ args: CreateCisScanConfigurationCommandInput,
371
+ options?: __HttpHandlerOptions
372
+ ): Promise<CreateCisScanConfigurationCommandOutput>;
373
+ createCisScanConfiguration(
374
+ args: CreateCisScanConfigurationCommandInput,
375
+ cb: (err: any, data?: CreateCisScanConfigurationCommandOutput) => void
376
+ ): void;
377
+ createCisScanConfiguration(
378
+ args: CreateCisScanConfigurationCommandInput,
379
+ options: __HttpHandlerOptions,
380
+ cb: (err: any, data?: CreateCisScanConfigurationCommandOutput) => void
381
+ ): void;
317
382
  createFilter(
318
383
  args: CreateFilterCommandInput,
319
384
  options?: __HttpHandlerOptions
@@ -353,6 +418,19 @@ export interface Inspector2 {
353
418
  options: __HttpHandlerOptions,
354
419
  cb: (err: any, data?: CreateSbomExportCommandOutput) => void
355
420
  ): void;
421
+ deleteCisScanConfiguration(
422
+ args: DeleteCisScanConfigurationCommandInput,
423
+ options?: __HttpHandlerOptions
424
+ ): Promise<DeleteCisScanConfigurationCommandOutput>;
425
+ deleteCisScanConfiguration(
426
+ args: DeleteCisScanConfigurationCommandInput,
427
+ cb: (err: any, data?: DeleteCisScanConfigurationCommandOutput) => void
428
+ ): void;
429
+ deleteCisScanConfiguration(
430
+ args: DeleteCisScanConfigurationCommandInput,
431
+ options: __HttpHandlerOptions,
432
+ cb: (err: any, data?: DeleteCisScanConfigurationCommandOutput) => void
433
+ ): void;
356
434
  deleteFilter(
357
435
  args: DeleteFilterCommandInput,
358
436
  options?: __HttpHandlerOptions
@@ -450,6 +528,32 @@ export interface Inspector2 {
450
528
  options: __HttpHandlerOptions,
451
529
  cb: (err: any, data?: EnableDelegatedAdminAccountCommandOutput) => void
452
530
  ): void;
531
+ getCisScanReport(
532
+ args: GetCisScanReportCommandInput,
533
+ options?: __HttpHandlerOptions
534
+ ): Promise<GetCisScanReportCommandOutput>;
535
+ getCisScanReport(
536
+ args: GetCisScanReportCommandInput,
537
+ cb: (err: any, data?: GetCisScanReportCommandOutput) => void
538
+ ): void;
539
+ getCisScanReport(
540
+ args: GetCisScanReportCommandInput,
541
+ options: __HttpHandlerOptions,
542
+ cb: (err: any, data?: GetCisScanReportCommandOutput) => void
543
+ ): void;
544
+ getCisScanResultDetails(
545
+ args: GetCisScanResultDetailsCommandInput,
546
+ options?: __HttpHandlerOptions
547
+ ): Promise<GetCisScanResultDetailsCommandOutput>;
548
+ getCisScanResultDetails(
549
+ args: GetCisScanResultDetailsCommandInput,
550
+ cb: (err: any, data?: GetCisScanResultDetailsCommandOutput) => void
551
+ ): void;
552
+ getCisScanResultDetails(
553
+ args: GetCisScanResultDetailsCommandInput,
554
+ options: __HttpHandlerOptions,
555
+ cb: (err: any, data?: GetCisScanResultDetailsCommandOutput) => void
556
+ ): void;
453
557
  getConfiguration(
454
558
  args: GetConfigurationCommandInput,
455
559
  options?: __HttpHandlerOptions
@@ -560,6 +664,70 @@ export interface Inspector2 {
560
664
  options: __HttpHandlerOptions,
561
665
  cb: (err: any, data?: ListAccountPermissionsCommandOutput) => void
562
666
  ): void;
667
+ listCisScanConfigurations(
668
+ args: ListCisScanConfigurationsCommandInput,
669
+ options?: __HttpHandlerOptions
670
+ ): Promise<ListCisScanConfigurationsCommandOutput>;
671
+ listCisScanConfigurations(
672
+ args: ListCisScanConfigurationsCommandInput,
673
+ cb: (err: any, data?: ListCisScanConfigurationsCommandOutput) => void
674
+ ): void;
675
+ listCisScanConfigurations(
676
+ args: ListCisScanConfigurationsCommandInput,
677
+ options: __HttpHandlerOptions,
678
+ cb: (err: any, data?: ListCisScanConfigurationsCommandOutput) => void
679
+ ): void;
680
+ listCisScanResultsAggregatedByChecks(
681
+ args: ListCisScanResultsAggregatedByChecksCommandInput,
682
+ options?: __HttpHandlerOptions
683
+ ): Promise<ListCisScanResultsAggregatedByChecksCommandOutput>;
684
+ listCisScanResultsAggregatedByChecks(
685
+ args: ListCisScanResultsAggregatedByChecksCommandInput,
686
+ cb: (
687
+ err: any,
688
+ data?: ListCisScanResultsAggregatedByChecksCommandOutput
689
+ ) => void
690
+ ): void;
691
+ listCisScanResultsAggregatedByChecks(
692
+ args: ListCisScanResultsAggregatedByChecksCommandInput,
693
+ options: __HttpHandlerOptions,
694
+ cb: (
695
+ err: any,
696
+ data?: ListCisScanResultsAggregatedByChecksCommandOutput
697
+ ) => void
698
+ ): void;
699
+ listCisScanResultsAggregatedByTargetResource(
700
+ args: ListCisScanResultsAggregatedByTargetResourceCommandInput,
701
+ options?: __HttpHandlerOptions
702
+ ): Promise<ListCisScanResultsAggregatedByTargetResourceCommandOutput>;
703
+ listCisScanResultsAggregatedByTargetResource(
704
+ args: ListCisScanResultsAggregatedByTargetResourceCommandInput,
705
+ cb: (
706
+ err: any,
707
+ data?: ListCisScanResultsAggregatedByTargetResourceCommandOutput
708
+ ) => void
709
+ ): void;
710
+ listCisScanResultsAggregatedByTargetResource(
711
+ args: ListCisScanResultsAggregatedByTargetResourceCommandInput,
712
+ options: __HttpHandlerOptions,
713
+ cb: (
714
+ err: any,
715
+ data?: ListCisScanResultsAggregatedByTargetResourceCommandOutput
716
+ ) => void
717
+ ): void;
718
+ listCisScans(
719
+ args: ListCisScansCommandInput,
720
+ options?: __HttpHandlerOptions
721
+ ): Promise<ListCisScansCommandOutput>;
722
+ listCisScans(
723
+ args: ListCisScansCommandInput,
724
+ cb: (err: any, data?: ListCisScansCommandOutput) => void
725
+ ): void;
726
+ listCisScans(
727
+ args: ListCisScansCommandInput,
728
+ options: __HttpHandlerOptions,
729
+ cb: (err: any, data?: ListCisScansCommandOutput) => void
730
+ ): void;
563
731
  listCoverage(
564
732
  args: ListCoverageCommandInput,
565
733
  options?: __HttpHandlerOptions
@@ -703,6 +871,58 @@ export interface Inspector2 {
703
871
  options: __HttpHandlerOptions,
704
872
  cb: (err: any, data?: SearchVulnerabilitiesCommandOutput) => void
705
873
  ): void;
874
+ sendCisSessionHealth(
875
+ args: SendCisSessionHealthCommandInput,
876
+ options?: __HttpHandlerOptions
877
+ ): Promise<SendCisSessionHealthCommandOutput>;
878
+ sendCisSessionHealth(
879
+ args: SendCisSessionHealthCommandInput,
880
+ cb: (err: any, data?: SendCisSessionHealthCommandOutput) => void
881
+ ): void;
882
+ sendCisSessionHealth(
883
+ args: SendCisSessionHealthCommandInput,
884
+ options: __HttpHandlerOptions,
885
+ cb: (err: any, data?: SendCisSessionHealthCommandOutput) => void
886
+ ): void;
887
+ sendCisSessionTelemetry(
888
+ args: SendCisSessionTelemetryCommandInput,
889
+ options?: __HttpHandlerOptions
890
+ ): Promise<SendCisSessionTelemetryCommandOutput>;
891
+ sendCisSessionTelemetry(
892
+ args: SendCisSessionTelemetryCommandInput,
893
+ cb: (err: any, data?: SendCisSessionTelemetryCommandOutput) => void
894
+ ): void;
895
+ sendCisSessionTelemetry(
896
+ args: SendCisSessionTelemetryCommandInput,
897
+ options: __HttpHandlerOptions,
898
+ cb: (err: any, data?: SendCisSessionTelemetryCommandOutput) => void
899
+ ): void;
900
+ startCisSession(
901
+ args: StartCisSessionCommandInput,
902
+ options?: __HttpHandlerOptions
903
+ ): Promise<StartCisSessionCommandOutput>;
904
+ startCisSession(
905
+ args: StartCisSessionCommandInput,
906
+ cb: (err: any, data?: StartCisSessionCommandOutput) => void
907
+ ): void;
908
+ startCisSession(
909
+ args: StartCisSessionCommandInput,
910
+ options: __HttpHandlerOptions,
911
+ cb: (err: any, data?: StartCisSessionCommandOutput) => void
912
+ ): void;
913
+ stopCisSession(
914
+ args: StopCisSessionCommandInput,
915
+ options?: __HttpHandlerOptions
916
+ ): Promise<StopCisSessionCommandOutput>;
917
+ stopCisSession(
918
+ args: StopCisSessionCommandInput,
919
+ cb: (err: any, data?: StopCisSessionCommandOutput) => void
920
+ ): void;
921
+ stopCisSession(
922
+ args: StopCisSessionCommandInput,
923
+ options: __HttpHandlerOptions,
924
+ cb: (err: any, data?: StopCisSessionCommandOutput) => void
925
+ ): void;
706
926
  tagResource(
707
927
  args: TagResourceCommandInput,
708
928
  options?: __HttpHandlerOptions
@@ -729,6 +949,19 @@ export interface Inspector2 {
729
949
  options: __HttpHandlerOptions,
730
950
  cb: (err: any, data?: UntagResourceCommandOutput) => void
731
951
  ): void;
952
+ updateCisScanConfiguration(
953
+ args: UpdateCisScanConfigurationCommandInput,
954
+ options?: __HttpHandlerOptions
955
+ ): Promise<UpdateCisScanConfigurationCommandOutput>;
956
+ updateCisScanConfiguration(
957
+ args: UpdateCisScanConfigurationCommandInput,
958
+ cb: (err: any, data?: UpdateCisScanConfigurationCommandOutput) => void
959
+ ): void;
960
+ updateCisScanConfiguration(
961
+ args: UpdateCisScanConfigurationCommandInput,
962
+ options: __HttpHandlerOptions,
963
+ cb: (err: any, data?: UpdateCisScanConfigurationCommandOutput) => void
964
+ ): void;
732
965
  updateConfiguration(
733
966
  args: UpdateConfigurationCommandInput,
734
967
  options?: __HttpHandlerOptions