Interface AttributeValue.Builder

    • Method Detail

      • bool

        AttributeValue.Builder bool​(Boolean bool)

        Indicates that the attribute type value is a boolean. For example:

        "BOOL": true

        Parameters:
        bool - Indicates that the attribute type value is a boolean. For example:

        "BOOL": true

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • n

        AttributeValue.Builder n​(Long n)

        Indicates that the attribute type value is a number. For example:

        "N": "16"

        Parameters:
        n - Indicates that the attribute type value is a number. For example:

        "N": "16"

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • s

        AttributeValue.Builder s​(String s)

        Indicates that the attribute type value is a string. For example:

        "S": "S Group"

        Parameters:
        s - Indicates that the attribute type value is a string. For example:

        "S": "S Group"

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • ss

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

        Indicates that the attribute type value is a string set. For example:

        "SS": ["sample_service_class/host.sample.com:1234/sample_service_name_1", "sample_service_class/host.sample.com:1234/sample_service_name_2"]

        Parameters:
        ss - Indicates that the attribute type value is a string set. For example:

        "SS": ["sample_service_class/host.sample.com:1234/sample_service_name_1", "sample_service_class/host.sample.com:1234/sample_service_name_2"]

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • ss

        AttributeValue.Builder ss​(String... ss)

        Indicates that the attribute type value is a string set. For example:

        "SS": ["sample_service_class/host.sample.com:1234/sample_service_name_1", "sample_service_class/host.sample.com:1234/sample_service_name_2"]

        Parameters:
        ss - Indicates that the attribute type value is a string set. For example:

        "SS": ["sample_service_class/host.sample.com:1234/sample_service_name_1", "sample_service_class/host.sample.com:1234/sample_service_name_2"]

        Returns:
        Returns a reference to this object so that method calls can be chained together.