Table of Contents

Class UniqueKeyPolicy

Namespace
Microsoft.Azure.Cosmos
Assembly
Microsoft.Azure.Cosmos.Client.dll

Represents the unique key policy configuration for specifying uniqueness constraints on documents in the collection in the Azure Cosmos DB service.

public sealed class UniqueKeyPolicy
Inheritance
UniqueKeyPolicy
Inherited Members
Extension Methods

Remarks

Unique key policies add a layer of data integrity to an Azure Cosmos container. They cannot be modified once the container is created.

Refer to https://docs.microsoft.com/en-us/azure/cosmos-db/unique-keys for additional information on how to specify unique key policies.

Constructors

UniqueKeyPolicy()

public UniqueKeyPolicy()
See Also

Properties

UniqueKeys

Gets collection of UniqueKey that guarantee uniqueness of documents in collection in the Azure Cosmos DB service.

public Collection<UniqueKey> UniqueKeys { get; }

Property Value

Collection<UniqueKey>
See Also

See Also