@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
14 lines • 477 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChangeFeedPolicy = void 0;
/**
* Represents the change feed policy configuration for a container in the Azure Cosmos DB service.
*/
class ChangeFeedPolicy {
retentionDuration;
constructor(retentionDuration) {
this.retentionDuration = retentionDuration.getRetentionInMinutes();
}
}
exports.ChangeFeedPolicy = ChangeFeedPolicy;
//# sourceMappingURL=ChangeFeedPolicy.js.map