AppIntegrationsService / Client / list_data_integrations
list_data_integrations#
- AppIntegrationsService.Client.list_data_integrations(**kwargs)#
Returns a paginated list of DataIntegrations in the account.
Note
You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.
See also: AWS API Documentation
Request Syntax
response = client.list_data_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
{ 'DataIntegrations': [ { 'Arn': 'string', 'Name': 'string', 'SourceURI': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
DataIntegrations (list) –
The DataIntegrations associated with this account.
(dict) –
Summary information about the DataIntegration.
Arn (string) –
The Amazon Resource Name (ARN) of the DataIntegration.
Name (string) –
The name of the DataIntegration.
SourceURI (string) –
The URI of the data source.
NextToken (string) –
If there are additional results, this is the token for the next set of results.
Exceptions