Package com.pulumi.aws.dynamodb.inputs
Class GetTableItemPlainArgs
- java.lang.Object
-
- com.pulumi.resources.InputArgs
-
- com.pulumi.resources.InvokeArgs
-
- com.pulumi.aws.dynamodb.inputs.GetTableItemPlainArgs
-
public final class GetTableItemPlainArgs extends com.pulumi.resources.InvokeArgs
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GetTableItemPlainArgs.Builder
-
Field Summary
Fields Modifier and Type Field Description static GetTableItemPlainArgs
Empty
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GetTableItemPlainArgs.Builder
builder()
static GetTableItemPlainArgs.Builder
builder(GetTableItemPlainArgs defaults)
java.util.Optional<java.util.Map<java.lang.String,java.lang.String>>
expressionAttributeNames()
java.lang.String
key()
java.util.Optional<java.lang.String>
projectionExpression()
java.lang.String
tableName()
-
-
-
Field Detail
-
Empty
public static final GetTableItemPlainArgs Empty
-
-
Method Detail
-
expressionAttributeNames
public java.util.Optional<java.util.Map<java.lang.String,java.lang.String>> expressionAttributeNames()
-
key
public java.lang.String key()
- Returns:
- A map of attribute names to AttributeValue objects, representing the primary key of the item to retrieve. For the primary key, you must provide all of the attributes. For example, with a simple primary key, you only need to provide a value for the partition key. For a composite primary key, you must provide values for both the partition key and the sort key. The following arguments are optional:
-
projectionExpression
public java.util.Optional<java.lang.String> projectionExpression()
- Returns:
- A string that identifies one or more attributes to retrieve from the table. These attributes can include scalars, sets, or elements of a JSON document. The attributes in the expression must be separated by commas. If no attribute names are specified, then all attributes are returned. If any of the requested attributes are not found, they do not appear in the result.
-
tableName
public java.lang.String tableName()
- Returns:
- The name of the table containing the requested item.
-
builder
public static GetTableItemPlainArgs.Builder builder()
-
builder
public static GetTableItemPlainArgs.Builder builder(GetTableItemPlainArgs defaults)
-
-