AppIntegrationsService / Client / list_event_integrations

list_event_integrations#

AppIntegrationsService.Client.list_event_integrations(**kwargs)#

Returns a paginated list of event integrations in the account.

See also: AWS API Documentation

Request Syntax

response = client.list_event_integrations(
    NextToken='string',
    MaxResults=123
)
Parameters:
  • NextToken (string) – The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

  • MaxResults (integer) – The maximum number of results to return per page.

Return type:

dict

Returns:

Response Syntax

{
    'EventIntegrations': [
        {
            'EventIntegrationArn': 'string',
            'Name': 'string',
            'Description': 'string',
            'EventFilter': {
                'Source': 'string'
            },
            'EventBridgeBus': 'string',
            'Tags': {
                'string': 'string'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • EventIntegrations (list) –

      The event integrations.

      • (dict) –

        The event integration.

        • EventIntegrationArn (string) –

          The Amazon Resource Name (ARN) of the event integration.

        • Name (string) –

          The name of the event integration.

        • Description (string) –

          The event integration description.

        • EventFilter (dict) –

          The event integration filter.

          • Source (string) –

            The source of the events.

        • EventBridgeBus (string) –

          The Amazon EventBridge bus for the event integration.

        • Tags (dict) –

          The tags used to organize, track, or control access for this resource. For example, { “tags”: {“key1”:”value1”, “key2”:”value2”} }.

          • (string) –

            • (string) –

    • NextToken (string) –

      If there are additional results, this is the token for the next set of results.

Exceptions