APIIntegration
Examples
Python
api_integration = APIIntegration(
name="some_api_integration",
api_provider="AWS_API_GATEWAY",
api_aws_role_arn="arn:aws:iam::123456789012:role/MyRole",
enabled=True,
api_allowed_prefixes=["/prod/", "/dev/"],
api_blocked_prefixes=["/test/"],
api_key="ABCD1234",
comment="Example API integration"
)YAML
api_integrations:
- name: some_api_integration
api_provider: AWS_API_GATEWAY
api_aws_role_arn: "arn:aws:iam::123456789012:role/MyRole"
enabled: true
api_allowed_prefixes: ["/prod/", "/dev/"]
api_blocked_prefixes: ["/test/"]
api_key: "ABCD1234"
comment: "Example API integration"Fields
Last updated