aws-sdk 2.658.0 → 2.662.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 (57) hide show
  1. package/CHANGELOG.md +30 -1
  2. package/README.md +1 -1
  3. package/apis/apigatewayv2-2018-11-29.min.json +51 -0
  4. package/apis/application-autoscaling-2016-02-06.examples.json +6 -169
  5. package/apis/ce-2017-10-25.min.json +123 -88
  6. package/apis/ce-2017-10-25.paginators.json +5 -0
  7. package/apis/codeguru-reviewer-2019-09-19.min.json +341 -3
  8. package/apis/codeguru-reviewer-2019-09-19.paginators.json +15 -0
  9. package/apis/elasticmapreduce-2009-03-31.min.json +98 -17
  10. package/apis/es-2015-01-01.min.json +3 -0
  11. package/apis/firehose-2015-08-04.min.json +74 -30
  12. package/apis/guardduty-2017-11-28.min.json +165 -16
  13. package/apis/guardduty-2017-11-28.paginators.json +6 -0
  14. package/apis/iotevents-2018-07-27.min.json +102 -20
  15. package/apis/mediapackage-vod-2018-11-07.min.json +173 -36
  16. package/apis/metadata.json +3 -0
  17. package/apis/pinpoint-2016-12-01.min.json +363 -335
  18. package/apis/ram-2018-01-04.min.json +30 -0
  19. package/apis/rds-2014-10-31.min.json +2 -0
  20. package/apis/redshift-2012-12-01.min.json +154 -46
  21. package/apis/redshift-2012-12-01.paginators.json +6 -0
  22. package/apis/route53domains-2014-05-15.min.json +97 -24
  23. package/apis/storagegateway-2013-06-30.min.json +99 -14
  24. package/apis/synthetics-2017-10-11.examples.json +5 -0
  25. package/apis/synthetics-2017-10-11.min.json +578 -0
  26. package/apis/synthetics-2017-10-11.paginators.json +24 -0
  27. package/apis/transfer-2018-11-05.min.json +41 -24
  28. package/clients/all.d.ts +1 -0
  29. package/clients/all.js +2 -1
  30. package/clients/apigatewayv2.d.ts +40 -2
  31. package/clients/applicationautoscaling.d.ts +83 -83
  32. package/clients/codegurureviewer.d.ts +417 -10
  33. package/clients/costexplorer.d.ts +66 -28
  34. package/clients/emr.d.ts +91 -6
  35. package/clients/es.d.ts +4 -0
  36. package/clients/firehose.d.ts +50 -8
  37. package/clients/fms.d.ts +6 -6
  38. package/clients/glue.d.ts +4 -4
  39. package/clients/guardduty.d.ts +340 -224
  40. package/clients/iotevents.d.ts +106 -0
  41. package/clients/mediapackagevod.d.ts +55 -0
  42. package/clients/pinpoint.d.ts +115 -77
  43. package/clients/ram.d.ts +41 -2
  44. package/clients/rds.d.ts +13 -5
  45. package/clients/redshift.d.ts +162 -1
  46. package/clients/route53domains.d.ts +140 -47
  47. package/clients/storagegateway.d.ts +137 -60
  48. package/clients/synthetics.d.ts +656 -0
  49. package/clients/synthetics.js +18 -0
  50. package/clients/transfer.d.ts +154 -123
  51. package/dist/aws-sdk-core-react-native.js +2 -2
  52. package/dist/aws-sdk-react-native.js +61 -24
  53. package/dist/aws-sdk.js +664 -222
  54. package/dist/aws-sdk.min.js +74 -74
  55. package/lib/config_service_placeholders.d.ts +2 -0
  56. package/lib/core.js +1 -1
  57. package/package.json +1 -1
