thousandeyes-sdk-python/thousandeyes-sdk-cloud-insights-integrations/docs/AwsMonitoringIntegrations.md
api-team-automation[bot] d4b7ca82b7
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#193)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-09-08 13:15:25 +01:00

1.3 KiB

AwsMonitoringIntegrations

A HAL resource containing a list of AWS monitoring integrations and navigation links.

Properties

Name Type Description Notes
integrations **List[AwsMonitoringIntegration]** The list of AWS inventory and flow logs monitoring integrations.
links SelfLinks [optional]

Example

from thousandeyes_sdk.cloud_insights_integrations.models.aws_monitoring_integrations import AwsMonitoringIntegrations

# TODO update the JSON string below
json = "{}"
# create an instance of AwsMonitoringIntegrations from a JSON string
aws_monitoring_integrations_instance = AwsMonitoringIntegrations.from_json(json)
# print the JSON string representation of the object
print(AwsMonitoringIntegrations.to_json())

# convert the object into a dict
aws_monitoring_integrations_dict = aws_monitoring_integrations_instance.to_dict()
# create an instance of AwsMonitoringIntegrations from a dict
aws_monitoring_integrations_from_dict = AwsMonitoringIntegrations.from_dict(aws_monitoring_integrations_dict)

[Back to Model list] [Back to API list] [Back to README]