@aws-sdk/client-inspector2 3.300.0 → 3.303.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 (34) hide show
  1. package/dist-cjs/models/models_0.js +362 -419
  2. package/dist-es/models/models_0.js +362 -419
  3. package/dist-types/commands/AssociateMemberCommand.d.ts +1 -1
  4. package/dist-types/commands/BatchGetAccountStatusCommand.d.ts +2 -2
  5. package/dist-types/commands/BatchGetFreeTrialInfoCommand.d.ts +2 -2
  6. package/dist-types/commands/CancelFindingsReportCommand.d.ts +1 -1
  7. package/dist-types/commands/CreateFilterCommand.d.ts +45 -183
  8. package/dist-types/commands/CreateFindingsReportCommand.d.ts +45 -183
  9. package/dist-types/commands/DeleteFilterCommand.d.ts +1 -1
  10. package/dist-types/commands/DisableCommand.d.ts +3 -3
  11. package/dist-types/commands/DisableDelegatedAdminAccountCommand.d.ts +1 -1
  12. package/dist-types/commands/DisassociateMemberCommand.d.ts +1 -1
  13. package/dist-types/commands/EnableCommand.d.ts +3 -3
  14. package/dist-types/commands/EnableDelegatedAdminAccountCommand.d.ts +1 -1
  15. package/dist-types/commands/GetFindingsReportStatusCommand.d.ts +1 -1
  16. package/dist-types/commands/GetMemberCommand.d.ts +1 -1
  17. package/dist-types/commands/ListAccountPermissionsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListCoverageCommand.d.ts +11 -36
  19. package/dist-types/commands/ListCoverageStatisticsCommand.d.ts +11 -36
  20. package/dist-types/commands/ListDelegatedAdminAccountsCommand.d.ts +1 -1
  21. package/dist-types/commands/ListFiltersCommand.d.ts +2 -2
  22. package/dist-types/commands/ListFindingAggregationsCommand.d.ts +35 -125
  23. package/dist-types/commands/ListFindingsCommand.d.ts +45 -183
  24. package/dist-types/commands/ListMembersCommand.d.ts +1 -1
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  26. package/dist-types/commands/ListUsageTotalsCommand.d.ts +2 -2
  27. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  28. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  29. package/dist-types/commands/UpdateConfigurationCommand.d.ts +2 -2
  30. package/dist-types/commands/UpdateFilterCommand.d.ts +44 -182
  31. package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +2 -2
  32. package/dist-types/models/models_0.d.ts +647 -362
  33. package/dist-types/ts3.4/models/models_0.d.ts +449 -362
  34. package/package.json +34 -34
@@ -26,7 +26,7 @@ export interface AssociateMemberCommandOutput extends AssociateMemberResponse, _
26
26
  * import { Inspector2Client, AssociateMemberCommand } from "@aws-sdk/client-inspector2"; // ES Modules import
27
27
  * // const { Inspector2Client, AssociateMemberCommand } = require("@aws-sdk/client-inspector2"); // CommonJS import
28
28
  * const client = new Inspector2Client(config);
