logo
pub trait Detective {
Show 15 methods fn accept_invitation<'life0, 'async_trait>(
        &'life0 self,
        input: AcceptInvitationRequest
    ) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<AcceptInvitationError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn create_graph<'life0, 'async_trait>(
        &'life0 self,
        input: CreateGraphRequest
    ) -> Pin<Box<dyn Future<Output = Result<CreateGraphResponse, RusotoError<CreateGraphError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn create_members<'life0, 'async_trait>(
        &'life0 self,
        input: CreateMembersRequest
    ) -> Pin<Box<dyn Future<Output = Result<CreateMembersResponse, RusotoError<CreateMembersError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn delete_graph<'life0, 'async_trait>(
        &'life0 self,
        input: DeleteGraphRequest
    ) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<DeleteGraphError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn delete_members<'life0, 'async_trait>(
        &'life0 self,
        input: DeleteMembersRequest
    ) -> Pin<Box<dyn Future<Output = Result<DeleteMembersResponse, RusotoError<DeleteMembersError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn disassociate_membership<'life0, 'async_trait>(
        &'life0 self,
        input: DisassociateMembershipRequest
    ) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<DisassociateMembershipError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn get_members<'life0, 'async_trait>(
        &'life0 self,
        input: GetMembersRequest
    ) -> Pin<Box<dyn Future<Output = Result<GetMembersResponse, RusotoError<GetMembersError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn list_graphs<'life0, 'async_trait>(
        &'life0 self,
        input: ListGraphsRequest
    ) -> Pin<Box<dyn Future<Output = Result<ListGraphsResponse, RusotoError<ListGraphsError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn list_invitations<'life0, 'async_trait>(
        &'life0 self,
        input: ListInvitationsRequest
    ) -> Pin<Box<dyn Future<Output = Result<ListInvitationsResponse, RusotoError<ListInvitationsError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn list_members<'life0, 'async_trait>(
        &'life0 self,
        input: ListMembersRequest
    ) -> Pin<Box<dyn Future<Output = Result<ListMembersResponse, RusotoError<ListMembersError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn list_tags_for_resource<'life0, 'async_trait>(
        &'life0 self,
        input: ListTagsForResourceRequest
    ) -> Pin<Box<dyn Future<Output = Result<ListTagsForResourceResponse, RusotoError<ListTagsForResourceError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn reject_invitation<'life0, 'async_trait>(
        &'life0 self,
        input: RejectInvitationRequest
    ) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<RejectInvitationError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn start_monitoring_member<'life0, 'async_trait>(
        &'life0 self,
        input: StartMonitoringMemberRequest
    ) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<StartMonitoringMemberError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn tag_resource<'life0, 'async_trait>(
        &'life0 self,
        input: TagResourceRequest
    ) -> Pin<Box<dyn Future<Output = Result<TagResourceResponse, RusotoError<TagResourceError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn untag_resource<'life0, 'async_trait>(
        &'life0 self,
        input: UntagResourceRequest
    ) -> Pin<Box<dyn Future<Output = Result<UntagResourceResponse, RusotoError<UntagResourceError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
}
Expand description

Trait representing the capabilities of the Amazon Detective API. Amazon Detective clients implement this trait.

Required Methods

Accepts an invitation for the member account to contribute data to a behavior graph. This operation can only be called by an invited member account.

The request provides the ARN of behavior graph.

The member account status in the graph must be INVITED.

Creates a new behavior graph for the calling account, and sets that account as the administrator account. This operation is called by the account that is enabling Detective.

Before you try to enable Detective, make sure that your account has been enrolled in Amazon GuardDuty for at least 48 hours. If you do not meet this requirement, you cannot enable Detective. If you do meet the GuardDuty prerequisite, then when you make the request to enable Detective, it checks whether your data volume is within the Detective quota. If it exceeds the quota, then you cannot enable Detective.

The operation also enables Detective for the calling account in the currently selected Region. It returns the ARN of the new behavior graph.

CreateGraph triggers a process to create the corresponding data tables for the new behavior graph.

An account can only be the administrator account for one behavior graph within a Region. If the same account calls CreateGraph with the same administrator account, it always returns the same behavior graph ARN. It does not create a new behavior graph.

Sends a request to invite the specified AWS accounts to be member accounts in the behavior graph. This operation can only be called by the administrator account for a behavior graph.

CreateMembers verifies the accounts and then invites the verified accounts. The administrator can optionally specify to not send invitation emails to the member accounts. This would be used when the administrator manages their member accounts centrally.

The request provides the behavior graph ARN and the list of accounts to invite.

The response separates the requested accounts into two lists:

  • The accounts that CreateMembers was able to start the verification for. This list includes member accounts that are being verified, that have passed verification and are to be invited, and that have failed verification.

  • The accounts that CreateMembers was unable to process. This list includes accounts that were already invited to be member accounts in the behavior graph.

Disables the specified behavior graph and queues it to be deleted. This operation removes the graph from each member account's list of behavior graphs.

DeleteGraph can only be called by the administrator account for a behavior graph.

Deletes one or more member accounts from the administrator account's behavior graph. This operation can only be called by a Detective administrator account. That account cannot use DeleteMembers to delete their own account from the behavior graph. To disable a behavior graph, the administrator account uses the DeleteGraph API method.

Removes the member account from the specified behavior graph. This operation can only be called by a member account that has the ENABLED status.

Returns the membership details for specified member accounts for a behavior graph.

Returns the list of behavior graphs that the calling account is an administrator account of. This operation can only be called by an administrator account.

Because an account can currently only be the administrator of one behavior graph within a Region, the results always contain a single behavior graph.

Retrieves the list of open and accepted behavior graph invitations for the member account. This operation can only be called by a member account.

Open invitations are invitations that the member account has not responded to.

The results do not include behavior graphs for which the member account declined the invitation. The results also do not include behavior graphs that the member account resigned from or was removed from.

Retrieves the list of member accounts for a behavior graph. Does not return member accounts that were removed from the behavior graph.

Returns the tag values that are assigned to a behavior graph.

Rejects an invitation to contribute the account data to a behavior graph. This operation must be called by a member account that has the INVITED status.

Sends a request to enable data ingest for a member account that has a status of ACCEPTEDBUTDISABLED.

For valid member accounts, the status is updated as follows.

  • If Detective enabled the member account, then the new status is ENABLED.

  • If Detective cannot enable the member account, the status remains ACCEPTEDBUTDISABLED.

Applies tag values to a behavior graph.

Removes tags from a behavior graph.

Implementors