@aws-sdk/client-detective 3.295.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/Detective.d.ts +25 -0
- package/dist-types/DetectiveClient.d.ts +24 -4
- package/dist-types/commands/AcceptInvitationCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetGraphMemberDatasourcesCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetMembershipDatasourcesCommand.d.ts +16 -0
- package/dist-types/commands/CreateGraphCommand.d.ts +16 -0
- package/dist-types/commands/CreateMembersCommand.d.ts +16 -0
- package/dist-types/commands/DeleteGraphCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMembersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeOrganizationConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DisableOrganizationAdminAccountCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateMembershipCommand.d.ts +16 -0
- package/dist-types/commands/EnableOrganizationAdminAccountCommand.d.ts +16 -0
- package/dist-types/commands/GetMembersCommand.d.ts +16 -0
- package/dist-types/commands/ListDatasourcePackagesCommand.d.ts +16 -0
- package/dist-types/commands/ListGraphsCommand.d.ts +16 -0
- package/dist-types/commands/ListInvitationsCommand.d.ts +16 -0
- package/dist-types/commands/ListMembersCommand.d.ts +16 -0
- package/dist-types/commands/ListOrganizationAdminAccountsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/RejectInvitationCommand.d.ts +16 -0
- package/dist-types/commands/StartMonitoringMemberCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDatasourcePackagesCommand.d.ts +16 -0
- package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +16 -0
- package/dist-types/models/DetectiveServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +149 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListDatasourcePackagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListGraphsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInvitationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMembersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOrganizationAdminAccountsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -25,6 +25,7 @@ import { UpdateDatasourcePackagesCommandInput, UpdateDatasourcePackagesCommandOu
|
|
|
25
25
|
import { UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput } from "./commands/UpdateOrganizationConfigurationCommand";
|
|
26
26
|
import { DetectiveClient } from "./DetectiveClient";
|
|
27
27
|
/**
|
|
28
|
+
* @public
|
|
28
29
|
* <p>Detective uses machine learning and purpose-built visualizations to help you to
|
|
29
30
|
* analyze and investigate security issues across your Amazon Web Services (Amazon Web Services) workloads. Detective automatically extracts time-based events such
|
|
30
31
|
* as login attempts, API calls, and network traffic from CloudTrail and Amazon Virtual Private Cloud (Amazon VPC) flow logs. It also extracts findings detected by
|
|
@@ -104,6 +105,7 @@ import { DetectiveClient } from "./DetectiveClient";
|
|
|
104
105
|
*/
|
|
105
106
|
export declare class Detective extends DetectiveClient {
|
|
106
107
|
/**
|
|
108
|
+
* @public
|
|
107
109
|
* <p>Accepts an invitation for the member account to contribute data to a behavior graph.
|
|
108
110
|
* This operation can only be called by an invited member account. </p>
|
|
109
111
|
* <p>The request provides the ARN of behavior graph.</p>
|
|
@@ -113,18 +115,21 @@ export declare class Detective extends DetectiveClient {
|
|
|
113
115
|
acceptInvitation(args: AcceptInvitationCommandInput, cb: (err: any, data?: AcceptInvitationCommandOutput) => void): void;
|
|
114
116
|
acceptInvitation(args: AcceptInvitationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptInvitationCommandOutput) => void): void;
|
|
115
117
|
/**
|
|
118
|
+
* @public
|
|
116
119
|
* <p>Gets data source package information for the behavior graph.</p>
|
|
117
120
|
*/
|
|
118
121
|
batchGetGraphMemberDatasources(args: BatchGetGraphMemberDatasourcesCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetGraphMemberDatasourcesCommandOutput>;
|
|
119
122
|
batchGetGraphMemberDatasources(args: BatchGetGraphMemberDatasourcesCommandInput, cb: (err: any, data?: BatchGetGraphMemberDatasourcesCommandOutput) => void): void;
|
|
120
123
|
batchGetGraphMemberDatasources(args: BatchGetGraphMemberDatasourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetGraphMemberDatasourcesCommandOutput) => void): void;
|
|
121
124
|
/**
|
|
125
|
+
* @public
|
|
122
126
|
* <p>Gets information on the data source package history for an account.</p>
|
|
123
127
|
*/
|
|
124
128
|
batchGetMembershipDatasources(args: BatchGetMembershipDatasourcesCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetMembershipDatasourcesCommandOutput>;
|
|
125
129
|
batchGetMembershipDatasources(args: BatchGetMembershipDatasourcesCommandInput, cb: (err: any, data?: BatchGetMembershipDatasourcesCommandOutput) => void): void;
|
|
126
130
|
batchGetMembershipDatasources(args: BatchGetMembershipDatasourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetMembershipDatasourcesCommandOutput) => void): void;
|
|
127
131
|
/**
|
|
132
|
+
* @public
|
|
128
133
|
* <p>Creates a new behavior graph for the calling account, and sets that account as the
|
|
129
134
|
* administrator account. This operation is called by the account that is enabling Detective.</p>
|
|
130
135
|
* <p>Before you try to enable Detective, make sure that your account has been
|
|
@@ -146,6 +151,7 @@ export declare class Detective extends DetectiveClient {
|
|
|
146
151
|
createGraph(args: CreateGraphCommandInput, cb: (err: any, data?: CreateGraphCommandOutput) => void): void;
|
|
147
152
|
createGraph(args: CreateGraphCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGraphCommandOutput) => void): void;
|
|
148
153
|
/**
|
|
154
|
+
* @public
|
|
149
155
|
* <p>
|
|
150
156
|
* <code>CreateMembers</code> is used to send invitations to accounts. For the organization
|
|
151
157
|
* behavior graph, the Detective administrator account uses
|
|
@@ -183,6 +189,7 @@ export declare class Detective extends DetectiveClient {
|
|
|
183
189
|
createMembers(args: CreateMembersCommandInput, cb: (err: any, data?: CreateMembersCommandOutput) => void): void;
|
|
184
190
|
createMembers(args: CreateMembersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMembersCommandOutput) => void): void;
|
|
185
191
|
/**
|
|
192
|
+
* @public
|
|
186
193
|
* <p>Disables the specified behavior graph and queues it to be deleted. This operation
|
|
187
194
|
* removes the behavior graph from each member account's list of behavior graphs.</p>
|
|
188
195
|
* <p>
|
|
@@ -193,6 +200,7 @@ export declare class Detective extends DetectiveClient {
|
|
|
193
200
|
deleteGraph(args: DeleteGraphCommandInput, cb: (err: any, data?: DeleteGraphCommandOutput) => void): void;
|
|
194
201
|
deleteGraph(args: DeleteGraphCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGraphCommandOutput) => void): void;
|
|
195
202
|
/**
|
|
203
|
+
* @public
|
|
196
204
|
* <p>Removes the specified member accounts from the behavior graph. The removed accounts no
|
|
197
205
|
* longer contribute data to the behavior graph. This operation can only be called by the
|
|
198
206
|
* administrator account for the behavior graph.</p>
|
|
@@ -211,6 +219,7 @@ export declare class Detective extends DetectiveClient {
|
|
|
211
219
|
deleteMembers(args: DeleteMembersCommandInput, cb: (err: any, data?: DeleteMembersCommandOutput) => void): void;
|
|
212
220
|
deleteMembers(args: DeleteMembersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMembersCommandOutput) => void): void;
|
|
213
221
|
/**
|
|
222
|
+
* @public
|
|
214
223
|
* <p>Returns information about the configuration for the organization behavior graph.
|
|
215
224
|
* Currently indicates whether to automatically enable new organization accounts as member
|
|
216
225
|
* accounts.</p>
|
|
@@ -220,6 +229,7 @@ export declare class Detective extends DetectiveClient {
|
|
|
220
229
|
describeOrganizationConfiguration(args: DescribeOrganizationConfigurationCommandInput, cb: (err: any, data?: DescribeOrganizationConfigurationCommandOutput) => void): void;
|
|
221
230
|
describeOrganizationConfiguration(args: DescribeOrganizationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOrganizationConfigurationCommandOutput) => void): void;
|
|
222
231
|
/**
|
|
232
|
+
* @public
|
|
223
233
|
* <p>Removes the Detective administrator account in the current Region. Deletes the
|
|
224
234
|
* organization behavior graph.</p>
|
|
225
235
|
* <p>Can only be called by the organization management account.</p>
|
|
@@ -231,6 +241,7 @@ export declare class Detective extends DetectiveClient {
|
|
|
231
241
|
disableOrganizationAdminAccount(args: DisableOrganizationAdminAccountCommandInput, cb: (err: any, data?: DisableOrganizationAdminAccountCommandOutput) => void): void;
|
|
232
242
|
disableOrganizationAdminAccount(args: DisableOrganizationAdminAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableOrganizationAdminAccountCommandOutput) => void): void;
|
|
233
243
|
/**
|
|
244
|
+
* @public
|
|
234
245
|
* <p>Removes the member account from the specified behavior graph. This operation can only be
|
|
235
246
|
* called by an invited member account that has the <code>ENABLED</code> status.</p>
|
|
236
247
|
* <p>
|
|
@@ -243,6 +254,7 @@ export declare class Detective extends DetectiveClient {
|
|
|
243
254
|
disassociateMembership(args: DisassociateMembershipCommandInput, cb: (err: any, data?: DisassociateMembershipCommandOutput) => void): void;
|
|
244
255
|
disassociateMembership(args: DisassociateMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateMembershipCommandOutput) => void): void;
|
|
245
256
|
/**
|
|
257
|
+
* @public
|
|
246
258
|
* <p>Designates the Detective administrator account for the organization in the
|
|
247
259
|
* current Region.</p>
|
|
248
260
|
* <p>If the account does not have Detective enabled, then enables Detective
|
|
@@ -260,6 +272,7 @@ export declare class Detective extends DetectiveClient {
|
|
|
260
272
|
enableOrganizationAdminAccount(args: EnableOrganizationAdminAccountCommandInput, cb: (err: any, data?: EnableOrganizationAdminAccountCommandOutput) => void): void;
|
|
261
273
|
enableOrganizationAdminAccount(args: EnableOrganizationAdminAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableOrganizationAdminAccountCommandOutput) => void): void;
|
|
262
274
|
/**
|
|
275
|
+
* @public
|
|
263
276
|
* <p>Returns the membership details for specified member accounts for a behavior
|
|
264
277
|
* graph.</p>
|
|
265
278
|
*/
|
|
@@ -267,12 +280,14 @@ export declare class Detective extends DetectiveClient {
|
|
|
267
280
|
getMembers(args: GetMembersCommandInput, cb: (err: any, data?: GetMembersCommandOutput) => void): void;
|
|
268
281
|
getMembers(args: GetMembersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMembersCommandOutput) => void): void;
|
|
269
282
|
/**
|
|
283
|
+
* @public
|
|
270
284
|
* <p>Lists data source packages in the behavior graph.</p>
|
|
271
285
|
*/
|
|
272
286
|
listDatasourcePackages(args: ListDatasourcePackagesCommandInput, options?: __HttpHandlerOptions): Promise<ListDatasourcePackagesCommandOutput>;
|
|
273
287
|
listDatasourcePackages(args: ListDatasourcePackagesCommandInput, cb: (err: any, data?: ListDatasourcePackagesCommandOutput) => void): void;
|
|
274
288
|
listDatasourcePackages(args: ListDatasourcePackagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatasourcePackagesCommandOutput) => void): void;
|
|
275
289
|
/**
|
|
290
|
+
* @public
|
|
276
291
|
* <p>Returns the list of behavior graphs that the calling account is an administrator account
|
|
277
292
|
* of. This operation can only be called by an administrator account.</p>
|
|
278
293
|
* <p>Because an account can currently only be the administrator of one behavior graph within
|
|
@@ -282,6 +297,7 @@ export declare class Detective extends DetectiveClient {
|
|
|
282
297
|
listGraphs(args: ListGraphsCommandInput, cb: (err: any, data?: ListGraphsCommandOutput) => void): void;
|
|
283
298
|
listGraphs(args: ListGraphsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGraphsCommandOutput) => void): void;
|
|
284
299
|
/**
|
|
300
|
+
* @public
|
|
285
301
|
* <p>Retrieves the list of open and accepted behavior graph invitations for the member
|
|
286
302
|
* account. This operation can only be called by an invited member account.</p>
|
|
287
303
|
* <p>Open invitations are invitations that the member account has not responded to.</p>
|
|
@@ -293,6 +309,7 @@ export declare class Detective extends DetectiveClient {
|
|
|
293
309
|
listInvitations(args: ListInvitationsCommandInput, cb: (err: any, data?: ListInvitationsCommandOutput) => void): void;
|
|
294
310
|
listInvitations(args: ListInvitationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInvitationsCommandOutput) => void): void;
|
|
295
311
|
/**
|
|
312
|
+
* @public
|
|
296
313
|
* <p>Retrieves the list of member accounts for a behavior graph.</p>
|
|
297
314
|
* <p>For invited accounts, the results do not include member accounts that were removed from
|
|
298
315
|
* the behavior graph.</p>
|
|
@@ -304,6 +321,7 @@ export declare class Detective extends DetectiveClient {
|
|
|
304
321
|
listMembers(args: ListMembersCommandInput, cb: (err: any, data?: ListMembersCommandOutput) => void): void;
|
|
305
322
|
listMembers(args: ListMembersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMembersCommandOutput) => void): void;
|
|
306
323
|
/**
|
|
324
|
+
* @public
|
|
307
325
|
* <p>Returns information about the Detective administrator account for an
|
|
308
326
|
* organization. Can only be called by the organization management account.</p>
|
|
309
327
|
*/
|
|
@@ -311,12 +329,14 @@ export declare class Detective extends DetectiveClient {
|
|
|
311
329
|
listOrganizationAdminAccounts(args: ListOrganizationAdminAccountsCommandInput, cb: (err: any, data?: ListOrganizationAdminAccountsCommandOutput) => void): void;
|
|
312
330
|
listOrganizationAdminAccounts(args: ListOrganizationAdminAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOrganizationAdminAccountsCommandOutput) => void): void;
|
|
313
331
|
/**
|
|
332
|
+
* @public
|
|
314
333
|
* <p>Returns the tag values that are assigned to a behavior graph.</p>
|
|
315
334
|
*/
|
|
316
335
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
317
336
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
318
337
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
319
338
|
/**
|
|
339
|
+
* @public
|
|
320
340
|
* <p>Rejects an invitation to contribute the account data to a behavior graph. This operation
|
|
321
341
|
* must be called by an invited member account that has the <code>INVITED</code>
|
|
322
342
|
* status.</p>
|
|
@@ -329,6 +349,7 @@ export declare class Detective extends DetectiveClient {
|
|
|
329
349
|
rejectInvitation(args: RejectInvitationCommandInput, cb: (err: any, data?: RejectInvitationCommandOutput) => void): void;
|
|
330
350
|
rejectInvitation(args: RejectInvitationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectInvitationCommandOutput) => void): void;
|
|
331
351
|
/**
|
|
352
|
+
* @public
|
|
332
353
|
* <p>Sends a request to enable data ingest for a member account that has a status of
|
|
333
354
|
* <code>ACCEPTED_BUT_DISABLED</code>.</p>
|
|
334
355
|
* <p>For valid member accounts, the status is updated as follows.</p>
|
|
@@ -347,24 +368,28 @@ export declare class Detective extends DetectiveClient {
|
|
|
347
368
|
startMonitoringMember(args: StartMonitoringMemberCommandInput, cb: (err: any, data?: StartMonitoringMemberCommandOutput) => void): void;
|
|
348
369
|
startMonitoringMember(args: StartMonitoringMemberCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMonitoringMemberCommandOutput) => void): void;
|
|
349
370
|
/**
|
|
371
|
+
* @public
|
|
350
372
|
* <p>Applies tag values to a behavior graph.</p>
|
|
351
373
|
*/
|
|
352
374
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
353
375
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
354
376
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
355
377
|
/**
|
|
378
|
+
* @public
|
|
356
379
|
* <p>Removes tags from a behavior graph.</p>
|
|
357
380
|
*/
|
|
358
381
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
359
382
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
360
383
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
361
384
|
/**
|
|
385
|
+
* @public
|
|
362
386
|
* <p>Starts a data source packages for the behavior graph.</p>
|
|
363
387
|
*/
|
|
364
388
|
updateDatasourcePackages(args: UpdateDatasourcePackagesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDatasourcePackagesCommandOutput>;
|
|
365
389
|
updateDatasourcePackages(args: UpdateDatasourcePackagesCommandInput, cb: (err: any, data?: UpdateDatasourcePackagesCommandOutput) => void): void;
|
|
366
390
|
updateDatasourcePackages(args: UpdateDatasourcePackagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDatasourcePackagesCommandOutput) => void): void;
|
|
367
391
|
/**
|
|
392
|
+
* @public
|
|
368
393
|
* <p>Updates the configuration for the Organizations integration in the current Region.
|
|
369
394
|
* Can only be called by the Detective administrator account for the
|
|
370
395
|
* organization.</p>
|
|
@@ -32,15 +32,24 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
32
32
|
import { UpdateDatasourcePackagesCommandInput, UpdateDatasourcePackagesCommandOutput } from "./commands/UpdateDatasourcePackagesCommand";
|
|
33
33
|
import { UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput } from "./commands/UpdateOrganizationConfigurationCommand";
|
|
34
34
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
35
38
|
export type ServiceInputTypes = AcceptInvitationCommandInput | BatchGetGraphMemberDatasourcesCommandInput | BatchGetMembershipDatasourcesCommandInput | CreateGraphCommandInput | CreateMembersCommandInput | DeleteGraphCommandInput | DeleteMembersCommandInput | DescribeOrganizationConfigurationCommandInput | DisableOrganizationAdminAccountCommandInput | DisassociateMembershipCommandInput | EnableOrganizationAdminAccountCommandInput | GetMembersCommandInput | ListDatasourcePackagesCommandInput | ListGraphsCommandInput | ListInvitationsCommandInput | ListMembersCommandInput | ListOrganizationAdminAccountsCommandInput | ListTagsForResourceCommandInput | RejectInvitationCommandInput | StartMonitoringMemberCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDatasourcePackagesCommandInput | UpdateOrganizationConfigurationCommandInput;
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
36
42
|
export type ServiceOutputTypes = AcceptInvitationCommandOutput | BatchGetGraphMemberDatasourcesCommandOutput | BatchGetMembershipDatasourcesCommandOutput | CreateGraphCommandOutput | CreateMembersCommandOutput | DeleteGraphCommandOutput | DeleteMembersCommandOutput | DescribeOrganizationConfigurationCommandOutput | DisableOrganizationAdminAccountCommandOutput | DisassociateMembershipCommandOutput | EnableOrganizationAdminAccountCommandOutput | GetMembersCommandOutput | ListDatasourcePackagesCommandOutput | ListGraphsCommandOutput | ListInvitationsCommandOutput | ListMembersCommandOutput | ListOrganizationAdminAccountsCommandOutput | ListTagsForResourceCommandOutput | RejectInvitationCommandOutput | StartMonitoringMemberCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDatasourcePackagesCommandOutput | UpdateOrganizationConfigurationCommandOutput;
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
37
46
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
38
47
|
/**
|
|
39
48
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
40
49
|
*/
|
|
41
50
|
requestHandler?: __HttpHandler;
|
|
42
51
|
/**
|
|
43
|
-
* A constructor for a class implementing the {@link
|
|
52
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
44
53
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
45
54
|
* @internal
|
|
46
55
|
*/
|
|
@@ -130,23 +139,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
130
139
|
*/
|
|
131
140
|
logger?: __Logger;
|
|
132
141
|
/**
|
|
133
|
-
* The {@link
|
|
142
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
134
143
|
*/
|
|
135
144
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
136
145
|
}
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
137
149
|
type DetectiveClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
138
150
|
/**
|
|
139
|
-
*
|
|
151
|
+
* @public
|
|
152
|
+
*
|
|
153
|
+
* The configuration interface of DetectiveClient class constructor that set the region, credentials and other options.
|
|
140
154
|
*/
|
|
141
155
|
export interface DetectiveClientConfig extends DetectiveClientConfigType {
|
|
142
156
|
}
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
143
160
|
type DetectiveClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
144
161
|
/**
|
|
145
|
-
*
|
|
162
|
+
* @public
|
|
163
|
+
*
|
|
164
|
+
* The resolved configuration interface of DetectiveClient class. This is resolved and normalized from the {@link DetectiveClientConfig | constructor configuration interface}.
|
|
146
165
|
*/
|
|
147
166
|
export interface DetectiveClientResolvedConfig extends DetectiveClientResolvedConfigType {
|
|
148
167
|
}
|
|
149
168
|
/**
|
|
169
|
+
* @public
|
|
150
170
|
* <p>Detective uses machine learning and purpose-built visualizations to help you to
|
|
151
171
|
* analyze and investigate security issues across your Amazon Web Services (Amazon Web Services) workloads. Detective automatically extracts time-based events such
|
|
152
172
|
* as login attempts, API calls, and network traffic from CloudTrail and Amazon Virtual Private Cloud (Amazon VPC) flow logs. It also extracts findings detected by
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { AcceptInvitationRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AcceptInvitationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AcceptInvitationCommandInput extends AcceptInvitationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AcceptInvitationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AcceptInvitationCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Accepts an invitation for the member account to contribute data to a behavior graph.
|
|
18
23
|
* This operation can only be called by an invited member account. </p>
|
|
19
24
|
* <p>The request provides the ARN of behavior graph.</p>
|
|
@@ -28,6 +33,8 @@ export interface AcceptInvitationCommandOutput extends __MetadataBearer {
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param AcceptInvitationCommandInput - {@link AcceptInvitationCommandInput}
|
|
37
|
+
* @returns {@link AcceptInvitationCommandOutput}
|
|
31
38
|
* @see {@link AcceptInvitationCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link AcceptInvitationCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface AcceptInvitationCommandOutput extends __MetadataBearer {
|
|
|
53
60
|
export declare class AcceptInvitationCommand extends $Command<AcceptInvitationCommandInput, AcceptInvitationCommandOutput, DetectiveClientResolvedConfig> {
|
|
54
61
|
readonly input: AcceptInvitationCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: AcceptInvitationCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AcceptInvitationCommandInput, AcceptInvitationCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { BatchGetGraphMemberDatasourcesRequest, BatchGetGraphMemberDatasourcesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link BatchGetGraphMemberDatasourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface BatchGetGraphMemberDatasourcesCommandInput extends BatchGetGraphMemberDatasourcesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link BatchGetGraphMemberDatasourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface BatchGetGraphMemberDatasourcesCommandOutput extends BatchGetGraphMemberDatasourcesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets data source package information for the behavior graph.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface BatchGetGraphMemberDatasourcesCommandOutput extends BatchGetGra
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param BatchGetGraphMemberDatasourcesCommandInput - {@link BatchGetGraphMemberDatasourcesCommandInput}
|
|
34
|
+
* @returns {@link BatchGetGraphMemberDatasourcesCommandOutput}
|
|
28
35
|
* @see {@link BatchGetGraphMemberDatasourcesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link BatchGetGraphMemberDatasourcesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface BatchGetGraphMemberDatasourcesCommandOutput extends BatchGetGra
|
|
|
47
54
|
export declare class BatchGetGraphMemberDatasourcesCommand extends $Command<BatchGetGraphMemberDatasourcesCommandInput, BatchGetGraphMemberDatasourcesCommandOutput, DetectiveClientResolvedConfig> {
|
|
48
55
|
readonly input: BatchGetGraphMemberDatasourcesCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: BatchGetGraphMemberDatasourcesCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetGraphMemberDatasourcesCommandInput, BatchGetGraphMemberDatasourcesCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { BatchGetMembershipDatasourcesRequest, BatchGetMembershipDatasourcesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link BatchGetMembershipDatasourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface BatchGetMembershipDatasourcesCommandInput extends BatchGetMembershipDatasourcesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link BatchGetMembershipDatasourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface BatchGetMembershipDatasourcesCommandOutput extends BatchGetMembershipDatasourcesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets information on the data source package history for an account.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface BatchGetMembershipDatasourcesCommandOutput extends BatchGetMemb
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param BatchGetMembershipDatasourcesCommandInput - {@link BatchGetMembershipDatasourcesCommandInput}
|
|
34
|
+
* @returns {@link BatchGetMembershipDatasourcesCommandOutput}
|
|
28
35
|
* @see {@link BatchGetMembershipDatasourcesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link BatchGetMembershipDatasourcesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface BatchGetMembershipDatasourcesCommandOutput extends BatchGetMemb
|
|
|
47
54
|
export declare class BatchGetMembershipDatasourcesCommand extends $Command<BatchGetMembershipDatasourcesCommandInput, BatchGetMembershipDatasourcesCommandOutput, DetectiveClientResolvedConfig> {
|
|
48
55
|
readonly input: BatchGetMembershipDatasourcesCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: BatchGetMembershipDatasourcesCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetMembershipDatasourcesCommandInput, BatchGetMembershipDatasourcesCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { CreateGraphRequest, CreateGraphResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateGraphCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateGraphCommandInput extends CreateGraphRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateGraphCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateGraphCommandOutput extends CreateGraphResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new behavior graph for the calling account, and sets that account as the
|
|
18
23
|
* administrator account. This operation is called by the account that is enabling Detective.</p>
|
|
19
24
|
* <p>Before you try to enable Detective, make sure that your account has been
|
|
@@ -40,6 +45,8 @@ export interface CreateGraphCommandOutput extends CreateGraphResponse, __Metadat
|
|
|
40
45
|
* const response = await client.send(command);
|
|
41
46
|
* ```
|
|
42
47
|
*
|
|
48
|
+
* @param CreateGraphCommandInput - {@link CreateGraphCommandInput}
|
|
49
|
+
* @returns {@link CreateGraphCommandOutput}
|
|
43
50
|
* @see {@link CreateGraphCommandInput} for command's `input` shape.
|
|
44
51
|
* @see {@link CreateGraphCommandOutput} for command's `response` shape.
|
|
45
52
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -77,11 +84,20 @@ export interface CreateGraphCommandOutput extends CreateGraphResponse, __Metadat
|
|
|
77
84
|
export declare class CreateGraphCommand extends $Command<CreateGraphCommandInput, CreateGraphCommandOutput, DetectiveClientResolvedConfig> {
|
|
78
85
|
readonly input: CreateGraphCommandInput;
|
|
79
86
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
80
90
|
constructor(input: CreateGraphCommandInput);
|
|
81
91
|
/**
|
|
82
92
|
* @internal
|
|
83
93
|
*/
|
|
84
94
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateGraphCommandInput, CreateGraphCommandOutput>;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
85
98
|
private serialize;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
86
102
|
private deserialize;
|
|
87
103
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { CreateMembersRequest, CreateMembersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateMembersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateMembersCommandInput extends CreateMembersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateMembersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateMembersCommandOutput extends CreateMembersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* <code>CreateMembers</code> is used to send invitations to accounts. For the organization
|
|
19
24
|
* behavior graph, the Detective administrator account uses
|
|
@@ -56,6 +61,8 @@ export interface CreateMembersCommandOutput extends CreateMembersResponse, __Met
|
|
|
56
61
|
* const response = await client.send(command);
|
|
57
62
|
* ```
|
|
58
63
|
*
|
|
64
|
+
* @param CreateMembersCommandInput - {@link CreateMembersCommandInput}
|
|
65
|
+
* @returns {@link CreateMembersCommandOutput}
|
|
59
66
|
* @see {@link CreateMembersCommandInput} for command's `input` shape.
|
|
60
67
|
* @see {@link CreateMembersCommandOutput} for command's `response` shape.
|
|
61
68
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -96,11 +103,20 @@ export interface CreateMembersCommandOutput extends CreateMembersResponse, __Met
|
|
|
96
103
|
export declare class CreateMembersCommand extends $Command<CreateMembersCommandInput, CreateMembersCommandOutput, DetectiveClientResolvedConfig> {
|
|
97
104
|
readonly input: CreateMembersCommandInput;
|
|
98
105
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
99
109
|
constructor(input: CreateMembersCommandInput);
|
|
100
110
|
/**
|
|
101
111
|
* @internal
|
|
102
112
|
*/
|
|
103
113
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMembersCommandInput, CreateMembersCommandOutput>;
|
|
114
|
+
/**
|
|
115
|
+
* @internal
|
|
116
|
+
*/
|
|
104
117
|
private serialize;
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
105
121
|
private deserialize;
|
|
106
122
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { DeleteGraphRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteGraphCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteGraphCommandInput extends DeleteGraphRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteGraphCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteGraphCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disables the specified behavior graph and queues it to be deleted. This operation
|
|
18
23
|
* removes the behavior graph from each member account's list of behavior graphs.</p>
|
|
19
24
|
* <p>
|
|
@@ -29,6 +34,8 @@ export interface DeleteGraphCommandOutput extends __MetadataBearer {
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param DeleteGraphCommandInput - {@link DeleteGraphCommandInput}
|
|
38
|
+
* @returns {@link DeleteGraphCommandOutput}
|
|
32
39
|
* @see {@link DeleteGraphCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link DeleteGraphCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DeleteGraphCommandOutput extends __MetadataBearer {
|
|
|
51
58
|
export declare class DeleteGraphCommand extends $Command<DeleteGraphCommandInput, DeleteGraphCommandOutput, DetectiveClientResolvedConfig> {
|
|
52
59
|
readonly input: DeleteGraphCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DeleteGraphCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteGraphCommandInput, DeleteGraphCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient";
|
|
5
5
|
import { DeleteMembersRequest, DeleteMembersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteMembersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteMembersCommandInput extends DeleteMembersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteMembersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteMembersCommandOutput extends DeleteMembersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the specified member accounts from the behavior graph. The removed accounts no
|
|
18
23
|
* longer contribute data to the behavior graph. This operation can only be called by the
|
|
19
24
|
* administrator account for the behavior graph.</p>
|
|
@@ -37,6 +42,8 @@ export interface DeleteMembersCommandOutput extends DeleteMembersResponse, __Met
|
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
45
|
+
* @param DeleteMembersCommandInput - {@link DeleteMembersCommandInput}
|
|
46
|
+
* @returns {@link DeleteMembersCommandOutput}
|
|
40
47
|
* @see {@link DeleteMembersCommandInput} for command's `input` shape.
|
|
41
48
|
* @see {@link DeleteMembersCommandOutput} for command's `response` shape.
|
|
42
49
|
* @see {@link DetectiveClientResolvedConfig | config} for DetectiveClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface DeleteMembersCommandOutput extends DeleteMembersResponse, __Met
|
|
|
62
69
|
export declare class DeleteMembersCommand extends $Command<DeleteMembersCommandInput, DeleteMembersCommandOutput, DetectiveClientResolvedConfig> {
|
|
63
70
|
readonly input: DeleteMembersCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: DeleteMembersCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DetectiveClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMembersCommandInput, DeleteMembersCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|