src/main/java/com/amazonaws/services/dynamodbv2/AmazonDynamoDBLockClientOptions.java [262:278]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    String getTableName() {
        return this.tableName;
    }

    /**
     * @return The partition key name within the table.
     */
    String getPartitionKeyName() {
        return this.partitionKeyName;
    }

    /**
     * @return sortKeyName
     * The sort key name. If this is set to Optional.absent(), then it means that the table only uses a partition key.
     */
    Optional<String> getSortKeyName() {
        return this.sortKeyName;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazonaws/services/dynamodbv2/CreateDynamoDBTableOptions.java [113:122]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    String getTableName() {
        return this.tableName;
    }

    String getPartitionKeyName() {
        return this.partitionKeyName;
    }

    Optional<String> getSortKeyName() {
        return this.sortKeyName;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



