Interface Get.Builder

    • Method Detail

      • key

        Get.Builder key​(Map<String,​AttributeValue> key)

        A map of attribute names to AttributeValue objects that specifies the primary key of the item to retrieve.

        Parameters:
        key - A map of attribute names to AttributeValue objects that specifies the primary key of the item to retrieve.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tableName

        Get.Builder tableName​(String tableName)

        The name of the table from which to retrieve the specified item.

        Parameters:
        tableName - The name of the table from which to retrieve the specified item.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • projectionExpression

        Get.Builder projectionExpression​(String projectionExpression)

        A string that identifies one or more attributes of the specified item to retrieve from the table. The attributes in the expression must be separated by commas. If no attribute names are specified, then all attributes of the specified item are returned. If any of the requested attributes are not found, they do not appear in the result.

        Parameters:
        projectionExpression - A string that identifies one or more attributes of the specified item to retrieve from the table. The attributes in the expression must be separated by commas. If no attribute names are specified, then all attributes of the specified item are returned. If any of the requested attributes are not found, they do not appear in the result.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • expressionAttributeNames

        Get.Builder expressionAttributeNames​(Map<String,​String> expressionAttributeNames)

        One or more substitution tokens for attribute names in the ProjectionExpression parameter.

        Parameters:
        expressionAttributeNames - One or more substitution tokens for attribute names in the ProjectionExpression parameter.
        Returns:
        Returns a reference to this object so that method calls can be chained together.