Show / Hide Table of Contents

Class TableItemArgs

Inheritance
System.Object
InputArgs
ResourceArgs
TableItemArgs
Inherited Members
ResourceArgs.Empty
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 Source

TableItemArgs()

Declaration
public TableItemArgs()

Properties

View Source

HashKey

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>
View Source

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>
View Source

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>
View Source

TableName

The name of the table to contain the item.

Declaration
public Input<string> TableName { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.