Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 960 Bytes

File metadata and controls

26 lines (19 loc) · 960 Bytes

DestinationPost

Properties

Name Type Description Notes
name string A human-readable name for your Data Export destination [optional] [default to undefined]
kind string The type of Data Export destination [optional] [default to undefined]
config any An object with the configuration parameters required for the destination type [optional] [default to undefined]
on boolean Whether the export is on. Displayed as the integration status in the LaunchDarkly UI. [optional] [default to undefined]

Example

import { DestinationPost } from 'launchdarkly-api-typescript';

const instance: DestinationPost = {
    name,
    kind,
    config,
    on,
};

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