src/main/java/com/awsblog/queueing/sdk/QueueSdkClient.java [777:797]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		ReturnResult result = new ReturnResult(id);

		Shipment shipment = this.get(id);
		if (Utils.checkIfNullObject(shipment)) {

	        result.setReturnValue(ReturnStatusEnum.FAILED_ID_NOT_FOUND);
			return result;
		}

		OffsetDateTime odt = OffsetDateTime.now(ZoneOffset.UTC);

		DynamoDB ddb = new DynamoDB(this.dynamoDB);
		Table table = ddb.getTable(this.actualTableName);

		UpdateItemOutcome outcome = null;
		
        try {

            UpdateItemSpec updateItemSpec = new UpdateItemSpec()
            	.withPrimaryKey("id", id)
                .withUpdateExpression("ADD #sys.#v :one "
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/awsblog/queueing/sdk/QueueSdkClient.java [915:935]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		ReturnResult result = new ReturnResult(id);

		Shipment shipment = this.get(id);
		if (Utils.checkIfNullObject(shipment)) {

	        result.setReturnValue(ReturnStatusEnum.FAILED_ID_NOT_FOUND);
			return result;
		}

		OffsetDateTime odt = OffsetDateTime.now(ZoneOffset.UTC);

		DynamoDB ddb = new DynamoDB(this.dynamoDB);
		Table table = ddb.getTable(this.actualTableName);

		UpdateItemOutcome outcome = null;
		
        try {

            UpdateItemSpec updateItemSpec = new UpdateItemSpec()
            	.withPrimaryKey("id", id)
                .withUpdateExpression("ADD #sys.#v :one "
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



