You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Details on configuration for an integration of this type. Refer to the <code>formVariables</code> field in the corresponding <code>manifest.json</code> for a full list of fields for each integration.
Consolidated SQL script for Snowflake Warehouse Native Experimentation setup. Present only for setup endpoint responses.
[optional]
redshift_setup_scripts
List[str]
SQL setup scripts (4 parts) for Redshift Native Experimentation setup. Present only for setup endpoint responses.
[optional]
redshift_iam_permissions_policy
str
IAM permissions policy JSON for the customer's Redshift IAM role. Present only for setup endpoint responses.
[optional]
redshift_iam_trust_policy
str
IAM trust policy JSON for the customer's Redshift IAM role. Present only for setup endpoint responses.
[optional]
maintainer_id
str
The ID of the member who maintains this integration configuration. Defaults to the member who created it.
[optional]
Example
fromlaunchdarkly_api.models.integration_configurations_repimportIntegrationConfigurationsRep# TODO update the JSON string belowjson="{}"# create an instance of IntegrationConfigurationsRep from a JSON stringintegration_configurations_rep_instance=IntegrationConfigurationsRep.from_json(json)
# print the JSON string representation of the objectprint(IntegrationConfigurationsRep.to_json())
# convert the object into a dictintegration_configurations_rep_dict=integration_configurations_rep_instance.to_dict()
# create an instance of IntegrationConfigurationsRep from a dictintegration_configurations_rep_from_dict=IntegrationConfigurationsRep.from_dict(integration_configurations_rep_dict)