acceptAdministratorInvitation

We recommend using Organizations instead of Security Hub invitations to manage your member accounts. For information, see Managing Security Hub administrator and member accounts with Organizations in the Security Hub User Guide.

Accepts the invitation to be a member account and be monitored by the Security Hub administrator account that the invitation was sent from.

This operation is only used by member accounts that are not added through Organizations.

When the member account accepts the invitation, permission is granted to the administrator account to view findings generated in the member account.

Samples


fun main() { 
   //sampleStart 
   // The following example demonstrates how an account can accept an invitation from the Security Hub
// administrator account to be a member account. This operation is applicable only to member accounts that are not
// added through AWS Organizations.
securityHubClient.acceptAdministratorInvitation {
    administratorId = "123456789012"
    invitationId = "7ab938c5d52d7904ad09f9e7c20cc4eb"
} 
   //sampleEnd
}