mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-09-18 07:53:55 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.7 KiB
1.7 KiB
AwsIntegrationPolicySetting
AWS integration policy configuration that controls which resource groups and regions ThousandEyes inventories, and whether CloudTrail is enabled.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| enabled_resource_group_types | **List[AwsResourceGroupType]** | The set of AWS resource group types included in inventory monitoring. | |
| enabled_regions | **List[AwsRegion]** | The AWS regions that ThousandEyes inventories for the account group. | |
| enabled_cloudtrail | bool | Indicates whether CloudTrail integration is enabled for AWS inventory monitoring. | |
| links | SelfLinks | [optional] |
Example
from thousandeyes_sdk.cloud_insights_integrations.models.aws_integration_policy_setting import AwsIntegrationPolicySetting
# TODO update the JSON string below
json = "{}"
# create an instance of AwsIntegrationPolicySetting from a JSON string
aws_integration_policy_setting_instance = AwsIntegrationPolicySetting.from_json(json)
# print the JSON string representation of the object
print(AwsIntegrationPolicySetting.to_json())
# convert the object into a dict
aws_integration_policy_setting_dict = aws_integration_policy_setting_instance.to_dict()
# create an instance of AwsIntegrationPolicySetting from a dict
aws_integration_policy_setting_from_dict = AwsIntegrationPolicySetting.from_dict(aws_integration_policy_setting_dict)