@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
10 lines • 327 B
JavaScript
/**
* Represents the change feed policy configuration for a container in the Azure Cosmos DB service.
*/
export class ChangeFeedPolicy {
retentionDuration;
constructor(retentionDuration) {
this.retentionDuration = retentionDuration.getRetentionInMinutes();
}
}
//# sourceMappingURL=ChangeFeedPolicy.js.map