Detective / Client / list_invitations

list_invitations#

Detective.Client.list_invitations(**kwargs)#

Retrieves the list of open and accepted behavior graph invitations for the member account. This operation can only be called by an invited 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.

See also: AWS API Documentation

Request Syntax

response = client.list_invitations(
    NextToken='string',
    MaxResults=123
)
Parameters:
  • NextToken (string) – For requests to retrieve the next page of results, the pagination token that was returned with the previous page of results. The initial request does not include a pagination token.

  • MaxResults (integer) – The maximum number of behavior graph invitations to return in the response. The total must be less than the overall limit on the number of results to return, which is currently 200.

Return type:

dict

Returns:

Response Syntax

{
    'Invitations': [
        {
            'AccountId': 'string',
            'EmailAddress': 'string',
            'GraphArn': 'string',
            'MasterId': 'string',
            'AdministratorId': 'string',
            'Status': 'INVITED'|'VERIFICATION_IN_PROGRESS'|'VERIFICATION_FAILED'|'ENABLED'|'ACCEPTED_BUT_DISABLED',
            'DisabledReason': 'VOLUME_TOO_HIGH'|'VOLUME_UNKNOWN',
            'InvitedTime': datetime(2015, 1, 1),
            'UpdatedTime': datetime(2015, 1, 1),
            'VolumeUsageInBytes': 123,
            'VolumeUsageUpdatedTime': datetime(2015, 1, 1),
            'PercentOfGraphUtilization': 123.0,
            'PercentOfGraphUtilizationUpdatedTime': datetime(2015, 1, 1),
            'InvitationType': 'INVITATION'|'ORGANIZATION',
            'VolumeUsageByDatasourcePackage': {
                'string': {
                    'VolumeUsageInBytes': 123,
                    'VolumeUsageUpdateTime': datetime(2015, 1, 1)
                }
            },
            'DatasourcePackageIngestStates': {
                'string': 'STARTED'|'STOPPED'|'DISABLED'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • Invitations (list) –

      The list of behavior graphs for which the member account has open or accepted invitations.

      • (dict) –

        Details about a member account in a behavior graph.

        • AccountId (string) –

          The Amazon Web Services account identifier for the member account.

        • EmailAddress (string) –

          The Amazon Web Services account root user email address for the member account.

        • GraphArn (string) –

          The ARN of the behavior graph.

        • MasterId (string) –

          The Amazon Web Services account identifier of the administrator account for the behavior graph.

        • AdministratorId (string) –

          The Amazon Web Services account identifier of the administrator account for the behavior graph.

        • Status (string) –

          The current membership status of the member account. The status can have one of the following values:

          • INVITED - For invited accounts only. Indicates that the member was sent an invitation but has not yet responded.

          • VERIFICATION_IN_PROGRESS - For invited accounts only, indicates that Detective is verifying that the account identifier and email address provided for the member account match. If they do match, then Detective sends the invitation. If the email address and account identifier don’t match, then the member cannot be added to the behavior graph. For organization accounts in the organization behavior graph, indicates that Detective is verifying that the account belongs to the organization.

          • VERIFICATION_FAILED - For invited accounts only. Indicates that the account and email address provided for the member account do not match, and Detective did not send an invitation to the account.

          • ENABLED - Indicates that the member account currently contributes data to the behavior graph. For invited accounts, the member account accepted the invitation. For organization accounts in the organization behavior graph, the Detective administrator account enabled the organization account as a member account.

          • ACCEPTED_BUT_DISABLED - The account accepted the invitation, or was enabled by the Detective administrator account, but is prevented from contributing data to the behavior graph. DisabledReason provides the reason why the member account is not enabled.

          Invited accounts that declined an invitation or that were removed from the behavior graph are not included. In the organization behavior graph, organization accounts that the Detective administrator account did not enable are not included.

        • DisabledReason (string) –

          For member accounts with a status of ACCEPTED_BUT_DISABLED, the reason that the member account is not enabled.

          The reason can have one of the following values:

          • VOLUME_TOO_HIGH - Indicates that adding the member account would cause the data volume for the behavior graph to be too high.

          • VOLUME_UNKNOWN - Indicates that Detective is unable to verify the data volume for the member account. This is usually because the member account is not enrolled in Amazon GuardDuty.

        • InvitedTime (datetime) –

          For invited accounts, the date and time that Detective sent the invitation to the account. The value is an ISO8601 formatted string. For example, 2021-08-18T16:35:56.284Z.

        • UpdatedTime (datetime) –

          The date and time that the member account was last updated. The value is an ISO8601 formatted string. For example, 2021-08-18T16:35:56.284Z.

        • VolumeUsageInBytes (integer) –

          The data volume in bytes per day for the member account.

        • VolumeUsageUpdatedTime (datetime) –

          The data and time when the member account data volume was last updated. The value is an ISO8601 formatted string. For example, 2021-08-18T16:35:56.284Z.

        • PercentOfGraphUtilization (float) –

          The member account data volume as a percentage of the maximum allowed data volume. 0 indicates 0 percent, and 100 indicates 100 percent.

          Note that this is not the percentage of the behavior graph data volume.

          For example, the data volume for the behavior graph is 80 GB per day. The maximum data volume is 160 GB per day. If the data volume for the member account is 40 GB per day, then PercentOfGraphUtilization is 25. It represents 25% of the maximum allowed data volume.

        • PercentOfGraphUtilizationUpdatedTime (datetime) –

          The date and time when the graph utilization percentage was last updated. The value is an ISO8601 formatted string. For example, 2021-08-18T16:35:56.284Z.

        • InvitationType (string) –

          The type of behavior graph membership.

          For an organization account in the organization behavior graph, the type is ORGANIZATION.

          For an account that was invited to a behavior graph, the type is INVITATION.

        • VolumeUsageByDatasourcePackage (dict) –

          Details on the volume of usage for each data source package in a behavior graph.

          • (string) –

            • (dict) –

              Information on the usage of a data source package in the behavior graph.

              • VolumeUsageInBytes (integer) –

                Total volume of data in bytes per day ingested for a given data source package.

              • VolumeUsageUpdateTime (datetime) –

                The data and time when the member account data volume was last updated. The value is an ISO8601 formatted string. For example, 2021-08-18T16:35:56.284Z.

        • DatasourcePackageIngestStates (dict) –

          The state of a data source package for the behavior graph.

          • (string) –

            • (string) –

    • NextToken (string) –

      If there are more behavior graphs remaining in the results, then this is the pagination token to use to request the next page of behavior graphs.

Exceptions

  • Detective.Client.exceptions.AccessDeniedException

  • Detective.Client.exceptions.InternalServerException

  • Detective.Client.exceptions.ValidationException