| Name | Type | Description | Notes |
|---|---|---|---|
| name | string | The name of the integration configuration | [default to undefined] |
| enabled | boolean | Whether the integration configuration is enabled. If omitted, defaults to true | [optional] [default to undefined] |
| tags | Array<string> | Tags for the integration | [optional] [default to undefined] |
| configValues | { [key: string]: any; } | The unique set of fields required to configure the integration. Refer to the <code>formVariables</code> field in the corresponding <code>manifest.json</code> at https://github.com/launchdarkly/integration-framework/tree/main/integrations for a full list of fields for the integration you wish to configure. | [default to undefined] |
| capabilityConfig | CapabilityConfigPost | [optional] [default to undefined] |
import { IntegrationConfigurationPost } from 'launchdarkly-api-typescript';
const instance: IntegrationConfigurationPost = {
name,
enabled,
tags,
configValues,
capabilityConfig,
};