Class TableItemArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.DynamoDB
Assembly: Pulumi.Aws.dll
Syntax
public sealed class TableItemArgs : ResourceArgs
Constructors
View SourceTableItemArgs()
Declaration
public TableItemArgs()
Properties
View SourceHashKey
Hash key to use for lookups and identification of the item
Declaration
public Input<string> HashKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Item
JSON representation of a map of attribute name/value pairs, one for each attribute. Only the primary key attributes are required; you can optionally provide other attribute name-value pairs for the item.
Declaration
public Input<string> Item { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
RangeKey
Range key to use for lookups and identification of the item. Required if there is range key defined in the table.
Declaration
public Input<string> RangeKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
TableName
The name of the table to contain the item.
Declaration
public Input<string> TableName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |