Package com.pulumi.aws.dynamodb
Class TableItemArgs
- java.lang.Object
-
- com.pulumi.resources.InputArgs
-
- com.pulumi.resources.ResourceArgs
-
- com.pulumi.aws.dynamodb.TableItemArgs
-
public final class TableItemArgs extends com.pulumi.resources.ResourceArgs
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TableItemArgs.Builder
-
Field Summary
Fields Modifier and Type Field Description static TableItemArgs
Empty
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TableItemArgs.Builder
builder()
static TableItemArgs.Builder
builder(TableItemArgs defaults)
com.pulumi.core.Output<java.lang.String>
hashKey()
com.pulumi.core.Output<java.lang.String>
item()
java.util.Optional<com.pulumi.core.Output<java.lang.String>>
rangeKey()
com.pulumi.core.Output<java.lang.String>
tableName()
-
-
-
Field Detail
-
Empty
public static final TableItemArgs Empty
-
-
Method Detail
-
hashKey
public com.pulumi.core.Output<java.lang.String> hashKey()
- Returns:
- Hash key to use for lookups and identification of the item
-
item
public com.pulumi.core.Output<java.lang.String> item()
- Returns:
- 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.
-
rangeKey
public java.util.Optional<com.pulumi.core.Output<java.lang.String>> rangeKey()
- Returns:
- Range key to use for lookups and identification of the item. Required if there is range key defined in the table.
-
tableName
public com.pulumi.core.Output<java.lang.String> tableName()
- Returns:
- Name of the table to contain the item.
-
builder
public static TableItemArgs.Builder builder()
-
builder
public static TableItemArgs.Builder builder(TableItemArgs defaults)
-
-