UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 401 B
import { StreamKindEnum } from './StreamKindEnum'; /** Create a stream of data */ export interface StreamCreation { /** Description of the stream */ description: string; /** Kind of the stream */ kind: StreamKindEnum; /** Name of the stream */ name: string; /** Region where the stream will be available */ region: string; } //# sourceMappingURL=StreamCreation.d.ts.map