@@ -20,19 +20,19 @@ declare class GuardDuty extends Service {
20
20
  */
21
21
  acceptInvitation(callback?: (err: AWSError, data: GuardDuty.Types.AcceptInvitationResponse) => void): Request<GuardDuty.Types.AcceptInvitationResponse, AWSError>;
22
22
  /**
23
- * Archives GuardDuty findings specified by the list of finding IDs. Only the master account can archive findings. Member accounts do not have permission to archive findings from their accounts.
23
+ * Archives GuardDuty findings that are specified by the list of finding IDs. Only the master account can archive findings. Member accounts don't have permission to archive findings from their accounts.
24
24
  */
25
25
  archiveFindings(params: GuardDuty.Types.ArchiveFindingsRequest, callback?: (err: AWSError, data: GuardDuty.Types.ArchiveFindingsResponse) => void): Request<GuardDuty.Types.ArchiveFindingsResponse, AWSError>;
26
26
  /**
27
- * Archives GuardDuty findings specified by the list of finding IDs. Only the master account can archive findings. Member accounts do not have permission to archive findings from their accounts.
27
+ * Archives GuardDuty findings that are specified by the list of finding IDs. Only the master account can archive findings. Member accounts don't have permission to archive findings from their accounts.
28
28
  */
29
29
  archiveFindings(callback?: (err: AWSError, data: GuardDuty.Types.ArchiveFindingsResponse) => void): Request<GuardDuty.Types.ArchiveFindingsResponse, AWSError>;
30
30
  /**
31
- * Creates a single Amazon GuardDuty detector. A detector is a resource that represents the GuardDuty service. To start using GuardDuty, you must create a detector in each region that you enable the service. You can have only one detector per account per region.
31
+ * Creates a single Amazon GuardDuty detector. A detector is a resource that represents the GuardDuty service. To start using GuardDuty, you must create a detector in each Region where you enable the service. You can have only one detector per account per Region.
32
32
  */
33
33
  createDetector(params: GuardDuty.Types.CreateDetectorRequest, callback?: (err: AWSError, data: GuardDuty.Types.CreateDetectorResponse) => void): Request<GuardDuty.Types.CreateDetectorResponse, AWSError>;
34
34
  /**
35
- * Creates a single Amazon GuardDuty detector. A detector is a resource that represents the GuardDuty service. To start using GuardDuty, you must create a detector in each region that you enable the service. You can have only one detector per account per region.
35
+ * Creates a single Amazon GuardDuty detector. A detector is a resource that represents the GuardDuty service. To start using GuardDuty, you must create a detector in each Region where you enable the service. You can have only one detector per account per Region.
36
36
  */
37
37
  createDetector(callback?: (err: AWSError, data: GuardDuty.Types.CreateDetectorResponse) => void): Request<GuardDuty.Types.CreateDetectorResponse, AWSError>;
38
38
  /**
@@ -44,11 +44,11 @@ declare class GuardDuty extends Service {
44
44
  */
45
45
  createFilter(callback?: (err: AWSError, data: GuardDuty.Types.CreateFilterResponse) => void): Request<GuardDuty.Types.CreateFilterResponse, AWSError>;
46
46
  /**
47
- * Creates a new IPSet, called Trusted IP list in the consoler user interface. An IPSet is a list IP addresses trusted for secure communication with AWS infrastructure and applications. GuardDuty does not generate findings for IP addresses included in IPSets. Only users from the master account can use this operation.
47
+ * Creates a new IPSet, which is called a trusted IP list in the console user interface. An IPSet is a list of IP addresses that are trusted for secure communication with AWS infrastructure and applications. GuardDuty doesn't generate findings for IP addresses that are included in IPSets. Only users from the master account can use this operation.
48
48
  */
49
49
  createIPSet(params: GuardDuty.Types.CreateIPSetRequest, callback?: (err: AWSError, data: GuardDuty.Types.CreateIPSetResponse) => void): Request<GuardDuty.Types.CreateIPSetResponse, AWSError>;
50
50
  /**
51
- * Creates a new IPSet, called Trusted IP list in the consoler user interface. An IPSet is a list IP addresses trusted for secure communication with AWS infrastructure and applications. GuardDuty does not generate findings for IP addresses included in IPSets. Only users from the master account can use this operation.
51
+ * Creates a new IPSet, which is called a trusted IP list in the console user interface. An IPSet is a list of IP addresses that are trusted for secure communication with AWS infrastructure and applications. GuardDuty doesn't generate findings for IP addresses that are included in IPSets. Only users from the master account can use this operation.
52
52
  */
53
53
  createIPSet(callback?: (err: AWSError, data: GuardDuty.Types.CreateIPSetResponse) => void): Request<GuardDuty.Types.CreateIPSetResponse, AWSError>;
54
54
  /**
@@ -60,11 +60,11 @@ declare class GuardDuty extends Service {
60
60
  */
61
61
  createMembers(callback?: (err: AWSError, data: GuardDuty.Types.CreateMembersResponse) => void): Request<GuardDuty.Types.CreateMembersResponse, AWSError>;
62
62
  /**
63
- * Creates a publishing destination to send findings to. The resource to send findings to must exist before you use this operation.
63
+ * Creates a publishing destination to export findings to. The resource to export findings to must exist before you use this operation.
64
64
  */
65
65
  createPublishingDestination(params: GuardDuty.Types.CreatePublishingDestinationRequest, callback?: (err: AWSError, data: GuardDuty.Types.CreatePublishingDestinationResponse) => void): Request<GuardDuty.Types.CreatePublishingDestinationResponse, AWSError>;
66
66
  /**
67
- * Creates a publishing destination to send findings to. The resource to send findings to must exist before you use this operation.
67
+ * Creates a publishing destination to export findings to. The resource to export findings to must exist before you use this operation.
68
68
  */
69
69
  createPublishingDestination(callback?: (err: AWSError, data: GuardDuty.Types.CreatePublishingDestinationResponse) => void): Request<GuardDuty.Types.CreatePublishingDestinationResponse, AWSError>;
70
70
  /**
@@ -76,27 +76,27 @@ declare class GuardDuty extends Service {
76
76
  */
77
77
  createSampleFindings(callback?: (err: AWSError, data: GuardDuty.Types.CreateSampleFindingsResponse) => void): Request<GuardDuty.Types.CreateSampleFindingsResponse, AWSError>;
78
78
  /**
79
- * Create a new ThreatIntelSet. ThreatIntelSets consist of known malicious IP addresses. GuardDuty generates findings based on ThreatIntelSets. Only users of the master account can use this operation.
79
+ * Creates a new ThreatIntelSet. ThreatIntelSets consist of known malicious IP addresses. GuardDuty generates findings based on ThreatIntelSets. Only users of the master account can use this operation.
80
80
  */
81
81
  createThreatIntelSet(params: GuardDuty.Types.CreateThreatIntelSetRequest, callback?: (err: AWSError, data: GuardDuty.Types.CreateThreatIntelSetResponse) => void): Request<GuardDuty.Types.CreateThreatIntelSetResponse, AWSError>;
82
82
  /**
83
- * Create a new ThreatIntelSet. ThreatIntelSets consist of known malicious IP addresses. GuardDuty generates findings based on ThreatIntelSets. Only users of the master account can use this operation.
83
+ * Creates a new ThreatIntelSet. ThreatIntelSets consist of known malicious IP addresses. GuardDuty generates findings based on ThreatIntelSets. Only users of the master account can use this operation.
84
84
  */
85
85
  createThreatIntelSet(callback?: (err: AWSError, data: GuardDuty.Types.CreateThreatIntelSetResponse) => void): Request<GuardDuty.Types.CreateThreatIntelSetResponse, AWSError>;
86
86
  /**
87
- * Declines invitations sent to the current member account by AWS account specified by their account IDs.
87
+ * Declines invitations sent to the current member account by AWS accounts specified by their account IDs.
88
88
  */
89
89
  declineInvitations(params: GuardDuty.Types.DeclineInvitationsRequest, callback?: (err: AWSError, data: GuardDuty.Types.DeclineInvitationsResponse) => void): Request<GuardDuty.Types.DeclineInvitationsResponse, AWSError>;
90
90
  /**
91
- * Declines invitations sent to the current member account by AWS account specified by their account IDs.
91
+ * Declines invitations sent to the current member account by AWS accounts specified by their account IDs.
92
92
  */
93
93
  declineInvitations(callback?: (err: AWSError, data: GuardDuty.Types.DeclineInvitationsResponse) => void): Request<GuardDuty.Types.DeclineInvitationsResponse, AWSError>;
94
94
  /**
95
- * Deletes a Amazon GuardDuty detector specified by the detector ID.
95
+ * Deletes an Amazon GuardDuty detector that is specified by the detector ID.
96
96
  */
97
97
  deleteDetector(params: GuardDuty.Types.DeleteDetectorRequest, callback?: (err: AWSError, data: GuardDuty.Types.DeleteDetectorResponse) => void): Request<GuardDuty.Types.DeleteDetectorResponse, AWSError>;
98
98
  /**
99
- * Deletes a Amazon GuardDuty detector specified by the detector ID.
99
+ * Deletes an Amazon GuardDuty detector that is specified by the detector ID.
100
100
  */
101
101
  deleteDetector(callback?: (err: AWSError, data: GuardDuty.Types.DeleteDetectorResponse) => void): Request<GuardDuty.Types.DeleteDetectorResponse, AWSError>;
102
102
  /**
@@ -108,11 +108,11 @@ declare class GuardDuty extends Service {
108
108
  */
109
109
  deleteFilter(callback?: (err: AWSError, data: GuardDuty.Types.DeleteFilterResponse) => void): Request<GuardDuty.Types.DeleteFilterResponse, AWSError>;
110
110
  /**
111
- * Deletes the IPSet specified by the ipSetId. IPSets are called Trusted IP lists in the console user interface.
111
+ * Deletes the IPSet specified by the ipSetId. IPSets are called trusted IP lists in the console user interface.
112
112
  */
113
113
  deleteIPSet(params: GuardDuty.Types.DeleteIPSetRequest, callback?: (err: AWSError, data: GuardDuty.Types.DeleteIPSetResponse) => void): Request<GuardDuty.Types.DeleteIPSetResponse, AWSError>;
114
114
  /**
115
- * Deletes the IPSet specified by the ipSetId. IPSets are called Trusted IP lists in the console user interface.
115
+ * Deletes the IPSet specified by the ipSetId. IPSets are called trusted IP lists in the console user interface.
116
116
  */
117
117
  deleteIPSet(callback?: (err: AWSError, data: GuardDuty.Types.DeleteIPSetResponse) => void): Request<GuardDuty.Types.DeleteIPSetResponse, AWSError>;
118
118
  /**
@@ -140,13 +140,21 @@ declare class GuardDuty extends Service {
140
140
  */
141
141
  deletePublishingDestination(callback?: (err: AWSError, data: GuardDuty.Types.DeletePublishingDestinationResponse) => void): Request<GuardDuty.Types.DeletePublishingDestinationResponse, AWSError>;
142
142
  /**
143
- * Deletes ThreatIntelSet specified by the ThreatIntelSet ID.
143
+ * Deletes the ThreatIntelSet specified by the ThreatIntelSet ID.
144
144
  */
145
145
  deleteThreatIntelSet(params: GuardDuty.Types.DeleteThreatIntelSetRequest, callback?: (err: AWSError, data: GuardDuty.Types.DeleteThreatIntelSetResponse) => void): Request<GuardDuty.Types.DeleteThreatIntelSetResponse, AWSError>;
146
146
  /**
147
- * Deletes ThreatIntelSet specified by the ThreatIntelSet ID.
147
+ * Deletes the ThreatIntelSet specified by the ThreatIntelSet ID.
148
148
  */
149
149
  deleteThreatIntelSet(callback?: (err: AWSError, data: GuardDuty.Types.DeleteThreatIntelSetResponse) => void): Request<GuardDuty.Types.DeleteThreatIntelSetResponse, AWSError>;
150
+ /**
151
+ * Returns information about the account selected as the delegated administrator for GuardDuty.
152
+ */
153
+ describeOrganizationConfiguration(params: GuardDuty.Types.DescribeOrganizationConfigurationRequest, callback?: (err: AWSError, data: GuardDuty.Types.DescribeOrganizationConfigurationResponse) => void): Request<GuardDuty.Types.DescribeOrganizationConfigurationResponse, AWSError>;
154
+ /**
155
+ * Returns information about the account selected as the delegated administrator for GuardDuty.
156
+ */
157
+ describeOrganizationConfiguration(callback?: (err: AWSError, data: GuardDuty.Types.DescribeOrganizationConfigurationResponse) => void): Request<GuardDuty.Types.DescribeOrganizationConfigurationResponse, AWSError>;
150
158
  /**
151
159
  * Returns information about the publishing destination specified by the provided destinationId.
152
160
  */
@@ -155,6 +163,14 @@ declare class GuardDuty extends Service {
155
163
  * Returns information about the publishing destination specified by the provided destinationId.
156
164
  */
157
165
  describePublishingDestination(callback?: (err: AWSError, data: GuardDuty.Types.DescribePublishingDestinationResponse) => void): Request<GuardDuty.Types.DescribePublishingDestinationResponse, AWSError>;
166
+ /**
167
+ * Disables GuardDuty administrator permissions for an AWS account within the Organization.
168
+ */
169
+ disableOrganizationAdminAccount(params: GuardDuty.Types.DisableOrganizationAdminAccountRequest, callback?: (err: AWSError, data: GuardDuty.Types.DisableOrganizationAdminAccountResponse) => void): Request<GuardDuty.Types.DisableOrganizationAdminAccountResponse, AWSError>;
170
+ /**
171
+ * Disables GuardDuty administrator permissions for an AWS account within the Organization.
172
+ */
173
+ disableOrganizationAdminAccount(callback?: (err: AWSError, data: GuardDuty.Types.DisableOrganizationAdminAccountResponse) => void): Request<GuardDuty.Types.DisableOrganizationAdminAccountResponse, AWSError>;
158
174
  /**
159
175
  * Disassociates the current GuardDuty member account from its master account.
160
176
  */
@@ -171,6 +187,14 @@ declare class GuardDuty extends Service {
171
187
  * Disassociates GuardDuty member accounts (to the current GuardDuty master account) specified by the account IDs.
172
188
  */
173
189
  disassociateMembers(callback?: (err: AWSError, data: GuardDuty.Types.DisassociateMembersResponse) => void): Request<GuardDuty.Types.DisassociateMembersResponse, AWSError>;
190
+ /**
191
+ * Enables GuardDuty administrator permissions for an AWS account within the organization.
192
+ */
193
+ enableOrganizationAdminAccount(params: GuardDuty.Types.EnableOrganizationAdminAccountRequest, callback?: (err: AWSError, data: GuardDuty.Types.EnableOrganizationAdminAccountResponse) => void): Request<GuardDuty.Types.EnableOrganizationAdminAccountResponse, AWSError>;
194
+ /**
195
+ * Enables GuardDuty administrator permissions for an AWS account within the organization.
196
+ */
197
+ enableOrganizationAdminAccount(callback?: (err: AWSError, data: GuardDuty.Types.EnableOrganizationAdminAccountResponse) => void): Request<GuardDuty.Types.EnableOrganizationAdminAccountResponse, AWSError>;
174
198
  /**
175
199
  * Retrieves an Amazon GuardDuty detector specified by the detectorId.
176
200
  */
@@ -196,11 +220,11 @@ declare class GuardDuty extends Service {
196
220
  */
197
221
  getFindings(callback?: (err: AWSError, data: GuardDuty.Types.GetFindingsResponse) => void): Request<GuardDuty.Types.GetFindingsResponse, AWSError>;
198
222
  /**
199
- * Lists Amazon GuardDuty findings' statistics for the specified detector ID.
223
+ * Lists Amazon GuardDuty findings statistics for the specified detector ID.
200
224
  */
201
225
  getFindingsStatistics(params: GuardDuty.Types.GetFindingsStatisticsRequest, callback?: (err: AWSError, data: GuardDuty.Types.GetFindingsStatisticsResponse) => void): Request<GuardDuty.Types.GetFindingsStatisticsResponse, AWSError>;
202
226
  /**
203
- * Lists Amazon GuardDuty findings' statistics for the specified detector ID.
227
+ * Lists Amazon GuardDuty findings statistics for the specified detector ID.
204
228
  */
205
229
  getFindingsStatistics(callback?: (err: AWSError, data: GuardDuty.Types.GetFindingsStatisticsResponse) => void): Request<GuardDuty.Types.GetFindingsStatisticsResponse, AWSError>;
206
230
  /**
@@ -244,11 +268,11 @@ declare class GuardDuty extends Service {
244
268
  */
245
269
  getThreatIntelSet(callback?: (err: AWSError, data: GuardDuty.Types.GetThreatIntelSetResponse) => void): Request<GuardDuty.Types.GetThreatIntelSetResponse, AWSError>;
246
270
  /**
247
- * Invites other AWS accounts (created as members of the current AWS account by CreateMembers) to enable GuardDuty and allow the current AWS account to view and manage these accounts' GuardDuty findings on their behalf as the master account.
271
+ * Invites other AWS accounts (created as members of the current AWS account by CreateMembers) to enable GuardDuty, and allow the current AWS account to view and manage these accounts' GuardDuty findings on their behalf as the master account.
248
272
  */
249
273
  inviteMembers(params: GuardDuty.Types.InviteMembersRequest, callback?: (err: AWSError, data: GuardDuty.Types.InviteMembersResponse) => void): Request<GuardDuty.Types.InviteMembersResponse, AWSError>;
250
274
  /**
251
- * Invites other AWS accounts (created as members of the current AWS account by CreateMembers) to enable GuardDuty and allow the current AWS account to view and manage these accounts' GuardDuty findings on their behalf as the master account.
275
+ * Invites other AWS accounts (created as members of the current AWS account by CreateMembers) to enable GuardDuty, and allow the current AWS account to view and manage these accounts' GuardDuty findings on their behalf as the master account.
252
276
  */
253
277
  inviteMembers(callback?: (err: AWSError, data: GuardDuty.Types.InviteMembersResponse) => void): Request<GuardDuty.Types.InviteMembersResponse, AWSError>;
254
278
  /**
@@ -292,13 +316,21 @@ declare class GuardDuty extends Service {
292
316
  */
293
317
  listInvitations(callback?: (err: AWSError, data: GuardDuty.Types.ListInvitationsResponse) => void): Request<GuardDuty.Types.ListInvitationsResponse, AWSError>;
294
318
  /**
295
- * Lists details about all member accounts for the current GuardDuty master account.
319
+ * Lists details about associated member accounts for the current GuardDuty master account.
296
320
  */
297
321
  listMembers(params: GuardDuty.Types.ListMembersRequest, callback?: (err: AWSError, data: GuardDuty.Types.ListMembersResponse) => void): Request<GuardDuty.Types.ListMembersResponse, AWSError>;
298
322
  /**
299
- * Lists details about all member accounts for the current GuardDuty master account.
323
+ * Lists details about associated member accounts for the current GuardDuty master account.
300
324
  */
301
325
  listMembers(callback?: (err: AWSError, data: GuardDuty.Types.ListMembersResponse) => void): Request<GuardDuty.Types.ListMembersResponse, AWSError>;
326
+ /**
327
+ * Lists the accounts configured as AWS Organization delegated administrators.
328
+ */
329
+ listOrganizationAdminAccounts(params: GuardDuty.Types.ListOrganizationAdminAccountsRequest, callback?: (err: AWSError, data: GuardDuty.Types.ListOrganizationAdminAccountsResponse) => void): Request<GuardDuty.Types.ListOrganizationAdminAccountsResponse, AWSError>;
330
+ /**
331
+ * Lists the accounts configured as AWS Organization delegated administrators.
332
+ */
333
+ listOrganizationAdminAccounts(callback?: (err: AWSError, data: GuardDuty.Types.ListOrganizationAdminAccountsResponse) => void): Request<GuardDuty.Types.ListOrganizationAdminAccountsResponse, AWSError>;
302
334
  /**
303
335
  * Returns a list of publishing destinations associated with the specified dectectorId.
304
336
  */
@@ -308,11 +340,11 @@ declare class GuardDuty extends Service {
308
340
  */
309
341
  listPublishingDestinations(callback?: (err: AWSError, data: GuardDuty.Types.ListPublishingDestinationsResponse) => void): Request<GuardDuty.Types.ListPublishingDestinationsResponse, AWSError>;
310
342
  /**
311
- * Lists tags for a resource. Tagging is currently supported for detectors, finding filters, IP sets, and Threat Intel sets, with a limit of 50 tags per resource. When invoked, this operation returns all assigned tags for a given resource..
343
+ * Lists tags for a resource. Tagging is currently supported for detectors, finding filters, IP sets, and threat intel sets, with a limit of 50 tags per resource. When invoked, this operation returns all assigned tags for a given resource.
312
344
  */
313
345
  listTagsForResource(params: GuardDuty.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: GuardDuty.Types.ListTagsForResourceResponse) => void): Request<GuardDuty.Types.ListTagsForResourceResponse, AWSError>;
314
346
  /**
315
- * Lists tags for a resource. Tagging is currently supported for detectors, finding filters, IP sets, and Threat Intel sets, with a limit of 50 tags per resource. When invoked, this operation returns all assigned tags for a given resource..
347
+ * Lists tags for a resource. Tagging is currently supported for detectors, finding filters, IP sets, and threat intel sets, with a limit of 50 tags per resource. When invoked, this operation returns all assigned tags for a given resource.
316
348
  */
317
349
  listTagsForResource(callback?: (err: AWSError, data: GuardDuty.Types.ListTagsForResourceResponse) => void): Request<GuardDuty.Types.ListTagsForResourceResponse, AWSError>;
318
350
  /**
@@ -332,11 +364,11 @@ declare class GuardDuty extends Service {
332
364
  */
333
365
  startMonitoringMembers(callback?: (err: AWSError, data: GuardDuty.Types.StartMonitoringMembersResponse) => void): Request<GuardDuty.Types.StartMonitoringMembersResponse, AWSError>;
334
366
  /**
335
- * Stops GuardDuty monitoring for the specified member accounnts. Use the StartMonitoringMembers to restart monitoring for those accounts.
367
+ * Stops GuardDuty monitoring for the specified member accounts. Use the StartMonitoringMembers operation to restart monitoring for those accounts.
336
368
  */
337
369
  stopMonitoringMembers(params: GuardDuty.Types.StopMonitoringMembersRequest, callback?: (err: AWSError, data: GuardDuty.Types.StopMonitoringMembersResponse) => void): Request<GuardDuty.Types.StopMonitoringMembersResponse, AWSError>;
338
370
  /**
339
- * Stops GuardDuty monitoring for the specified member accounnts. Use the StartMonitoringMembers to restart monitoring for those accounts.
371
+ * Stops GuardDuty monitoring for the specified member accounts. Use the StartMonitoringMembers operation to restart monitoring for those accounts.
340
372
  */
341
373
  stopMonitoringMembers(callback?: (err: AWSError, data: GuardDuty.Types.StopMonitoringMembersResponse) => void): Request<GuardDuty.Types.StopMonitoringMembersResponse, AWSError>;
342
374
  /**
@@ -395,6 +427,14 @@ declare class GuardDuty extends Service {
395
427
  * Updates the IPSet specified by the IPSet ID.
396
428
  */
397
429
  updateIPSet(callback?: (err: AWSError, data: GuardDuty.Types.UpdateIPSetResponse) => void): Request<GuardDuty.Types.UpdateIPSetResponse, AWSError>;
430
+ /**
431
+ * Updates the delegated administrator account with the values provided.
432
+ */
433
+ updateOrganizationConfiguration(params: GuardDuty.Types.UpdateOrganizationConfigurationRequest, callback?: (err: AWSError, data: GuardDuty.Types.UpdateOrganizationConfigurationResponse) => void): Request<GuardDuty.Types.UpdateOrganizationConfigurationResponse, AWSError>;
434
+ /**
435
+ * Updates the delegated administrator account with the values provided.
436
+ */
437
+ updateOrganizationConfiguration(callback?: (err: AWSError, data: GuardDuty.Types.UpdateOrganizationConfigurationResponse) => void): Request<GuardDuty.Types.UpdateOrganizationConfigurationResponse, AWSError>;
398
438
  /**
399
439
  * Updates information about the publishing destination specified by the destinationId.
400
440
  */
@@ -404,11 +444,11 @@ declare class GuardDuty extends Service {
404
444
  */
405
445
  updatePublishingDestination(callback?: (err: AWSError, data: GuardDuty.Types.UpdatePublishingDestinationResponse) => void): Request<GuardDuty.Types.UpdatePublishingDestinationResponse, AWSError>;
406
446
  /**
407
- * Updates the ThreatIntelSet specified by ThreatIntelSet ID.
447
+ * Updates the ThreatIntelSet specified by the ThreatIntelSet ID.
408
448
  */
409
449
  updateThreatIntelSet(params: GuardDuty.Types.UpdateThreatIntelSetRequest, callback?: (err: AWSError, data: GuardDuty.Types.UpdateThreatIntelSetResponse) => void): Request<GuardDuty.Types.UpdateThreatIntelSetResponse, AWSError>;
410
450
  /**
411
- * Updates the ThreatIntelSet specified by ThreatIntelSet ID.
451
+ * Updates the ThreatIntelSet specified by the ThreatIntelSet ID.
412
452
  */
413
453
  updateThreatIntelSet(callback?: (err: AWSError, data: GuardDuty.Types.UpdateThreatIntelSetResponse) => void): Request<GuardDuty.Types.UpdateThreatIntelSetResponse, AWSError>;
414
454
  }
@@ -423,7 +463,7 @@ declare namespace GuardDuty {
423
463
  */
424
464
  MasterId: String;
425
465
  /**
426
- * This value is used to validate the master account to the member account.
466
+ * The value that is used to validate the master account to the member account.
427
467
  */
428
468
  InvitationId: String;
429
469
  }
@@ -431,7 +471,7 @@ declare namespace GuardDuty {
431
471
  }
432
472
  export interface AccessKeyDetails {
433
473
  /**
434
- * Access key ID of the user.
474
+ * The access key ID of the user.
435
475
  */
436
476
  AccessKeyId?: String;
437
477
  /**
@@ -449,11 +489,11 @@ declare namespace GuardDuty {
449
489
  }
450
490
  export interface AccountDetail {
451
491
  /**
452
- * Member account ID.
492
+ * The member account ID.
453
493
  */
454
494
  AccountId: AccountId;
455
495
  /**
456
- * Member account's email address.
496
+ * The email address of the member account.
457
497
  */
458
498
  Email: Email;
459
499
  }
@@ -462,7 +502,7 @@ declare namespace GuardDuty {
462
502
  export type AccountIds = AccountId[];
463
503
  export interface Action {
464
504
  /**
465
- * GuardDuty Finding activity type.
505
+ * The GuardDuty finding activity type.
466
506
  */
467
507
  ActionType?: String;
468
508
  /**
@@ -482,13 +522,25 @@ declare namespace GuardDuty {
482
522
  */
483
523
  PortProbeAction?: PortProbeAction;
484
524
  }
525
+ export interface AdminAccount {
526
+ /**
527
+ * The AWS account ID for the account.
528
+ */
529
+ AdminAccountId?: String;
530
+ /**
531
+ * Indicates whether the account is enabled as the delegated administrator.
532
+ */
533
+ AdminStatus?: AdminStatus;
534
+ }
535
+ export type AdminAccounts = AdminAccount[];
536
+ export type AdminStatus = "ENABLED"|"DISABLE_IN_PROGRESS"|string;
485
537
  export interface ArchiveFindingsRequest {
486
538
  /**
487
539
  * The ID of the detector that specifies the GuardDuty service whose findings you want to archive.
488
540
  */
489
541
  DetectorId: DetectorId;
490
542
  /**
491
- * IDs of the findings that you want to archive.
543
+ * The IDs of the findings that you want to archive.
492
544
  */
493
545
  FindingIds: FindingIds;
494
546
  }
@@ -496,30 +548,30 @@ declare namespace GuardDuty {
496
548
  }
497
549
  export interface AwsApiCallAction {
498
550
  /**
499
- * AWS API name.
551
+ * The AWS API name.
500
552
  */
501
553
  Api?: String;
502
554
  /**
503
- * AWS API caller type.
555
+ * The AWS API caller type.
504
556
  */
505
557
  CallerType?: String;
506
558
  /**
507
- * Domain information for the AWS API call.
559
+ * The domain information for the AWS API call.
508
560
  */
509
561
  DomainDetails?: DomainDetails;
510
562
  /**
511
- * Remote IP information of the connection.
563
+ * The remote IP information of the connection.
512
564
  */
513
565
  RemoteIpDetails?: RemoteIpDetails;
514
566
  /**
515
- * AWS service name whose API was invoked.
567
+ * The AWS service name whose API was invoked.
516
568
  */
517
569
  ServiceName?: String;
518
570
  }
519
571
  export type Boolean = boolean;
520
572
  export interface City {
521
573
  /**
522
- * City name of the remote IP address.
574
+ * The city name of the remote IP address.
523
575
  */
524
576
  CityName?: String;
525
577
  }
@@ -538,7 +590,7 @@ declare namespace GuardDuty {
538
590
  */
539
591
  Gt?: Integer;
540
592
  /**
541
- * Represents a greater than equal condition to be applied to a single field when querying for findings.
593
+ * Represents a greater than or equal condition to be applied to a single field when querying for findings.
542
594
  */
543
595
  Gte?: Integer;
544
596
  /**
@@ -546,15 +598,15 @@ declare namespace GuardDuty {
546
598
  */
547
599
  Lt?: Integer;
548
600
  /**
549
- * Represents a less than equal condition to be applied to a single field when querying for findings.
601
+ * Represents a less than or equal condition to be applied to a single field when querying for findings.
550
602
  */
551
603
  Lte?: Integer;
552
604
  /**
553
- * Represents an equal condition to be applied to a single field when querying for findings.
605
+ * Represents an equal condition to be applied to a single field when querying for findings.
554
606
  */
555
607
  Equals?: Equals;
556
608
  /**
557
- * Represents an not equal condition to be applied to a single field when querying for findings.
609
+ * Represents a not equal condition to be applied to a single field when querying for findings.
558
610
  */
559
611
  NotEquals?: NotEquals;
560
612
  /**
@@ -562,7 +614,7 @@ declare namespace GuardDuty {
562
614
  */
563
615
  GreaterThan?: Long;
564
616
  /**
565
- * Represents a greater than equal condition to be applied to a single field when querying for findings.
617
+ * Represents a greater than or equal condition to be applied to a single field when querying for findings.
566
618
  */
567
619
  GreaterThanOrEqual?: Long;
568
620
  /**
@@ -570,24 +622,24 @@ declare namespace GuardDuty {
570
622
  */
571
623
  LessThan?: Long;
572
624
  /**
573
- * Represents a less than equal condition to be applied to a single field when querying for findings.
625
+ * Represents a less than or equal condition to be applied to a single field when querying for findings.
574
626
  */
575
627
  LessThanOrEqual?: Long;
576
628
  }
577
629
  export type CountBySeverity = {[key: string]: Integer};
578
630
  export interface Country {
579
631
  /**
580
- * Country code of the remote IP address.
632
+ * The country code of the remote IP address.
581
633
  */
582
634
  CountryCode?: String;
583
635
  /**
584
- * Country name of the remote IP address.
636
+ * The country name of the remote IP address.
585
637
  */
586
638
  CountryName?: String;
587
639
  }
588
640
  export interface CreateDetectorRequest {
589
641
  /**
590
- * A boolean value that specifies whether the detector is to be enabled.
642
+ * A Boolean value that specifies whether the detector is to be enabled.
591
643
  */
592
644
  Enable: Boolean;
593
645
  /**
@@ -595,7 +647,7 @@ declare namespace GuardDuty {
595
647
  */
596
648
  ClientToken?: ClientToken;
597
649
  /**
598
- * A enum value that specifies how frequently customer got Finding updates published.
650
+ * An enum value that specifies how frequently updated findings are exported.
599
651
  */
600
652
  FindingPublishingFrequency?: FindingPublishingFrequency;
601
653
  /**
@@ -611,7 +663,7 @@ declare namespace GuardDuty {
611
663
  }
612
664
  export interface CreateFilterRequest {
613
665
  /**
614
- * The unique ID of the detector of the GuardDuty account for which you want to create a filter.
666
+ * The unique ID of the detector of the GuardDuty account that you want to create a filter for.
615
667
  */
616
668
  DetectorId: DetectorId;
617
669
  /**
@@ -631,7 +683,7 @@ declare namespace GuardDuty {
631
683
  */
632
684
  Rank?: FilterRank;
633
685
  /**
634
- * Represents the criteria to be used in the filter for querying findings.
686
+ * Represents the criteria to be used in the filter for querying findings. You can only use the following attributes to query findings: accountId region confidence id resource.accessKeyDetails.accessKeyId resource.accessKeyDetails.principalId resource.accessKeyDetails.userName resource.accessKeyDetails.userType resource.instanceDetails.iamInstanceProfile.id resource.instanceDetails.imageId resource.instanceDetails.instanceId resource.instanceDetails.outpostArn resource.instanceDetails.networkInterfaces.ipv6Addresses resource.instanceDetails.networkInterfaces.privateIpAddresses.privateIpAddress resource.instanceDetails.networkInterfaces.publicDnsName resource.instanceDetails.networkInterfaces.publicIp resource.instanceDetails.networkInterfaces.securityGroups.groupId resource.instanceDetails.networkInterfaces.securityGroups.groupName resource.instanceDetails.networkInterfaces.subnetId resource.instanceDetails.networkInterfaces.vpcId resource.instanceDetails.tags.key resource.instanceDetails.tags.value resource.resourceType service.action.actionType service.action.awsApiCallAction.api service.action.awsApiCallAction.callerType service.action.awsApiCallAction.remoteIpDetails.city.cityName service.action.awsApiCallAction.remoteIpDetails.country.countryName service.action.awsApiCallAction.remoteIpDetails.ipAddressV4 service.action.awsApiCallAction.remoteIpDetails.organization.asn service.action.awsApiCallAction.remoteIpDetails.organization.asnOrg service.action.awsApiCallAction.serviceName service.action.dnsRequestAction.domain service.action.networkConnectionAction.blocked service.action.networkConnectionAction.connectionDirection service.action.networkConnectionAction.localPortDetails.port service.action.networkConnectionAction.protocol service.action.networkConnectionAction.remoteIpDetails.city.cityName service.action.networkConnectionAction.remoteIpDetails.country.countryName service.action.networkConnectionAction.remoteIpDetails.ipAddressV4 service.action.networkConnectionAction.remoteIpDetails.organization.asn service.action.networkConnectionAction.remoteIpDetails.organization.asnOrg service.action.networkConnectionAction.remotePortDetails.port service.additionalInfo.threatListName service.archived When this attribute is set to TRUE, only archived findings are listed. When it's set to FALSE, only unarchived findings are listed. When this attribute is not set, all existing findings are listed. service.resourceRole severity type updatedAt Type: ISO 8601 string format: YYYY-MM-DDTHH:MM:SS.SSSZ or YYYY-MM-DDTHH:MM:SSZ depending on whether the value contains milliseconds.
635
687
  */
636
688
  FindingCriteria: FindingCriteria;
637
689
  /**
@@ -651,11 +703,11 @@ declare namespace GuardDuty {
651
703
  }
652
704
  export interface CreateIPSetRequest {
653
705
  /**
654
- * The unique ID of the detector of the GuardDuty account for which you want to create an IPSet.
706
+ * The unique ID of the detector of the GuardDuty account that you want to create an IPSet for.
655
707
  */
656
708
  DetectorId: DetectorId;
657
709
  /**
658
- * The user friendly name to identify the IPSet. This name is displayed in all findings that are triggered by activity that involves IP addresses included in this IPSet.
710
+ * The user-friendly name to identify the IPSet. Allowed characters are alphanumerics, spaces, hyphens (-), and underscores (_).
659
711
  */
660
712
  Name: Name;
661
713
  /**
@@ -663,11 +715,11 @@ declare namespace GuardDuty {
663
715
  */
664
716
  Format: IpSetFormat;
665
717
  /**
666
- * The URI of the file that contains the IPSet. For example (https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key)
718
+ * The URI of the file that contains the IPSet. For example: https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key.
667
719
  */
668
720
  Location: Location;
669
721
  /**
670
- * A boolean value that indicates whether GuardDuty is to start using the uploaded IPSet.
722
+ * A Boolean value that indicates whether GuardDuty is to start using the uploaded IPSet.
671
723
  */
672
724
  Activate: Boolean;
673
725
  /**
@@ -687,7 +739,7 @@ declare namespace GuardDuty {
687
739
  }
688
740
  export interface CreateMembersRequest {
689
741
  /**
690
- * The unique ID of the detector of the GuardDuty account with which you want to associate member accounts.
742
+ * The unique ID of the detector of the GuardDuty account that you want to associate member accounts with.
691
743
  */
692
744
  DetectorId: DetectorId;
693
745
  /**
@@ -697,7 +749,7 @@ declare namespace GuardDuty {
697
749
  }
698
750
  export interface CreateMembersResponse {
699
751
  /**
700
- * A list of objects containing the unprocessed account and a result string explaining why it was unprocessed.
752
+ * A list of objects that include the accountIds of the unprocessed accounts and a result string that explains why each was unprocessed.
701
753
  */
702
754
  UnprocessedAccounts: UnprocessedAccounts;
703
755
  }
@@ -707,11 +759,11 @@ declare namespace GuardDuty {
707
759
  */
708
760
  DetectorId: DetectorId;
709
761
  /**
710
- * The type of resource for the publishing destination. Currently only S3 is supported.
762
+ * The type of resource for the publishing destination. Currently only Amazon S3 buckets are supported.
711
763
  */
712
764
  DestinationType: DestinationType;
713
765
  /**
714
- * Properties of the publishing destination, including the ARNs for the destination and the KMS key used for encryption.
766
+ * The properties of the publishing destination, including the ARNs for the destination and the KMS key used for encryption.
715
767
  */
716
768
  DestinationProperties: DestinationProperties;
717
769
  /**
@@ -721,7 +773,7 @@ declare namespace GuardDuty {
721
773
  }
722
774
  export interface CreatePublishingDestinationResponse {
723
775
  /**
724
- * The ID of the publishing destination created.
776
+ * The ID of the publishing destination that is created.
725
777
  */
726
778
  DestinationId: String;
727
779
  }
@@ -731,7 +783,7 @@ declare namespace GuardDuty {
731
783
  */
732
784
  DetectorId: DetectorId;
733
785
  /**
734
- * Types of sample findings to generate.
786
+ * The types of sample findings to generate.
735
787
  */
736
788
  FindingTypes?: FindingTypes;
737
789
  }
@@ -739,11 +791,11 @@ declare namespace GuardDuty {
739
791
  }
740
792
  export interface CreateThreatIntelSetRequest {
741
793
  /**
742
- * The unique ID of the detector of the GuardDuty account for which you want to create a threatIntelSet.
794
+ * The unique ID of the detector of the GuardDuty account that you want to create a threatIntelSet for.
743
795
  */
744
796
  DetectorId: DetectorId;
745
797
  /**
746
- * A user-friendly ThreatIntelSet name that is displayed in all finding generated by activity that involves IP addresses included in this ThreatIntelSet.
798
+ * A user-friendly ThreatIntelSet name displayed in all findings that are generated by activity that involves IP addresses included in this ThreatIntelSet.
747
799
  */
748
800
  Name: Name;
749
801
  /**
@@ -751,11 +803,11 @@ declare namespace GuardDuty {
751
803
  */
752
804
  Format: ThreatIntelSetFormat;
753
805
  /**
754
- * The URI of the file that contains the ThreatIntelSet. For example (https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key).
806
+ * The URI of the file that contains the ThreatIntelSet. For example: https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key.
755
807
  */
756
808
  Location: Location;
757
809
  /**
758
- * A boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet.
810
+ * A Boolean value that indicates whether GuardDuty is to start using the uploaded ThreatIntelSet.
759
811
  */
760
812
  Activate: Boolean;
761
813
  /**
@@ -763,7 +815,7 @@ declare namespace GuardDuty {
763
815
  */
764
816
  ClientToken?: ClientToken;
765
817
  /**
766
- * The tags to be added to a new Threat List resource.
818
+ * The tags to be added to a new threat list resource.
767
819
  */
768
820
  Tags?: TagMap;
769
821
  }
@@ -782,7 +834,7 @@ declare namespace GuardDuty {
782
834
  }
783
835
  export interface DeclineInvitationsResponse {
784
836
  /**
785
- * A list of objects containing the unprocessed account and a result string explaining why it was unprocessed.
837
+ * A list of objects that contain the unprocessed account and a result string that explains why it was unprocessed.
786
838
  */
787
839
  UnprocessedAccounts: UnprocessedAccounts;
788
840
  }
@@ -796,11 +848,11 @@ declare namespace GuardDuty {
796
848
  }
797
849
  export interface DeleteFilterRequest {
798
850
  /**
799
- * The unique ID of the detector the filter is associated with.
851
+ * The unique ID of the detector that the filter is associated with.
800
852
  */
801
853
  DetectorId: DetectorId;
802
854
  /**
803
- * The name of the filter you want to delete.
855
+ * The name of the filter that you want to delete.
804
856
  */
805
857
  FilterName: String;
806
858
  }
@@ -826,7 +878,7 @@ declare namespace GuardDuty {
826
878
  }
827
879
  export interface DeleteInvitationsResponse {
828
880
  /**
829
- * A list of objects containing the unprocessed account and a result string explaining why it was unprocessed.
881
+ * A list of objects that contain the unprocessed account and a result string that explains why it was unprocessed.
830
882
  */
831
883
  UnprocessedAccounts: UnprocessedAccounts;
832
884
  }
@@ -860,16 +912,32 @@ declare namespace GuardDuty {
860
912
  }
861
913
  export interface DeleteThreatIntelSetRequest {
862
914
  /**
863
- * The unique ID of the detector the threatIntelSet is associated with.
915
+ * The unique ID of the detector that the threatIntelSet is associated with.
864
916
  */
865
917
  DetectorId: DetectorId;
866
918
  /**
867
- * The unique ID of the threatIntelSet you want to delete.
919
+ * The unique ID of the threatIntelSet that you want to delete.
868
920
  */
869
921
  ThreatIntelSetId: String;
870
922
  }
871
923
  export interface DeleteThreatIntelSetResponse {
872
924
  }
925
+ export interface DescribeOrganizationConfigurationRequest {
926
+ /**
927
+ * The ID of the detector to retrieve information about the delegated administrator from.
928
+ */
929
+ DetectorId: DetectorId;
930
+ }
931
+ export interface DescribeOrganizationConfigurationResponse {
932
+ /**
933
+ * Indicates whether GuardDuty is automatically enabled for accounts added to the organization.
934
+ */
935
+ AutoEnable: Boolean;
936
+ /**
937
+ * Indicates whether the maximum number of allowed member accounts are already associated with the delegated administrator master account.
938
+ */
939
+ MemberAccountLimitReached: Boolean;
940
+ }
873
941
  export interface DescribePublishingDestinationRequest {
874
942
  /**
875
943
  * The unique ID of the detector associated with the publishing destination to retrieve.
@@ -886,7 +954,7 @@ declare namespace GuardDuty {
886
954
  */
887
955
  DestinationId: String;
888
956
  /**
889
- * The type of the publishing destination. Currently, only S3 is supported.
957
+ * The type of publishing destination. Currently, only Amazon S3 buckets are supported.
890
958
  */
891
959
  DestinationType: DestinationType;
892
960
  /**
@@ -908,7 +976,7 @@ declare namespace GuardDuty {
908
976
  */
909
977
  DestinationId: String;
910
978
  /**
911
- * The type of resource used for the publishing destination. Currently, only S3 is supported.
979
+ * The type of resource used for the publishing destination. Currently, only Amazon S3 buckets are supported.
912
980
  */
913
981
  DestinationType: DestinationType;
914
982
  /**
@@ -931,6 +999,14 @@ declare namespace GuardDuty {
931
999
  export type DetectorId = string;
932
1000
  export type DetectorIds = DetectorId[];
933
1001
  export type DetectorStatus = "ENABLED"|"DISABLED"|string;
1002
+ export interface DisableOrganizationAdminAccountRequest {
1003
+ /**
1004
+ * The AWS Account ID for the Organizations account to be disabled as a GuardDuty delegated administrator.
1005
+ */
1006
+ AdminAccountId: String;
1007
+ }
1008
+ export interface DisableOrganizationAdminAccountResponse {
1009
+ }
934
1010
  export interface DisassociateFromMasterAccountRequest {
935
1011
  /**
936
1012
  * The unique ID of the detector of the GuardDuty member account.
@@ -941,34 +1017,42 @@ declare namespace GuardDuty {
941
1017
  }
942
1018
  export interface DisassociateMembersRequest {
943
1019
  /**
944
- * The unique ID of the detector of the GuardDuty account whose members you want to disassociate from master.
1020
+ * The unique ID of the detector of the GuardDuty account whose members you want to disassociate from the master account.
945
1021
  */
946
1022
  DetectorId: DetectorId;
947
1023
  /**
948
- * A list of account IDs of the GuardDuty member accounts that you want to disassociate from master.
1024
+ * A list of account IDs of the GuardDuty member accounts that you want to disassociate from the master account.
949
1025
  */
950
1026
  AccountIds: AccountIds;
951
1027
  }
952
1028
  export interface DisassociateMembersResponse {
953
1029
  /**
954
- * A list of objects containing the unprocessed account and a result string explaining why it was unprocessed.
1030
+ * A list of objects that contain the unprocessed account and a result string that explains why it was unprocessed.
955
1031
  */
956
1032
  UnprocessedAccounts: UnprocessedAccounts;
957
1033
  }
958
1034
  export interface DnsRequestAction {
959
1035
  /**
960
- * Domain information for the API request.
1036
+ * The domain information for the API request.
961
1037
  */
962
1038
  Domain?: String;
963
1039
  }
964
1040
  export interface DomainDetails {
965
1041
  /**
966
- * Domain information for the AWS API call.
1042
+ * The domain information for the AWS API call.
967
1043
  */
968
1044
  Domain?: String;
969
1045
  }
970
1046
  export type Double = number;
971
1047
  export type Email = string;
1048
+ export interface EnableOrganizationAdminAccountRequest {
1049
+ /**
1050
+ * The AWS Account ID for the Organizations account to be enabled as a GuardDuty delegated administrator.
1051
+ */
1052
+ AdminAccountId: String;
1053
+ }
1054
+ export interface EnableOrganizationAdminAccountResponse {
1055
+ }
972
1056
  export type Eq = String[];
973
1057
  export type Equals = String[];
974
1058
  export interface Evidence {
@@ -989,7 +1073,7 @@ declare namespace GuardDuty {
989
1073
  */
990
1074
  AccountId: String;
991
1075
  /**
992
- * The ARN for the finding.
1076
+ * The ARN of the finding.
993
1077
  */
994
1078
  Arn: String;
995
1079
  /**
@@ -997,7 +1081,7 @@ declare namespace GuardDuty {
997
1081
  */
998
1082
  Confidence?: Double;
999
1083
  /**
1000
- * The time and date at which the finding was created.
1084
+ * The time and date when the finding was created.
1001
1085
  */
1002
1086
  CreatedAt: String;
1003
1087
  /**
@@ -1013,7 +1097,7 @@ declare namespace GuardDuty {
1013
1097
  */
1014
1098
  Partition?: String;
1015
1099
  /**
1016
- * The Region in which the finding was generated.
1100
+ * The Region where the finding was generated.
1017
1101
  */
1018
1102
  Region: String;
1019
1103
  Resource: Resource;
@@ -1027,15 +1111,15 @@ declare namespace GuardDuty {
1027
1111
  */
1028
1112
  Severity: Double;
1029
1113
  /**
1030
- * The title for the finding.
1114
+ * The title of the finding.
1031
1115
  */
1032
1116
  Title?: String;
1033
1117
  /**
1034
- * The type of the finding.
1118
+ * The type of finding.
1035
1119
  */
1036
1120
  Type: FindingType;
1037
1121
  /**
1038
- * The time and date at which the finding was laste updated.
1122
+ * The time and date when the finding was last updated.
1039
1123
  */
1040
1124
  UpdatedAt: String;
1041
1125
  }
@@ -1052,7 +1136,7 @@ declare namespace GuardDuty {
1052
1136
  export type FindingStatisticTypes = FindingStatisticType[];
1053
1137
  export interface FindingStatistics {
1054
1138
  /**
1055
- * Represents a map of severity to count statistic for a set of findings
1139
+ * Represents a map of severity to count statistics for a set of findings.
1056
1140
  */
1057
1141
  CountBySeverity?: CountBySeverity;
1058
1142
  }
@@ -1061,11 +1145,11 @@ declare namespace GuardDuty {
1061
1145
  export type Findings = Finding[];
1062
1146
  export interface GeoLocation {
1063
1147
  /**
1064
- * Latitude information of remote IP address.
1148
+ * The latitude information of the remote IP address.
1065
1149
  */
1066
1150
  Lat?: Double;
1067
1151
  /**
1068
- * Longitude information of remote IP address.
1152
+ * The longitude information of the remote IP address.
1069
1153
  */
1070
1154
  Lon?: Double;
1071
1155
  }
@@ -1077,11 +1161,11 @@ declare namespace GuardDuty {
1077
1161
  }
1078
1162
  export interface GetDetectorResponse {
1079
1163
  /**
1080
- * Detector creation timestamp.
1164
+ * The timestamp of when the detector was created.
1081
1165
  */
1082
1166
  CreatedAt?: String;
1083
1167
  /**
1084
- * Finding publishing frequency.
1168
+ * The publishing frequency of the finding.
1085
1169
  */
1086
1170
  FindingPublishingFrequency?: FindingPublishingFrequency;
1087
1171
  /**
@@ -1093,7 +1177,7 @@ declare namespace GuardDuty {
1093
1177
  */
1094
1178
  Status: DetectorStatus;
1095
1179
  /**
1096
- * Detector last update timestamp.
1180
+ * The last-updated timestamp for the detector.
1097
1181
  */
1098
1182
  UpdatedAt?: String;
1099
1183
  /**
@@ -1103,7 +1187,7 @@ declare namespace GuardDuty {
1103
1187
  }
1104
1188
  export interface GetFilterRequest {
1105
1189
  /**
1106
- * The unique ID of the detector the filter is associated with.
1190
+ * The unique ID of the detector that the filter is associated with.
1107
1191
  */
1108
1192
  DetectorId: DetectorId;
1109
1193
  /**
@@ -1143,7 +1227,7 @@ declare namespace GuardDuty {
1143
1227
  */
1144
1228
  DetectorId: DetectorId;
1145
1229
  /**
1146
- * IDs of the findings that you want to retrieve.
1230
+ * The IDs of the findings that you want to retrieve.
1147
1231
  */
1148
1232
  FindingIds: FindingIds;
1149
1233
  /**
@@ -1163,23 +1247,23 @@ declare namespace GuardDuty {
1163
1247
  */
1164
1248
  DetectorId: DetectorId;
1165
1249
  /**
1166
- * Types of finding statistics to retrieve.
1250
+ * The types of finding statistics to retrieve.
1167
1251
  */
1168
1252
  FindingStatisticTypes: FindingStatisticTypes;
1169
1253
  /**
1170
- * Represents the criteria used for querying findings.
1254
+ * Represents the criteria that is used for querying findings.
1171
1255
  */
1172
1256
  FindingCriteria?: FindingCriteria;
1173
1257
  }
1174
1258
  export interface GetFindingsStatisticsResponse {
1175
1259
  /**
1176
- * Finding statistics object.
1260
+ * The finding statistics object.
1177
1261
  */
1178
1262
  FindingStatistics: FindingStatistics;
1179
1263
  }
1180
1264
  export interface GetIPSetRequest {
1181
1265
  /**
1182
- * The unique ID of the detector the ipSet is associated with.
1266
+ * The unique ID of the detector that the IPSet is associated with.
1183
1267
  */
1184
1268
  DetectorId: DetectorId;
1185
1269
  /**
@@ -1189,7 +1273,7 @@ declare namespace GuardDuty {
1189
1273
  }
1190
1274
  export interface GetIPSetResponse {
1191
1275
  /**
1192
- * The user friendly name for the IPSet.
1276
+ * The user-friendly name for the IPSet.
1193
1277
  */
1194
1278
  Name: Name;
1195
1279
  /**
@@ -1197,15 +1281,15 @@ declare namespace GuardDuty {
1197
1281
  */
1198
1282
  Format: IpSetFormat;
1199
1283
  /**
1200
- * The URI of the file that contains the IPSet. For example (https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key)
1284
+ * The URI of the file that contains the IPSet. For example: https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key.
1201
1285
  */
1202
1286
  Location: Location;
1203
1287
  /**
1204
- * The status of ipSet file uploaded.
1288
+ * The status of IPSet file that was uploaded.
1205
1289
  */
1206
1290
  Status: IpSetStatus;
1207
1291
  /**
1208
- * The tags of the IP set resource.
1292
+ * The tags of the IPSet resource.
1209
1293
  */
1210
1294
  Tags?: TagMap;
1211
1295
  }
@@ -1225,7 +1309,7 @@ declare namespace GuardDuty {
1225
1309
  }
1226
1310
  export interface GetMasterAccountResponse {
1227
1311
  /**
1228
- * Master account details.
1312
+ * The master account details.
1229
1313
  */
1230
1314
  Master: Master;
1231
1315
  }
@@ -1245,23 +1329,23 @@ declare namespace GuardDuty {
1245
1329
  */
1246
1330
  Members: Members;
1247
1331
  /**
1248
- * A list of objects containing the unprocessed account and a result string explaining why it was unprocessed.
1332
+ * A list of objects that contain the unprocessed account and a result string that explains why it was unprocessed.
1249
1333
  */
1250
1334
  UnprocessedAccounts: UnprocessedAccounts;
1251
1335
  }
1252
1336
  export interface GetThreatIntelSetRequest {
1253
1337
  /**
1254
- * The unique ID of the detector the threatIntelSet is associated with.
1338
+ * The unique ID of the detector that the threatIntelSet is associated with.
1255
1339
  */
1256
1340
  DetectorId: DetectorId;
1257
1341
  /**
1258
- * The unique ID of the threatIntelSet you want to get.
1342
+ * The unique ID of the threatIntelSet that you want to get.
1259
1343
  */
1260
1344
  ThreatIntelSetId: String;
1261
1345
  }
1262
1346
  export interface GetThreatIntelSetResponse {
1263
1347
  /**
1264
- * A user-friendly ThreatIntelSet name that is displayed in all finding generated by activity that involves IP addresses included in this ThreatIntelSet.
1348
+ * A user-friendly ThreatIntelSet name displayed in all findings that are generated by activity that involves IP addresses included in this ThreatIntelSet.
1265
1349
  */
1266
1350
  Name: Name;
1267
1351
  /**
@@ -1269,7 +1353,7 @@ declare namespace GuardDuty {
1269
1353
  */
1270
1354
  Format: ThreatIntelSetFormat;
1271
1355
  /**
1272
- * The URI of the file that contains the ThreatIntelSet. For example (https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key).
1356
+ * The URI of the file that contains the ThreatIntelSet. For example: https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key.
1273
1357
  */
1274
1358
  Location: Location;
1275
1359
  /**
@@ -1277,24 +1361,24 @@ declare namespace GuardDuty {
1277
1361
  */
1278
1362
  Status: ThreatIntelSetStatus;
1279
1363
  /**
1280
- * The tags of the Threat List resource.
1364
+ * The tags of the threat list resource.
1281
1365
  */
1282
1366
  Tags?: TagMap;
1283
1367
  }
1284
1368
  export type GuardDutyArn = string;
1285
1369
  export interface IamInstanceProfile {
1286
1370
  /**
1287
- * AWS EC2 instance profile ARN.
1371
+ * The profile ARN of the EC2 instance.
1288
1372
  */
1289
1373
  Arn?: String;
1290
1374
  /**
1291
- * AWS EC2 instance profile ID.
1375
+ * The profile ID of the EC2 instance.
1292
1376
  */
1293
1377
  Id?: String;
1294
1378
  }
1295
1379
  export interface InstanceDetails {
1296
1380
  /**
1297
- * The availability zone of the EC2 instance.
1381
+ * The Availability Zone of the EC2 instance.
1298
1382
  */
1299
1383
  AvailabilityZone?: String;
1300
1384
  /**
@@ -1330,7 +1414,7 @@ declare namespace GuardDuty {
1330
1414
  */
1331
1415
  LaunchTime?: String;
1332
1416
  /**
1333
- * The network interface information of the EC2 instance.
1417
+ * The elastic network interface information of the EC2 instance.
1334
1418
  */
1335
1419
  NetworkInterfaces?: NetworkInterfaces;
1336
1420
  /**
@@ -1349,7 +1433,7 @@ declare namespace GuardDuty {
1349
1433
  export type Integer = number;
1350
1434
  export interface Invitation {
1351
1435
  /**
1352
- * The ID of the account from which the invitations was sent.
1436
+ * The ID of the account that the invitation was sent from.
1353
1437
  */
1354
1438
  AccountId?: AccountId;
1355
1439
  /**
@@ -1361,14 +1445,14 @@ declare namespace GuardDuty {
1361
1445
  */
1362
1446
  RelationshipStatus?: String;
1363
1447
  /**
1364
- * Timestamp at which the invitation was sent.
1448
+ * The timestamp when the invitation was sent.
1365
1449
  */
1366
1450
  InvitedAt?: String;
1367
1451
  }
1368
1452
  export type Invitations = Invitation[];
1369
1453
  export interface InviteMembersRequest {
1370
1454
  /**
1371
- * The unique ID of the detector of the GuardDuty account with which you want to invite members.
1455
+ * The unique ID of the detector of the GuardDuty account that you want to invite members with.
1372
1456
  */
1373
1457
  DetectorId: DetectorId;
1374
1458
  /**
@@ -1376,7 +1460,7 @@ declare namespace GuardDuty {
1376
1460
  */
1377
1461
  AccountIds: AccountIds;
1378
1462
  /**
1379
- * A boolean value that specifies whether you want to disable email notification to the accounts that you’re inviting to GuardDuty as members.
1463
+ * A Boolean value that specifies whether you want to disable email notification to the accounts that you’re inviting to GuardDuty as members.
1380
1464
  */
1381
1465
  DisableEmailNotification?: Boolean;
1382
1466
  /**
@@ -1386,7 +1470,7 @@ declare namespace GuardDuty {
1386
1470
  }
1387
1471
  export interface InviteMembersResponse {
1388
1472
  /**
1389
- * A list of objects containing the unprocessed account and a result string explaining why it was unprocessed.
1473
+ * A list of objects that contain the unprocessed account and a result string that explains why it was unprocessed.
1390
1474
  */
1391
1475
  UnprocessedAccounts: UnprocessedAccounts;
1392
1476
  }
@@ -1396,45 +1480,45 @@ declare namespace GuardDuty {
1396
1480
  export type Ipv6Addresses = String[];
1397
1481
  export interface ListDetectorsRequest {
1398
1482
  /**
1399
- * You can use this parameter to indicate the maximum number of items you want in the response. The default value is 50. The maximum value is 50.
1483
+ * You can use this parameter to indicate the maximum number of items that you want in the response. The default value is 50. The maximum value is 50.
1400
1484
  */
1401
1485
  MaxResults?: MaxResults;
1402
1486
  /**
1403
- * You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
1487
+ * You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action, fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
1404
1488
  */
1405
1489
  NextToken?: String;
1406
1490
  }
1407
1491
  export interface ListDetectorsResponse {
1408
1492
  /**
1409
- * A list of detector Ids.
1493
+ * A list of detector IDs.
1410
1494
  */
1411
1495
  DetectorIds: DetectorIds;
1412
1496
  /**
1413
- * Pagination parameter to be used on the next list operation to retrieve more items.
1497
+ * The pagination parameter to be used on the next list operation to retrieve more items.
1414
1498
  */
1415
1499
  NextToken?: String;
1416
1500
  }
1417
1501
  export interface ListFiltersRequest {
1418
1502
  /**
1419
- * The unique ID of the detector the filter is associated with.
1503
+ * The unique ID of the detector that the filter is associated with.
1420
1504
  */
1421
1505
  DetectorId: DetectorId;
1422
1506
  /**
1423
- * You can use this parameter to indicate the maximum number of items you want in the response. The default value is 50. The maximum value is 50.
1507
+ * You can use this parameter to indicate the maximum number of items that you want in the response. The default value is 50. The maximum value is 50.
1424
1508
  */
1425
1509
  MaxResults?: MaxResults;
1426
1510
  /**
1427
- * You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
1511
+ * You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action, fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
1428
1512
  */
1429
1513
  NextToken?: String;
1430
1514
  }
1431
1515
  export interface ListFiltersResponse {
1432
1516
  /**
1433
- * A list of filter names
1517
+ * A list of filter names.
1434
1518
  */
1435
1519
  FilterNames: FilterNames;
1436
1520
  /**
1437
- * Pagination parameter to be used on the next list operation to retrieve more items.
1521
+ * The pagination parameter to be used on the next list operation to retrieve more items.
1438
1522
  */
1439
1523
  NextToken?: String;
1440
1524
  }
@@ -1444,7 +1528,7 @@ declare namespace GuardDuty {
1444
1528
  */
1445
1529
  DetectorId: DetectorId;
1446
1530
  /**
1447
- * Represents the criteria used for querying findings. Valid values include: JSON field name accountId region confidence id resource.accessKeyDetails.accessKeyId resource.accessKeyDetails.principalId resource.accessKeyDetails.userName resource.accessKeyDetails.userType resource.instanceDetails.iamInstanceProfile.id resource.instanceDetails.imageId resource.instanceDetails.instanceId resource.instanceDetails.outpostArn resource.instanceDetails.networkInterfaces.ipv6Addresses resource.instanceDetails.networkInterfaces.privateIpAddresses.privateIpAddress resource.instanceDetails.networkInterfaces.publicDnsName resource.instanceDetails.networkInterfaces.publicIp resource.instanceDetails.networkInterfaces.securityGroups.groupId resource.instanceDetails.networkInterfaces.securityGroups.groupName resource.instanceDetails.networkInterfaces.subnetId resource.instanceDetails.networkInterfaces.vpcId resource.instanceDetails.tags.key resource.instanceDetails.tags.value resource.resourceType service.action.actionType service.action.awsApiCallAction.api service.action.awsApiCallAction.callerType service.action.awsApiCallAction.remoteIpDetails.city.cityName service.action.awsApiCallAction.remoteIpDetails.country.countryName service.action.awsApiCallAction.remoteIpDetails.ipAddressV4 service.action.awsApiCallAction.remoteIpDetails.organization.asn service.action.awsApiCallAction.remoteIpDetails.organization.asnOrg service.action.awsApiCallAction.serviceName service.action.dnsRequestAction.domain service.action.networkConnectionAction.blocked service.action.networkConnectionAction.connectionDirection service.action.networkConnectionAction.localPortDetails.port service.action.networkConnectionAction.protocol service.action.networkConnectionAction.localIpDetails.ipAddressV4 service.action.networkConnectionAction.remoteIpDetails.city.cityName service.action.networkConnectionAction.remoteIpDetails.country.countryName service.action.networkConnectionAction.remoteIpDetails.ipAddressV4 service.action.networkConnectionAction.remoteIpDetails.organization.asn service.action.networkConnectionAction.remoteIpDetails.organization.asnOrg service.action.networkConnectionAction.remotePortDetails.port service.additionalInfo.threatListName service.archived When this attribute is set to 'true', only archived findings are listed. When it's set to 'false', only unarchived findings are listed. When this attribute is not set, all existing findings are listed. service.resourceRole severity type updatedAt Type: Timestamp in Unix Epoch millisecond format: 1486685375000
1531
+ * Represents the criteria used for querying findings. Valid values include: JSON field name accountId region confidence id resource.accessKeyDetails.accessKeyId resource.accessKeyDetails.principalId resource.accessKeyDetails.userName resource.accessKeyDetails.userType resource.instanceDetails.iamInstanceProfile.id resource.instanceDetails.imageId resource.instanceDetails.instanceId resource.instanceDetails.networkInterfaces.ipv6Addresses resource.instanceDetails.networkInterfaces.privateIpAddresses.privateIpAddress resource.instanceDetails.networkInterfaces.publicDnsName resource.instanceDetails.networkInterfaces.publicIp resource.instanceDetails.networkInterfaces.securityGroups.groupId resource.instanceDetails.networkInterfaces.securityGroups.groupName resource.instanceDetails.networkInterfaces.subnetId resource.instanceDetails.networkInterfaces.vpcId resource.instanceDetails.tags.key resource.instanceDetails.tags.value resource.resourceType service.action.actionType service.action.awsApiCallAction.api service.action.awsApiCallAction.callerType service.action.awsApiCallAction.remoteIpDetails.city.cityName service.action.awsApiCallAction.remoteIpDetails.country.countryName service.action.awsApiCallAction.remoteIpDetails.ipAddressV4 service.action.awsApiCallAction.remoteIpDetails.organization.asn service.action.awsApiCallAction.remoteIpDetails.organization.asnOrg service.action.awsApiCallAction.serviceName service.action.dnsRequestAction.domain service.action.networkConnectionAction.blocked service.action.networkConnectionAction.connectionDirection service.action.networkConnectionAction.localPortDetails.port service.action.networkConnectionAction.protocol service.action.networkConnectionAction.remoteIpDetails.city.cityName service.action.networkConnectionAction.remoteIpDetails.country.countryName service.action.networkConnectionAction.remoteIpDetails.ipAddressV4 service.action.networkConnectionAction.remoteIpDetails.organization.asn service.action.networkConnectionAction.remoteIpDetails.organization.asnOrg service.action.networkConnectionAction.remotePortDetails.port service.additionalInfo.threatListName service.archived When this attribute is set to 'true', only archived findings are listed. When it's set to 'false', only unarchived findings are listed. When this attribute is not set, all existing findings are listed. service.resourceRole severity type updatedAt Type: Timestamp in Unix Epoch millisecond format: 1486685375000
1448
1532
  */
1449
1533
  FindingCriteria?: FindingCriteria;
1450
1534
  /**
@@ -1456,23 +1540,23 @@ declare namespace GuardDuty {
1456
1540
  */
1457
1541
  MaxResults?: MaxResults;
1458
1542
  /**
1459
- * You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
1543
+ * You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action, fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
1460
1544
  */
1461
1545
  NextToken?: String;
1462
1546
  }
1463
1547
  export interface ListFindingsResponse {
1464
1548
  /**
1465
- * The IDs of the findings you are listing.
1549
+ * The IDs of the findings that you're listing.
1466
1550
  */
1467
1551
  FindingIds: FindingIds;
1468
1552
  /**
1469
- * Pagination parameter to be used on the next list operation to retrieve more items.
1553
+ * The pagination parameter to be used on the next list operation to retrieve more items.
1470
1554
  */
1471
1555
  NextToken?: String;
1472
1556
  }
1473
1557
  export interface ListIPSetsRequest {
1474
1558
  /**
1475
- * The unique ID of the detector the ipSet is associated with.
1559
+ * The unique ID of the detector that the IPSet is associated with.
1476
1560
  */
1477
1561
  DetectorId: DetectorId;
1478
1562
  /**
@@ -1480,7 +1564,7 @@ declare namespace GuardDuty {
1480
1564
  */
1481
1565
  MaxResults?: MaxResults;
1482
1566
  /**
1483
- * You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
1567
+ * You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action, fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
1484
1568
  */
1485
1569
  NextToken?: String;
1486
1570
  }
@@ -1490,17 +1574,17 @@ declare namespace GuardDuty {
1490
1574
  */
1491
1575
  IpSetIds: IpSetIds;
1492
1576
  /**
1493
- * Pagination parameter to be used on the next list operation to retrieve more items.
1577
+ * The pagination parameter to be used on the next list operation to retrieve more items.
1494
1578
  */
1495
1579
  NextToken?: String;
1496
1580
  }
1497
1581
  export interface ListInvitationsRequest {
1498
1582
  /**
1499
- * You can use this parameter to indicate the maximum number of items you want in the response. The default value is 50. The maximum value is 50.
1583
+ * You can use this parameter to indicate the maximum number of items that you want in the response. The default value is 50. The maximum value is 50.
1500
1584
  */
1501
1585
  MaxResults?: MaxResults;
1502
1586
  /**
1503
- * You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
1587
+ * You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action, fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
1504
1588
  */
1505
1589
  NextToken?: String;
1506
1590
  }
@@ -1510,7 +1594,7 @@ declare namespace GuardDuty {
1510
1594
  */
1511
1595
  Invitations?: Invitations;
1512
1596
  /**
1513
- * Pagination parameter to be used on the next list operation to retrieve more items.
1597
+ * The pagination parameter to be used on the next list operation to retrieve more items.
1514
1598
  */
1515
1599
  NextToken?: String;
1516
1600
  }
@@ -1524,11 +1608,11 @@ declare namespace GuardDuty {
1524
1608
  */
1525
1609
  MaxResults?: MaxResults;
1526
1610
  /**
1527
- * You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
1611
+ * You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action, fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
1528
1612
  */
1529
1613
  NextToken?: String;
1530
1614
  /**
1531
- * Specifies whether to only return associated members or to return all members (including members which haven't been invited yet or have been disassociated).
1615
+ * Specifies what member accounts the response includes based on their relationship status with the master account. The default value is "true". If set to "false" the response includes all existing member accounts (including members who haven't been invited yet or have been disassociated).
1532
1616
  */
1533
1617
  OnlyAssociated?: String;
1534
1618
  }
@@ -1538,7 +1622,27 @@ declare namespace GuardDuty {
1538
1622
  */
1539
1623
  Members?: Members;
1540
1624
  /**
1541
- * Pagination parameter to be used on the next list operation to retrieve more items.
1625
+ * The pagination parameter to be used on the next list operation to retrieve more items.
1626
+ */
1627
+ NextToken?: String;
1628
+ }
1629
+ export interface ListOrganizationAdminAccountsRequest {
1630
+ /**
1631
+ * The maximum number of results to return in the response.
1632
+ */
1633
+ MaxResults?: MaxResults;
1634
+ /**
1635
+ * A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
1636
+ */
1637
+ NextToken?: String;
1638
+ }
1639
+ export interface ListOrganizationAdminAccountsResponse {
1640
+ /**
1641
+ * An AdminAccounts object that includes a list of accounts configured as GuardDuty delegated administrators.
1642
+ */
1643
+ AdminAccounts?: AdminAccounts;
1644
+ /**
1645
+ * The pagination parameter to be used on the next list operation to retrieve more items.
1542
1646
  */
1543
1647
  NextToken?: String;
1544
1648
  }
@@ -1552,23 +1656,23 @@ declare namespace GuardDuty {
1552
1656
  */
1553
1657
  MaxResults?: MaxResults;
1554
1658
  /**
1555
- * A token to use for paginating results returned in the repsonse. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
1659
+ * A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
1556
1660
  */
1557
1661
  NextToken?: String;
1558
1662
  }
1559
1663
  export interface ListPublishingDestinationsResponse {
1560
1664
  /**
1561
- * A Destinations obect that includes information about each publishing destination returned.
1665
+ * A Destinations object that includes information about each publishing destination returned.
1562
1666
  */
1563
1667
  Destinations: Destinations;
1564
1668
  /**
1565
- * A token to use for paginating results returned in the repsonse. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
1669
+ * A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
1566
1670
  */
1567
1671
  NextToken?: String;
1568
1672
  }
1569
1673
  export interface ListTagsForResourceRequest {
1570
1674
  /**
1571
- * The Amazon Resource Name (ARN) for the given GuardDuty resource
1675
+ * The Amazon Resource Name (ARN) for the given GuardDuty resource.
1572
1676
  */
1573
1677
  ResourceArn: GuardDutyArn;
1574
1678
  }
@@ -1580,15 +1684,15 @@ declare namespace GuardDuty {
1580
1684
  }
1581
1685
  export interface ListThreatIntelSetsRequest {
1582
1686
  /**
1583
- * The unique ID of the detector the threatIntelSet is associated with.
1687
+ * The unique ID of the detector that the threatIntelSet is associated with.
1584
1688
  */
1585
1689
  DetectorId: DetectorId;
1586
1690
  /**
1587
- * You can use this parameter to indicate the maximum number of items you want in the response. The default value is 50. The maximum value is 50.
1691
+ * You can use this parameter to indicate the maximum number of items that you want in the response. The default value is 50. The maximum value is 50.
1588
1692
  */
1589
1693
  MaxResults?: MaxResults;
1590
1694
  /**
1591
- * You can use this parameter to paginate results in the response. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
1695
+ * You can use this parameter to paginate results in the response. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action, fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
1592
1696
  */
1593
1697
  NextToken?: String;
1594
1698
  }
@@ -1598,23 +1702,23 @@ declare namespace GuardDuty {
1598
1702
  */
1599
1703
  ThreatIntelSetIds: ThreatIntelSetIds;
1600
1704
  /**
1601
- * Pagination parameter to be used on the next list operation to retrieve more items.
1705
+ * The pagination parameter to be used on the next list operation to retrieve more items.
1602
1706
  */
1603
1707
  NextToken?: String;
1604
1708
  }
1605
1709
  export interface LocalIpDetails {
1606
1710
  /**
1607
- * IPV4 remote address of the connection.
1711
+ * The IPv4 local address of the connection.
1608
1712
  */
1609
1713
  IpAddressV4?: String;
1610
1714
  }
1611
1715
  export interface LocalPortDetails {
1612
1716
  /**
1613
- * Port number of the local connection.
1717
+ * The port number of the local connection.
1614
1718
  */
1615
1719
  Port?: Integer;
1616
1720
  /**
1617
- * Port name of the local connection.
1721
+ * The port name of the local connection.
1618
1722
  */
1619
1723
  PortName?: String;
1620
1724
  }
@@ -1622,11 +1726,11 @@ declare namespace GuardDuty {
1622
1726
  export type Long = number;
1623
1727
  export interface Master {
1624
1728
  /**
1625
- * The ID of the account used as the Master account.
1729
+ * The ID of the account used as the master account.
1626
1730
  */
1627
1731
  AccountId?: AccountId;
1628
1732
  /**
1629
- * This value is used to validate the master account to the member account.
1733
+ * The value used to validate the master account to the member account.
1630
1734
  */
1631
1735
  InvitationId?: String;
1632
1736
  /**
@@ -1634,26 +1738,26 @@ declare namespace GuardDuty {
1634
1738
  */
1635
1739
  RelationshipStatus?: String;
1636
1740
  /**
1637
- * Timestamp at which the invitation was sent.
1741
+ * The timestamp when the invitation was sent.
1638
1742
  */
1639
1743
  InvitedAt?: String;
1640
1744
  }
1641
1745
  export type MaxResults = number;
1642
1746
  export interface Member {
1643
1747
  /**
1644
- * Member account ID.
1748
+ * The ID of the member account.
1645
1749
  */
1646
1750
  AccountId: AccountId;
1647
1751
  /**
1648
- * Member account's detector ID.
1752
+ * The detector ID of the member account.
1649
1753
  */
1650
1754
  DetectorId?: DetectorId;
1651
1755
  /**
1652
- * Master account ID.
1756
+ * The master account ID.
1653
1757
  */
1654
1758
  MasterId: String;
1655
1759
  /**
1656
- * Member account's email address.
1760
+ * The email address of the member account.
1657
1761
  */
1658
1762
  Email: Email;
1659
1763
  /**
@@ -1661,11 +1765,11 @@ declare namespace GuardDuty {
1661
1765
  */
1662
1766
  RelationshipStatus: String;
1663
1767
  /**
1664
- * Timestamp at which the invitation was sent
1768
+ * The timestamp when the invitation was sent.
1665
1769
  */
1666
1770
  InvitedAt?: String;
1667
1771
  /**
1668
- * Member last updated timestamp.
1772
+ * The last-updated timestamp of the member.
1669
1773
  */
1670
1774
  UpdatedAt: String;
1671
1775
  }
@@ -1674,49 +1778,49 @@ declare namespace GuardDuty {
1674
1778
  export type Neq = String[];
1675
1779
  export interface NetworkConnectionAction {
1676
1780
  /**
1677
- * Network connection blocked information.
1781
+ * Indicates whether EC2 blocked the network connection to your instance.
1678
1782
  */
1679
1783
  Blocked?: Boolean;
1680
1784
  /**
1681
- * Network connection direction.
1785
+ * The network connection direction.
1682
1786
  */
1683
1787
  ConnectionDirection?: String;
1684
1788
  /**
1685
- * Local port information of the connection.
1789
+ * The local port information of the connection.
1686
1790
  */
1687
1791
  LocalPortDetails?: LocalPortDetails;
1688
1792
  /**
1689
- * Network connection protocol.
1793
+ * The network connection protocol.
1690
1794
  */
1691
1795
  Protocol?: String;
1692
1796
  /**
1693
- * Local IP information of the connection.
1797
+ * The local IP information of the connection.
1694
1798
  */
1695
1799
  LocalIpDetails?: LocalIpDetails;
1696
1800
  /**
1697
- * Remote IP information of the connection.
1801
+ * The remote IP information of the connection.
1698
1802
  */
1699
1803
  RemoteIpDetails?: RemoteIpDetails;
1700
1804
  /**
1701
- * Remote port information of the connection.
1805
+ * The remote port information of the connection.
1702
1806
  */
1703
1807
  RemotePortDetails?: RemotePortDetails;
1704
1808
  }
1705
1809
  export interface NetworkInterface {
1706
1810
  /**
1707
- * A list of EC2 instance IPv6 address information.
1811
+ * A list of IPv6 addresses for the EC2 instance.
1708
1812
  */
1709
1813
  Ipv6Addresses?: Ipv6Addresses;
1710
1814
  /**
1711
- * The ID of the network interface
1815
+ * The ID of the network interface.
1712
1816
  */
1713
1817
  NetworkInterfaceId?: String;
1714
1818
  /**
1715
- * Private DNS name of the EC2 instance.
1819
+ * The private DNS name of the EC2 instance.
1716
1820
  */
1717
1821
  PrivateDnsName?: String;
1718
1822
  /**
1719
- * Private IP address of the EC2 instance.
1823
+ * The private IP address of the EC2 instance.
1720
1824
  */
1721
1825
  PrivateIpAddress?: String;
1722
1826
  /**
@@ -1724,15 +1828,15 @@ declare namespace GuardDuty {
1724
1828
  */
1725
1829
  PrivateIpAddresses?: PrivateIpAddresses;
1726
1830
  /**
1727
- * Public DNS name of the EC2 instance.
1831
+ * The public DNS name of the EC2 instance.
1728
1832
  */
1729
1833
  PublicDnsName?: String;
1730
1834
  /**
1731
- * Public IP address of the EC2 instance.
1835
+ * The public IP address of the EC2 instance.
1732
1836
  */
1733
1837
  PublicIp?: String;
1734
1838
  /**
1735
- * Security groups associated with the EC2 instance.
1839
+ * The security groups associated with the EC2 instance.
1736
1840
  */
1737
1841
  SecurityGroups?: SecurityGroups;
1738
1842
  /**
@@ -1749,65 +1853,65 @@ declare namespace GuardDuty {
1749
1853
  export type OrderBy = "ASC"|"DESC"|string;
1750
1854
  export interface Organization {
1751
1855
  /**
1752
- * Autonomous system number of the internet provider of the remote IP address.
1856
+ * The Autonomous System Number (ASN) of the internet provider of the remote IP address.
1753
1857
  */
1754
1858
  Asn?: String;
1755
1859
  /**
1756
- * Organization that registered this ASN.
1860
+ * The organization that registered this ASN.
1757
1861
  */
1758
1862
  AsnOrg?: String;
1759
1863
  /**
1760
- * ISP information for the internet provider.
1864
+ * The ISP information for the internet provider.
1761
1865
  */
1762
1866
  Isp?: String;
1763
1867
  /**
1764
- * Name of the internet provider.
1868
+ * The name of the internet provider.
1765
1869
  */
1766
1870
  Org?: String;
1767
1871
  }
1768
1872
  export interface PortProbeAction {
1769
1873
  /**
1770
- * Port probe blocked information.
1874
+ * Indicates whether EC2 blocked the port probe to the instance, such as with an ACL.
1771
1875
  */
1772
1876
  Blocked?: Boolean;
1773
1877
  /**
1774
- * A list of port probe details objects.
1878
+ * A list of objects related to port probe details.
1775
1879
  */
1776
1880
  PortProbeDetails?: PortProbeDetails;
1777
1881
  }
1778
1882
  export interface PortProbeDetail {
1779
1883
  /**
1780
- * Local port information of the connection.
1884
+ * The local port information of the connection.
1781
1885
  */
1782
1886
  LocalPortDetails?: LocalPortDetails;
1783
1887
  /**
1784
- * Local IP information of the connection.
1888
+ * The local IP information of the connection.
1785
1889
  */
1786
1890
  LocalIpDetails?: LocalIpDetails;
1787
1891
  /**
1788
- * Remote IP information of the connection.
1892
+ * The remote IP information of the connection.
1789
1893
  */
1790
1894
  RemoteIpDetails?: RemoteIpDetails;
1791
1895
  }
1792
1896
  export type PortProbeDetails = PortProbeDetail[];
1793
1897
  export interface PrivateIpAddressDetails {
1794
1898
  /**
1795
- * Private DNS name of the EC2 instance.
1899
+ * The private DNS name of the EC2 instance.
1796
1900
  */
1797
1901
  PrivateDnsName?: String;
1798
1902
  /**
1799
- * Private IP address of the EC2 instance.
1903
+ * The private IP address of the EC2 instance.
1800
1904
  */
1801
1905
  PrivateIpAddress?: String;
1802
1906
  }
1803
1907
  export type PrivateIpAddresses = PrivateIpAddressDetails[];
1804
1908
  export interface ProductCode {
1805
1909
  /**
1806
- * Product code information.
1910
+ * The product code information.
1807
1911
  */
1808
1912
  Code?: String;
1809
1913
  /**
1810
- * Product code type.
1914
+ * The product code type.
1811
1915
  */
1812
1916
  ProductType?: String;
1813
1917
  }
@@ -1815,33 +1919,33 @@ declare namespace GuardDuty {
1815
1919
  export type PublishingStatus = "PENDING_VERIFICATION"|"PUBLISHING"|"UNABLE_TO_PUBLISH_FIX_DESTINATION_PROPERTY"|"STOPPED"|string;
1816
1920
  export interface RemoteIpDetails {
1817
1921
  /**
1818
- * City information of the remote IP address.
1922
+ * The city information of the remote IP address.
1819
1923
  */
1820
1924
  City?: City;
1821
1925
  /**
1822
- * Country code of the remote IP address.
1926
+ * The country code of the remote IP address.
1823
1927
  */
1824
1928
  Country?: Country;
1825
1929
  /**
1826
- * Location information of the remote IP address.
1930
+ * The location information of the remote IP address.
1827
1931
  */
1828
1932
  GeoLocation?: GeoLocation;
1829
1933
  /**
1830
- * IPV4 remote address of the connection.
1934
+ * The IPv4 remote address of the connection.
1831
1935
  */
1832
1936
  IpAddressV4?: String;
1833
1937
  /**
1834
- * ISP Organization information of the remote IP address.
1938
+ * The ISP organization information of the remote IP address.
1835
1939
  */
1836
1940
  Organization?: Organization;
1837
1941
  }
1838
1942
  export interface RemotePortDetails {
1839
1943
  /**
1840
- * Port number of the remote connection.
1944
+ * The port number of the remote connection.
1841
1945
  */
1842
1946
  Port?: Integer;
1843
1947
  /**
1844
- * Port name of the remote connection.
1948
+ * The port name of the remote connection.
1845
1949
  */
1846
1950
  PortName?: String;
1847
1951
  }
@@ -1855,24 +1959,24 @@ declare namespace GuardDuty {
1855
1959
  */
1856
1960
  InstanceDetails?: InstanceDetails;
1857
1961
  /**
1858
- * The type of the AWS resource.
1962
+ * The type of AWS resource.
1859
1963
  */
1860
1964
  ResourceType?: String;
1861
1965
  }
1862
1966
  export interface SecurityGroup {
1863
1967
  /**
1864
- * EC2 instance's security group ID.
1968
+ * The security group ID of the EC2 instance.
1865
1969
  */
1866
1970
  GroupId?: String;
1867
1971
  /**
1868
- * EC2 instance's security group name.
1972
+ * The security group name of the EC2 instance.
1869
1973
  */
1870
1974
  GroupName?: String;
1871
1975
  }
1872
1976
  export type SecurityGroups = SecurityGroup[];
1873
1977
  export interface Service {
1874
1978
  /**
1875
- * Information about the activity described in a finding.
1979
+ * Information about the activity that is described in a finding.
1876
1980
  */
1877
1981
  Action?: Action;
1878
1982
  /**
@@ -1884,23 +1988,23 @@ declare namespace GuardDuty {
1884
1988
  */
1885
1989
  Archived?: Boolean;
1886
1990
  /**
1887
- * Total count of the occurrences of this finding type.
1991
+ * The total count of the occurrences of this finding type.
1888
1992
  */
1889
1993
  Count?: Integer;
1890
1994
  /**
1891
- * Detector ID for the GuardDuty service.
1995
+ * The detector ID for the GuardDuty service.
1892
1996
  */
1893
1997
  DetectorId?: DetectorId;
1894
1998
  /**
1895
- * First seen timestamp of the activity that prompted GuardDuty to generate this finding.
1999
+ * The first-seen timestamp of the activity that prompted GuardDuty to generate this finding.
1896
2000
  */
1897
2001
  EventFirstSeen?: String;
1898
2002
  /**
1899
- * Last seen timestamp of the activity that prompted GuardDuty to generate this finding.
2003
+ * The last-seen timestamp of the activity that prompted GuardDuty to generate this finding.
1900
2004
  */
1901
2005
  EventLastSeen?: String;
1902
2006
  /**
1903
- * Resource role information for this finding.
2007
+ * The resource role information for this finding.
1904
2008
  */
1905
2009
  ResourceRole?: String;
1906
2010
  /**
@@ -1908,17 +2012,17 @@ declare namespace GuardDuty {
1908
2012
  */
1909
2013
  ServiceName?: String;
1910
2014
  /**
1911
- * Feedback left about the finding.
2015
+ * Feedback that was submitted about the finding.
1912
2016
  */
1913
2017
  UserFeedback?: String;
1914
2018
  }
1915
2019
  export interface SortCriteria {
1916
2020
  /**
1917
- * Represents the finding attribute (for example, accountId) by which to sort findings.
2021
+ * Represents the finding attribute (for example, accountId) to sort findings by.
1918
2022
  */
1919
2023
  AttributeName?: String;
1920
2024
  /**
1921
- * Order by which the sorted findings are to be displayed.
2025
+ * The order by which the sorted findings are to be displayed.
1922
2026
  */
1923
2027
  OrderBy?: OrderBy;
1924
2028
  }
@@ -1934,34 +2038,34 @@ declare namespace GuardDuty {
1934
2038
  }
1935
2039
  export interface StartMonitoringMembersResponse {
1936
2040
  /**
1937
- * A list of objects containing the unprocessed account and a result string explaining why it was unprocessed.
2041
+ * A list of objects that contain the unprocessed account and a result string that explains why it was unprocessed.
1938
2042
  */
1939
2043
  UnprocessedAccounts: UnprocessedAccounts;
1940
2044
  }
1941
2045
  export interface StopMonitoringMembersRequest {
1942
2046
  /**
1943
- * The unique ID of the detector of the GuardDuty account that you want to stop from monitor members' findings.
2047
+ * The unique ID of the detector associated with the GuardDuty master account that is monitoring member accounts.
1944
2048
  */
1945
2049
  DetectorId: DetectorId;
1946
2050
  /**
1947
- * A list of account IDs of the GuardDuty member accounts whose findings you want the master account to stop monitoring.
2051
+ * A list of account IDs for the member accounts to stop monitoring.
1948
2052
  */
1949
2053
  AccountIds: AccountIds;
1950
2054
  }
1951
2055
  export interface StopMonitoringMembersResponse {
1952
2056
  /**
1953
- * A list of objects containing the unprocessed account and a result string explaining why it was unprocessed.
2057
+ * A list of objects that contain an accountId for each account that could not be processed, and a result string that indicates why the account was not processed.
1954
2058
  */
1955
2059
  UnprocessedAccounts: UnprocessedAccounts;
1956
2060
  }
1957
2061
  export type String = string;
1958
2062
  export interface Tag {
1959
2063
  /**
1960
- * EC2 instance tag key.
2064
+ * The EC2 instance tag key.
1961
2065
  */
1962
2066
  Key?: String;
1963
2067
  /**
1964
- * EC2 instance tag value.
2068
+ * The EC2 instance tag value.
1965
2069
  */
1966
2070
  Value?: String;
1967
2071
  }
@@ -2003,7 +2107,7 @@ declare namespace GuardDuty {
2003
2107
  */
2004
2108
  DetectorId: DetectorId;
2005
2109
  /**
2006
- * IDs of the findings to unarchive.
2110
+ * The IDs of the findings to unarchive.
2007
2111
  */
2008
2112
  FindingIds: FindingIds;
2009
2113
  }
@@ -2011,7 +2115,7 @@ declare namespace GuardDuty {
2011
2115
  }
2012
2116
  export interface UnprocessedAccount {
2013
2117
  /**
2014
- * AWS Account ID.
2118
+ * The AWS account ID.
2015
2119
  */
2016
2120
  AccountId: AccountId;
2017
2121
  /**
@@ -2042,7 +2146,7 @@ declare namespace GuardDuty {
2042
2146
  */
2043
2147
  Enable?: Boolean;
2044
2148
  /**
2045
- * A enum value that specifies how frequently findings are exported, such as to CloudWatch Events.
2149
+ * An enum value that specifies how frequently findings are exported, such as to CloudWatch Events.
2046
2150
  */
2047
2151
  FindingPublishingFrequency?: FindingPublishingFrequency;
2048
2152
  }
@@ -2086,7 +2190,7 @@ declare namespace GuardDuty {
2086
2190
  */
2087
2191
  DetectorId: DetectorId;
2088
2192
  /**
2089
- * IDs of the findings that you want to mark as useful or not useful.
2193
+ * The IDs of the findings that you want to mark as useful or not useful.
2090
2194
  */
2091
2195
  FindingIds: FindingIds;
2092
2196
  /**
@@ -2114,24 +2218,36 @@ declare namespace GuardDuty {
2114
2218
  */
2115
2219
  Name?: Name;
2116
2220
  /**
2117
- * The updated URI of the file that contains the IPSet. For example (https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key).
2221
+ * The updated URI of the file that contains the IPSet. For example: https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key.
2118
2222
  */
2119
2223
  Location?: Location;
2120
2224
  /**
2121
- * The updated boolean value that specifies whether the IPSet is active or not.
2225
+ * The updated Boolean value that specifies whether the IPSet is active or not.
2122
2226
  */
2123
2227
  Activate?: Boolean;
2124
2228
  }
2125
2229
  export interface UpdateIPSetResponse {
2126
2230
  }
2127
- export interface UpdatePublishingDestinationRequest {
2231
+ export interface UpdateOrganizationConfigurationRequest {
2128
2232
  /**
2129
- * The ID of the
2233
+ * The ID of the detector to update the delegated administrator for.
2130
2234
  */
2131
2235
  DetectorId: DetectorId;
2236
+ /**
2237
+ * Indicates whether to automatically enable member accounts in the organization.
2238
+ */
2239
+ AutoEnable: Boolean;
2240
+ }
2241
+ export interface UpdateOrganizationConfigurationResponse {
2242
+ }
2243
+ export interface UpdatePublishingDestinationRequest {
2132
2244
  /**
2133
2245
  * The ID of the detector associated with the publishing destinations to update.
2134
2246
  */
2247
+ DetectorId: DetectorId;
2248
+ /**
2249
+ * The ID of the publishing destination to update.
2250
+ */
2135
2251
  DestinationId: String;
2136
2252
  /**
2137
2253
  * A DestinationProperties object that includes the DestinationArn and KmsKeyArn of the publishing destination.
@@ -2154,11 +2270,11 @@ declare namespace GuardDuty {
2154
2270
  */
2155
2271
  Name?: Name;
2156
2272
  /**
2157
- * The updated URI of the file that contains the ThreateIntelSet. For example (https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key)
2273
+ * The updated URI of the file that contains the ThreateIntelSet. For example: https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key.
2158
2274
  */
2159
2275
  Location?: Location;
2160
2276
  /**
2161
- * The updated boolean value that specifies whether the ThreateIntelSet is active or not.
2277
+ * The updated Boolean value that specifies whether the ThreateIntelSet is active or not.
2162
2278
  */
2163
2279
  Activate?: Boolean;
2164
2280
  }