Interface AttributeValue.Builder

    • Method Detail

      • s

        AttributeValue.Builder s​(String s)

        For single string values. Maximum string length is 100 characters.

        Parameters:
        s - For single string values. Maximum string length is 100 characters.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • n

        AttributeValue.Builder n​(Double n)

        For number values, expressed as double.

        Parameters:
        n - For number values, expressed as double.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • sl

        AttributeValue.Builder sl​(Collection<String> sl)

        For a list of up to 100 strings. Maximum length for each string is 100 characters. Duplicate values are not recognized; all occurrences of the repeated value after the first of a repeated value are ignored.

        Parameters:
        sl - For a list of up to 100 strings. Maximum length for each string is 100 characters. Duplicate values are not recognized; all occurrences of the repeated value after the first of a repeated value are ignored.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • sl

        AttributeValue.Builder sl​(String... sl)

        For a list of up to 100 strings. Maximum length for each string is 100 characters. Duplicate values are not recognized; all occurrences of the repeated value after the first of a repeated value are ignored.

        Parameters:
        sl - For a list of up to 100 strings. Maximum length for each string is 100 characters. Duplicate values are not recognized; all occurrences of the repeated value after the first of a repeated value are ignored.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • sdm

        AttributeValue.Builder sdm​(Map<String,​Double> sdm)

        For a map of up to 10 data type:value pairs. Maximum length for each string value is 100 characters.

        Parameters:
        sdm - For a map of up to 10 data type:value pairs. Maximum length for each string value is 100 characters.
        Returns:
        Returns a reference to this object so that method calls can be chained together.