Class DynamoPrimaryKey
Represents an untyped DynamoDB primary key.
Namespace: LambdaSharp.DynamoDB.Native
Assembly: LambdaSharp.DynamoDB.Native.dll
Syntax
public class DynamoPrimaryKey
Constructors
DynamoPrimaryKey(String, String)
Creates a new Dynamo
Declaration
public DynamoPrimaryKey(string pkValue, string skValue)
Parameters
Type | Name | Description |
---|---|---|
System. |
pkValue | The partition key (PK) value. |
System. |
skValue | The sort key (SK) value. |
DynamoPrimaryKey(String, String, String[])
Creates a new Dynamo
Declaration
public DynamoPrimaryKey(string pkValueFormat, string skValueFormat, params string[] values)
Parameters
Type | Name | Description |
---|---|---|
System. |
pkValueFormat | The format string for the partition key (PK) value. |
System. |
skValueFormat | The format string for the sort key (PK) value. |
System. |
values | A string array that contains zero or more strings for both format strings. |
Properties
PKName
The partition key (PK) name.
Declaration
public string PKName { get; }
Property Value
Type | Description |
---|---|
System. |
PKValue
The partition key (PK) value.
Declaration
public string PKValue { get; }
Property Value
Type | Description |
---|---|
System. |
SKName
The sort key (SK) name.
Declaration
public string SKName { get; }
Property Value
Type | Description |
---|---|
System. |
SKValue
The sort key (SK) value.
Declaration
public string SKValue { get; }
Property Value
Type | Description |
---|---|
System. |