29
- * const input = {
29
+ * const input = { // AssociateMemberRequest
30
30
  * accountId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new AssociateMemberCommand(input);
@@ -26,8 +26,8 @@ export interface BatchGetAccountStatusCommandOutput extends BatchGetAccountStatu
26
26
  * import { Inspector2Client, BatchGetAccountStatusCommand } from "@aws-sdk/client-inspector2"; // ES Modules import
27
27
  * // const { Inspector2Client, BatchGetAccountStatusCommand } = require("@aws-sdk/client-inspector2"); // CommonJS import
28
28
  * const client = new Inspector2Client(config);
29
- * const input = {
30
- * accountIds: [
29
+ * const input = { // BatchGetAccountStatusRequest
30
+ * accountIds: [ // AccountIdSet
31
31
  * "STRING_VALUE",
32
32
  * ],
33
33
  * };
@@ -26,8 +26,8 @@ export interface BatchGetFreeTrialInfoCommandOutput extends BatchGetFreeTrialInf
26
26
  * import { Inspector2Client, BatchGetFreeTrialInfoCommand } from "@aws-sdk/client-inspector2"; // ES Modules import
27
27
  * // const { Inspector2Client, BatchGetFreeTrialInfoCommand } = require("@aws-sdk/client-inspector2"); // CommonJS import
28
28
  * const client = new Inspector2Client(config);
29
- * const input = {
30
- * accountIds: [ // required
29
+ * const input = { // BatchGetFreeTrialInfoRequest
30
+ * accountIds: [ // MeteringAccountIdList // required
31
31
  * "STRING_VALUE",
32
32
  * ],
33
33
  * };
@@ -26,7 +26,7 @@ export interface CancelFindingsReportCommandOutput extends CancelFindingsReportR
26
26
  * import { Inspector2Client, CancelFindingsReportCommand } from "@aws-sdk/client-inspector2"; // ES Modules import
27
27
  * // const { Inspector2Client, CancelFindingsReportCommand } = require("@aws-sdk/client-inspector2"); // CommonJS import
28
28
  * const client = new Inspector2Client(config);
29
- * const input = {
29
+ * const input = { // CancelFindingsReportRequest
30
30
  * reportId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new CancelFindingsReportCommand(input);
@@ -26,12 +26,12 @@ export interface CreateFilterCommandOutput extends CreateFilterResponse, __Metad
26
26
  * import { Inspector2Client, CreateFilterCommand } from "@aws-sdk/client-inspector2"; // ES Modules import
27
27
  * // const { Inspector2Client, CreateFilterCommand } = require("@aws-sdk/client-inspector2"); // CommonJS import
28
28
  * const client = new Inspector2Client(config);
29
- * const input = {
29
+ * const input = { // CreateFilterRequest
30
30
  * action: "STRING_VALUE", // required
31
31
  * description: "STRING_VALUE",
32
- * filterCriteria: {
33
- * findingArn: [
34
- * {
32
+ * filterCriteria: { // FilterCriteria
33
+ * findingArn: [ // StringFilterList
34
+ * { // StringFilter
35
35
  * comparison: "STRING_VALUE", // required
36
36
  * value: "STRING_VALUE", // required
37
37
  * },
@@ -54,8 +54,8 @@ export interface CreateFilterCommandOutput extends CreateFilterResponse, __Metad
54
54
  * value: "STRING_VALUE", // required
55
55
  * },
56
56
  * ],
57
- * firstObservedAt: [
58
- * {
57
+ * firstObservedAt: [ // DateFilterList
58
+ * { // DateFilter
59
59
  * startInclusive: new Date("TIMESTAMP"),
60
60
  * endInclusive: new Date("TIMESTAMP"),
61
61
  * },
@@ -78,216 +78,78 @@ export interface CreateFilterCommandOutput extends CreateFilterResponse, __Metad
78
78
  * value: "STRING_VALUE", // required
79
79
  * },
80
80
  * ],
81
- * title: [
82
- * {
83
- * comparison: "STRING_VALUE", // required
84
- * value: "STRING_VALUE", // required
85
- * },
86
- * ],
87
- * inspectorScore: [
88
- * {
81
+ * title: "<StringFilterList>",
82
+ * inspectorScore: [ // NumberFilterList
83
+ * { // NumberFilter
89
84
  * upperInclusive: Number("double"),
90
85
  * lowerInclusive: Number("double"),
91
86
  * },
92
87
  * ],
93
- * resourceType: [
94
- * {
95
- * comparison: "STRING_VALUE", // required
96
- * value: "STRING_VALUE", // required
97
- * },
98
- * ],
99
- * resourceId: [
100
- * {
101
- * comparison: "STRING_VALUE", // required
102
- * value: "STRING_VALUE", // required
103
- * },
104
- * ],
105
- * resourceTags: [
106
- * {
88
+ * resourceType: "<StringFilterList>",
89
+ * resourceId: "<StringFilterList>",
90
+ * resourceTags: [ // MapFilterList
91
+ * { // MapFilter
107
92
  * comparison: "STRING_VALUE", // required
108
93
  * key: "STRING_VALUE", // required
109
94
  * value: "STRING_VALUE",
110
95
  * },
111
96
  * ],
112
- * ec2InstanceImageId: [
113
- * {
114
- * comparison: "STRING_VALUE", // required
115
- * value: "STRING_VALUE", // required
116
- * },
117
- * ],
118
- * ec2InstanceVpcId: [
119
- * {
120
- * comparison: "STRING_VALUE", // required
121
- * value: "STRING_VALUE", // required
122
- * },
123
- * ],
124
- * ec2InstanceSubnetId: [
125
- * {
126
- * comparison: "STRING_VALUE", // required
127
- * value: "STRING_VALUE", // required
128
- * },
129
- * ],
97
+ * ec2InstanceImageId: "<StringFilterList>",
98
+ * ec2InstanceVpcId: "<StringFilterList>",
99
+ * ec2InstanceSubnetId: "<StringFilterList>",
130
100
  * ecrImagePushedAt: [
131
101
  * {
132
102
  * startInclusive: new Date("TIMESTAMP"),
133
103
  * endInclusive: new Date("TIMESTAMP"),
134
104
  * },
135
105
  * ],
136
- * ecrImageArchitecture: [
137
- * {
138
- * comparison: "STRING_VALUE", // required
139
- * value: "STRING_VALUE", // required
140
- * },
141
- * ],
142
- * ecrImageRegistry: [
143
- * {
144
- * comparison: "STRING_VALUE", // required
145
- * value: "STRING_VALUE", // required
146
- * },
147
- * ],
148
- * ecrImageRepositoryName: [
149
- * {
150
- * comparison: "STRING_VALUE", // required
151
- * value: "STRING_VALUE", // required
152
- * },
153
- * ],
154
- * ecrImageTags: [
155
- * {
156
- * comparison: "STRING_VALUE", // required
157
- * value: "STRING_VALUE", // required
158
- * },
159
- * ],
160
- * ecrImageHash: [
161
- * {
162
- * comparison: "STRING_VALUE", // required
163
- * value: "STRING_VALUE", // required
164
- * },
165
- * ],
166
- * portRange: [
167
- * {
106
+ * ecrImageArchitecture: "<StringFilterList>",
107
+ * ecrImageRegistry: "<StringFilterList>",
108
+ * ecrImageRepositoryName: "<StringFilterList>",
109
+ * ecrImageTags: "<StringFilterList>",
110
+ * ecrImageHash: "<StringFilterList>",
111
+ * portRange: [ // PortRangeFilterList
112
+ * { // PortRangeFilter
168
113
  * beginInclusive: Number("int"),
169
114
  * endInclusive: Number("int"),
170
115
  * },
171
116
  * ],
172
- * networkProtocol: [
173
- * {
174
- * comparison: "STRING_VALUE", // required
175
- * value: "STRING_VALUE", // required
176
- * },
177
- * ],
178
- * componentId: [
179
- * {
180
- * comparison: "STRING_VALUE", // required
181
- * value: "STRING_VALUE", // required
182
- * },
183
- * ],
184
- * componentType: [
185
- * {
186
- * comparison: "STRING_VALUE", // required
187
- * value: "STRING_VALUE", // required
188
- * },
189
- * ],
190
- * vulnerabilityId: [
191
- * {
192
- * comparison: "STRING_VALUE", // required
193
- * value: "STRING_VALUE", // required
194
- * },
195
- * ],
196
- * vulnerabilitySource: [
197
- * {
198
- * comparison: "STRING_VALUE", // required
199
- * value: "STRING_VALUE", // required
200
- * },
201
- * ],
202
- * vendorSeverity: [
203
- * {
204
- * comparison: "STRING_VALUE", // required
205
- * value: "STRING_VALUE", // required
206
- * },
207
- * ],
208
- * vulnerablePackages: [
209
- * {
210
- * name: {
211
- * comparison: "STRING_VALUE", // required
212
- * value: "STRING_VALUE", // required
213
- * },
214
- * version: {
215
- * comparison: "STRING_VALUE", // required
216
- * value: "STRING_VALUE", // required
217
- * },
117
+ * networkProtocol: "<StringFilterList>",
118
+ * componentId: "<StringFilterList>",
119
+ * componentType: "<StringFilterList>",
120
+ * vulnerabilityId: "<StringFilterList>",
121
+ * vulnerabilitySource: "<StringFilterList>",
122
+ * vendorSeverity: "<StringFilterList>",
123
+ * vulnerablePackages: [ // PackageFilterList
124
+ * { // PackageFilter
125
+ * name: "<StringFilter>",
126
+ * version: "<StringFilter>",
218
127
  * epoch: {
219
128
  * upperInclusive: Number("double"),
220
129
  * lowerInclusive: Number("double"),
221
130
  * },
222
- * release: {
223
- * comparison: "STRING_VALUE", // required
224
- * value: "STRING_VALUE", // required
225
- * },
226
- * architecture: {
227
- * comparison: "STRING_VALUE", // required
228
- * value: "STRING_VALUE", // required
229
- * },
230
- * sourceLayerHash: {
231
- * comparison: "STRING_VALUE", // required
232
- * value: "STRING_VALUE", // required
233
- * },
234
- * sourceLambdaLayerArn: {
235
- * comparison: "STRING_VALUE", // required
236
- * value: "STRING_VALUE", // required
237
- * },
238
- * },
239
- * ],
240
- * relatedVulnerabilities: [
241
- * {
242
- * comparison: "STRING_VALUE", // required
243
- * value: "STRING_VALUE", // required
244
- * },
245
- * ],
246
- * fixAvailable: [
247
- * {
248
- * comparison: "STRING_VALUE", // required
249
- * value: "STRING_VALUE", // required
250
- * },
251
- * ],
252
- * lambdaFunctionName: [
253
- * {
254
- * comparison: "STRING_VALUE", // required
255
- * value: "STRING_VALUE", // required
256
- * },
257
- * ],
258
- * lambdaFunctionLayers: [
259
- * {
260
- * comparison: "STRING_VALUE", // required
261
- * value: "STRING_VALUE", // required
262
- * },
263
- * ],
264
- * lambdaFunctionRuntime: [
265
- * {
266
- * comparison: "STRING_VALUE", // required
267
- * value: "STRING_VALUE", // required
131
+ * release: "<StringFilter>",
132
+ * architecture: "<StringFilter>",
133
+ * sourceLayerHash: "<StringFilter>",
134
+ * sourceLambdaLayerArn: "<StringFilter>",
268
135
  * },
269
136
  * ],
137
+ * relatedVulnerabilities: "<StringFilterList>",
138
+ * fixAvailable: "<StringFilterList>",
139
+ * lambdaFunctionName: "<StringFilterList>",
140
+ * lambdaFunctionLayers: "<StringFilterList>",
141
+ * lambdaFunctionRuntime: "<StringFilterList>",
270
142
  * lambdaFunctionLastModifiedAt: [
271
143
  * {
272
144
  * startInclusive: new Date("TIMESTAMP"),
273
145
  * endInclusive: new Date("TIMESTAMP"),
274
146
  * },
275
147
  * ],
276
- * lambdaFunctionExecutionRoleArn: [
277
- * {
278
- * comparison: "STRING_VALUE", // required
279
- * value: "STRING_VALUE", // required
280
- * },
281
- * ],
282
- * exploitAvailable: [
283
- * {
284
- * comparison: "STRING_VALUE", // required
285
- * value: "STRING_VALUE", // required
286
- * },
287
- * ],
148
+ * lambdaFunctionExecutionRoleArn: "<StringFilterList>",
149
+ * exploitAvailable: "<StringFilterList>",
288
150
  * },
289
151
  * name: "STRING_VALUE", // required
290
- * tags: {
152
+ * tags: { // TagMap
291
153
  * "<keys>": "STRING_VALUE",
292
154
  * },
293
155
  * reason: "STRING_VALUE",
@@ -26,10 +26,10 @@ export interface CreateFindingsReportCommandOutput extends CreateFindingsReportR
26
26
  * import { Inspector2Client, CreateFindingsReportCommand } from "@aws-sdk/client-inspector2"; // ES Modules import
27
27
  * // const { Inspector2Client, CreateFindingsReportCommand } = require("@aws-sdk/client-inspector2"); // CommonJS import
28
28
  * const client = new Inspector2Client(config);
29
- * const input = {
30
- * filterCriteria: {
31
- * findingArn: [
32
- * {
29
+ * const input = { // CreateFindingsReportRequest
30
+ * filterCriteria: { // FilterCriteria
31
+ * findingArn: [ // StringFilterList
32
+ * { // StringFilter
33
33
  * comparison: "STRING_VALUE", // required
34
34
  * value: "STRING_VALUE", // required
35
35
  * },
@@ -52,8 +52,8 @@ export interface CreateFindingsReportCommandOutput extends CreateFindingsReportR
52
52
  * value: "STRING_VALUE", // required
53
53
  * },
54
54
  * ],
55
- * firstObservedAt: [
56
- * {
55
+ * firstObservedAt: [ // DateFilterList
56
+ * { // DateFilter
57
57
  * startInclusive: new Date("TIMESTAMP"),
58
58
  * endInclusive: new Date("TIMESTAMP"),
59
59
  * },
@@ -76,216 +76,78 @@ export interface CreateFindingsReportCommandOutput extends CreateFindingsReportR
76
76
  * value: "STRING_VALUE", // required
77
77
  * },
78
78
  * ],
79
- * title: [
80
- * {
81
- * comparison: "STRING_VALUE", // required
82
- * value: "STRING_VALUE", // required
83
- * },
84
- * ],
85
- * inspectorScore: [
86
- * {
79
+ * title: "<StringFilterList>",
80
+ * inspectorScore: [ // NumberFilterList
81
+ * { // NumberFilter
87
82
  * upperInclusive: Number("double"),
88
83
  * lowerInclusive: Number("double"),
89
84
  * },
90
85
  * ],
91
- * resourceType: [
92
- * {
93
- * comparison: "STRING_VALUE", // required
94
- * value: "STRING_VALUE", // required
95
- * },
96
- * ],
97
- * resourceId: [
98
- * {
99
- * comparison: "STRING_VALUE", // required
100
- * value: "STRING_VALUE", // required
101
- * },
102
- * ],
103
- * resourceTags: [
104
- * {
86
+ * resourceType: "<StringFilterList>",
87
+ * resourceId: "<StringFilterList>",
88
+ * resourceTags: [ // MapFilterList
89
+ * { // MapFilter
105
90
  * comparison: "STRING_VALUE", // required
106
91
  * key: "STRING_VALUE", // required
107
92
  * value: "STRING_VALUE",
108
93
  * },
109
94
  * ],
110
- * ec2InstanceImageId: [
111
- * {
112
- * comparison: "STRING_VALUE", // required
113
- * value: "STRING_VALUE", // required
114
- * },
115
- * ],
116
- * ec2InstanceVpcId: [
117
- * {
118
- * comparison: "STRING_VALUE", // required
119
- * value: "STRING_VALUE", // required
120
- * },
121
- * ],
122
- * ec2InstanceSubnetId: [
123
- * {
124
- * comparison: "STRING_VALUE", // required
125
- * value: "STRING_VALUE", // required
126
- * },
127
- * ],
95
+ * ec2InstanceImageId: "<StringFilterList>",
96
+ * ec2InstanceVpcId: "<StringFilterList>",
97
+ * ec2InstanceSubnetId: "<StringFilterList>",
128
98
  * ecrImagePushedAt: [
129
99
  * {
130
100
  * startInclusive: new Date("TIMESTAMP"),
131
101
  * endInclusive: new Date("TIMESTAMP"),
132
102
  * },
133
103
  * ],
134
- * ecrImageArchitecture: [
135
- * {
136
- * comparison: "STRING_VALUE", // required
137
- * value: "STRING_VALUE", // required
138
- * },
139
- * ],
140
- * ecrImageRegistry: [
141
- * {
142
- * comparison: "STRING_VALUE", // required
143
- * value: "STRING_VALUE", // required
144
- * },
145
- * ],
146
- * ecrImageRepositoryName: [
147
- * {
148
- * comparison: "STRING_VALUE", // required
149
- * value: "STRING_VALUE", // required
150
- * },
151
- * ],
152
- * ecrImageTags: [
153
- * {
154
- * comparison: "STRING_VALUE", // required
155
- * value: "STRING_VALUE", // required
156
- * },
157
- * ],
158
- * ecrImageHash: [
159
- * {
160
- * comparison: "STRING_VALUE", // required
161
- * value: "STRING_VALUE", // required
162
- * },
163
- * ],
164
- * portRange: [
165
- * {
104
+ * ecrImageArchitecture: "<StringFilterList>",
105
+ * ecrImageRegistry: "<StringFilterList>",
106
+ * ecrImageRepositoryName: "<StringFilterList>",
107
+ * ecrImageTags: "<StringFilterList>",
108
+ * ecrImageHash: "<StringFilterList>",
109
+ * portRange: [ // PortRangeFilterList
110
+ * { // PortRangeFilter
166
111
  * beginInclusive: Number("int"),
167
112
  * endInclusive: Number("int"),
168
113
  * },
169
114
  * ],
170
- * networkProtocol: [
171
- * {
172
- * comparison: "STRING_VALUE", // required
173
- * value: "STRING_VALUE", // required
174
- * },
175
- * ],
176
- * componentId: [
177
- * {
178
- * comparison: "STRING_VALUE", // required
179
- * value: "STRING_VALUE", // required
180
- * },
181
- * ],
182
- * componentType: [
183
- * {
184
- * comparison: "STRING_VALUE", // required
185
- * value: "STRING_VALUE", // required
186
- * },
187
- * ],
188
- * vulnerabilityId: [
189
- * {
190
- * comparison: "STRING_VALUE", // required
191
- * value: "STRING_VALUE", // required
192
- * },
193
- * ],
194
- * vulnerabilitySource: [
195
- * {
196
- * comparison: "STRING_VALUE", // required
197
- * value: "STRING_VALUE", // required
198
- * },
199
- * ],
200
- * vendorSeverity: [
201
- * {
202
- * comparison: "STRING_VALUE", // required
203
- * value: "STRING_VALUE", // required
204
- * },
205
- * ],
206
- * vulnerablePackages: [
207
- * {
208
- * name: {
209
- * comparison: "STRING_VALUE", // required
210
- * value: "STRING_VALUE", // required
211
- * },
212
- * version: {
213
- * comparison: "STRING_VALUE", // required
214
- * value: "STRING_VALUE", // required
215
- * },
115
+ * networkProtocol: "<StringFilterList>",
116
+ * componentId: "<StringFilterList>",
117
+ * componentType: "<StringFilterList>",
118
+ * vulnerabilityId: "<StringFilterList>",
119
+ * vulnerabilitySource: "<StringFilterList>",
120
+ * vendorSeverity: "<StringFilterList>",
121
+ * vulnerablePackages: [ // PackageFilterList
122
+ * { // PackageFilter
123
+ * name: "<StringFilter>",
124
+ * version: "<StringFilter>",
216
125
  * epoch: {
217
126
  * upperInclusive: Number("double"),
218
127
  * lowerInclusive: Number("double"),
219
128
  * },
220
- * release: {
221
- * comparison: "STRING_VALUE", // required
222
- * value: "STRING_VALUE", // required
223
- * },
224
- * architecture: {
225
- * comparison: "STRING_VALUE", // required
226
- * value: "STRING_VALUE", // required
227
- * },
228
- * sourceLayerHash: {
229
- * comparison: "STRING_VALUE", // required
230
- * value: "STRING_VALUE", // required
231
- * },
232
- * sourceLambdaLayerArn: {
233
- * comparison: "STRING_VALUE", // required
234
- * value: "STRING_VALUE", // required
235
- * },
236
- * },
237
- * ],
238
- * relatedVulnerabilities: [
239
- * {
240
- * comparison: "STRING_VALUE", // required
241
- * value: "STRING_VALUE", // required
242
- * },
243
- * ],
244
- * fixAvailable: [
245
- * {
246
- * comparison: "STRING_VALUE", // required
247
- * value: "STRING_VALUE", // required
248
- * },
249
- * ],
250
- * lambdaFunctionName: [
251
- * {
252
- * comparison: "STRING_VALUE", // required
253
- * value: "STRING_VALUE", // required
254
- * },
255
- * ],
256
- * lambdaFunctionLayers: [
257
- * {
258
- * comparison: "STRING_VALUE", // required
259
- * value: "STRING_VALUE", // required
260
- * },
261
- * ],
262
- * lambdaFunctionRuntime: [
263
- * {
264
- * comparison: "STRING_VALUE", // required
265
- * value: "STRING_VALUE", // required
129
+ * release: "<StringFilter>",
130
+ * architecture: "<StringFilter>",
131
+ * sourceLayerHash: "<StringFilter>",
132
+ * sourceLambdaLayerArn: "<StringFilter>",
266
133
  * },
267
134
  * ],
135
+ * relatedVulnerabilities: "<StringFilterList>",
136
+ * fixAvailable: "<StringFilterList>",
137
+ * lambdaFunctionName: "<StringFilterList>",
138
+ * lambdaFunctionLayers: "<StringFilterList>",
139
+ * lambdaFunctionRuntime: "<StringFilterList>",
268
140
  * lambdaFunctionLastModifiedAt: [
269
141
  * {
270
142
  * startInclusive: new Date("TIMESTAMP"),
271
143
  * endInclusive: new Date("TIMESTAMP"),
272
144
  * },
273
145
  * ],
274
- * lambdaFunctionExecutionRoleArn: [
275
- * {
276
- * comparison: "STRING_VALUE", // required
277
- * value: "STRING_VALUE", // required
278
- * },
279
- * ],
280
- * exploitAvailable: [
281
- * {
282
- * comparison: "STRING_VALUE", // required
283
- * value: "STRING_VALUE", // required
284
- * },
285
- * ],
146
+ * lambdaFunctionExecutionRoleArn: "<StringFilterList>",
147
+ * exploitAvailable: "<StringFilterList>",
286
148
  * },
287
149
  * reportFormat: "STRING_VALUE", // required
288
- * s3Destination: {
150
+ * s3Destination: { // Destination
289
151
  * bucketName: "STRING_VALUE", // required
290
152
  * keyPrefix: "STRING_VALUE",
291
153
  * kmsKeyArn: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DeleteFilterCommandOutput extends DeleteFilterResponse, __Metad
26
26
  * import { Inspector2Client, DeleteFilterCommand } from "@aws-sdk/client-inspector2"; // ES Modules import
27
27
  * // const { Inspector2Client, DeleteFilterCommand } = require("@aws-sdk/client-inspector2"); // CommonJS import
28
28
  * const client = new Inspector2Client(config);
29
- * const input = {
29
+ * const input = { // DeleteFilterRequest
30
30
  * arn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteFilterCommand(input);
@@ -27,11 +27,11 @@ export interface DisableCommandOutput extends DisableResponse, __MetadataBearer
27
27
  * import { Inspector2Client, DisableCommand } from "@aws-sdk/client-inspector2"; // ES Modules import
28
28
  * // const { Inspector2Client, DisableCommand } = require("@aws-sdk/client-inspector2"); // CommonJS import
29
29
  * const client = new Inspector2Client(config);
30
- * const input = {
31
- * accountIds: [
30
+ * const input = { // DisableRequest
31
+ * accountIds: [ // AccountIdSet
32
32
  * "STRING_VALUE",
33
33
  * ],
34
- * resourceTypes: [
34
+ * resourceTypes: [ // DisableResourceTypeList
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * };
@@ -26,7 +26,7 @@ export interface DisableDelegatedAdminAccountCommandOutput extends DisableDelega
26
26
  * import { Inspector2Client, DisableDelegatedAdminAccountCommand } from "@aws-sdk/client-inspector2"; // ES Modules import
27
27
  * // const { Inspector2Client, DisableDelegatedAdminAccountCommand } = require("@aws-sdk/client-inspector2"); // CommonJS import
28
28
  * const client = new Inspector2Client(config);
29
- * const input = {
29
+ * const input = { // DisableDelegatedAdminAccountRequest
30
30
  * delegatedAdminAccountId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DisableDelegatedAdminAccountCommand(input);
@@ -26,7 +26,7 @@ export interface DisassociateMemberCommandOutput extends DisassociateMemberRespo
26
26
  * import { Inspector2Client, DisassociateMemberCommand } from "@aws-sdk/client-inspector2"; // ES Modules import
27
27
  * // const { Inspector2Client, DisassociateMemberCommand } = require("@aws-sdk/client-inspector2"); // CommonJS import
28
28
  * const client = new Inspector2Client(config);
29
- * const input = {
29
+ * const input = { // DisassociateMemberRequest
30
30
  * accountId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DisassociateMemberCommand(input);
@@ -26,11 +26,11 @@ export interface EnableCommandOutput extends EnableResponse, __MetadataBearer {
26
26
  * import { Inspector2Client, EnableCommand } from "@aws-sdk/client-inspector2"; // ES Modules import
27
27
  * // const { Inspector2Client, EnableCommand } = require("@aws-sdk/client-inspector2"); // CommonJS import
28
28
  * const client = new Inspector2Client(config);
29
- * const input = {
30
- * accountIds: [
29
+ * const input = { // EnableRequest
30
+ * accountIds: [ // AccountIdSet
31
31
  * "STRING_VALUE",
32
32
  * ],
33
- * resourceTypes: [ // required
33
+ * resourceTypes: [ // EnableResourceTypeList // required
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * clientToken: "STRING_VALUE",